@charset "UTF-8";

.why-top .index_unit li a {
	background-color: transparent;
}

.why-top .index_unit li a:hover::after {
	border: none;
	background-color: transparent;
	box-shadow: none;
}

/* why-top（index.html）専用レスポンシブ */
@media screen and (max-width: 768px) {
	.why-top .list_reason > .item dl {
		width: 100%;
	}
	.why-top .list_reason > .item figure {
		width: 100%;
		margin-top: 1em;
	}
}

.why .full figure {
	width: 100%;
}

h3.title_main {
	display: block;
	text-align: center;
	margin-top: 1.0em;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 0.25em;
	font-size: 55px;
	font-weight: 800;
	background: linear-gradient(45deg, #D92681 16%, #00b1eb 57%, #fef121 90%);
	background: -webkit-linear-gradient(45deg, #D92681 16%, #00b1eb 57%, #fef121 90%);
	background-size: 300% auto;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	animation: gradientEffect 3.5s infinite alternate;
	line-height: 1.1;
	border-bottom: none;
}

@keyframes gradientEffect {
	from {
		background-position: left
	}
	to {
		background-position: right
	}
}
h3.title_main::after {
	display: none;
}


@media screen and (max-width: 580px) {
	h3.title_main {
		font-size: 45px;
	}
	}



.read {
	text-align: center;
	font-weight: 700;
	font-size: 115%;
}

@media screen and (max-width: 580px) {
	.read {
		text-align: left;
		}
	}


.subread{
	padding: 20px;
	font-weight: 700;
}

body.why-about01 .subread,
body.why-top .subread {
	padding: 0;
}

body.why-about01 .list.reason > li:first-child h4 {
	margin-top: 0;
}

body.why-top .list_reason h4 {
	margin-top: 0;
}

body.why-top .list_reason dd {
	padding-top: 10px;
}

body.why-about01 .exhibit03_r_num_list {
	gap: 0;
}

@media screen and (max-width: 1020px) {
	body.why-about01 article.flex_unit.breakon {
		display: block;
	}
	body.why-about01 article.flex_unit.breakon figure {
		width: 100%;
		margin-top: 20px;
	}
}

@media screen and (max-width: 768px) {
	body.why-top .subread {
		padding: 0;
	}
	body.why-about01 .list.reason figure {
		width: 100%;
	}
	body.why-about01 .exhibit03_01_col {
		gap: 30px;
		padding-top: 30px;
	}
}

.info_box {
	padding: 20px;
	background-color: #eaeaea;
}

/* about02.htmlのinfo_box内の数字を太字・大きめに */
body#results .info_box strong {
	font-weight: bold;
	font-size: 1.1em;
}

/* about01.htmlのflex_2col.mgt30をflex-startで揃える */
body.why .flex_2col.mgt30 {
	align-items: flex-start;
}

/* about01.htmlの特定の画像のみ80%幅 */
body.why .flex_2col.mgt30 figure img[src*="img_about02_exhibit04_02.webp"] {
	width: 80%;
}

@media screen and (max-width: 768px) {
	/* レスポンシブで縦並びになった時は100%幅 */
	body.why .flex_2col.mgt30 figure img[src*="img_about02_exhibit04_02.webp"] {
		width: 100%;
	}
}

/* about_mv_wrapper: h3とsubreadを1列目、figureを2列目に配置 */
.about_mv_wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: center;
}

.about_mv_wrapper h3 {
	grid-column: 1;
	grid-row: 1;
}

.about_mv_wrapper .subread {
	grid-column: 1;
	grid-row: 2;
	background-color: transparent;
}

.about_mv_wrapper figure {
	grid-column: 2;
	grid-row: 1 / 3;
}

/* why-top専用: テキストを画像に対して中央配置 */
body.why-top .about_mv_wrapper {
	align-content: center;
}

body.why-top .about_mv_wrapper h3 {
	margin-bottom: 0;
}

body.why-top .about_mv_wrapper .subread {
	align-self: start;
}

body.why-top .about_mv_wrapper figure {
	padding-top: 30px;
}

.about_mv_wrapper figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* レスポンシブ: 768px以下で縦並び */
@media screen and (max-width: 768px) {
	.about_mv_wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.about_mv_wrapper h3 {
		grid-column: 1;
		grid-row: 1;
	}

	.about_mv_wrapper .subread {
		grid-column: 1;
		grid-row: 2;
	}

	.about_mv_wrapper figure {
		grid-column: 1;
		grid-row: 3;
		width: 100%;
	}

	/* why-top専用: 間隔調整 */
	body.why-top .about_mv_wrapper {
		gap: 10px;
	}

	body.why-top .about_mv_wrapper figure {
		padding-top: 0px;
	}
}

.list_reason {
	counter-reset: item;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.list_reason > .item{
	position: relative;
  counter-increment: item;
  margin-bottom: 0;
}
.list_reason > .item::before,
.list_reason > .item::after{
  display: none;
}

.list_reason > .item h4{
  position: relative;
}

.list_reason > .item dt::before,
.list_reason > .item dt::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.list_reason > .item dt::before{
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 40px;
  border-color: transparent transparent transparent #0c1a49;
  left: 0;
  z-index: 1;
  background: transparent;
  padding: 0;
  box-sizing: content-box;
}
.list_reason > .item dt::after{
  content: counter(item);
  z-index: 2;
  font-weight: 800;
  width: 1.2em;
  font-size: 20px;
  text-align: center;
  color: #fff;
  left: 1px;
}
/* ブルー系5段階グラデーション */
.list_reason > .item:nth-of-type(1) dt::before{
	border-color: transparent transparent transparent #0c1a49;
}
.list_reason > .item:nth-of-type(2) dt::before{
	border-color: transparent transparent transparent #1a3a8f;
}
.list_reason > .item:nth-of-type(3) dt::before{
	border-color: transparent transparent transparent #2d5cc7;
}
.list_reason > .item:nth-of-type(4) dt::before{
	border-color: transparent transparent transparent #4a7fe0;
}
.list_reason > .item:nth-of-type(5) dt::before{
	border-color: transparent transparent transparent #6ba3f5;
}

.list_reason > .item dt{
	position: relative;
	padding-left: 45px;
	min-height: 3.5em;
}

.list_reason > .item dt h5{
	min-height: 3.5em;
	display: flex;
	align-items: center;
}

.list_reason > .item h4{
	font-size: 140%;
	font-weight: 800;
	border-bottom: none;
}
.list_reason > .item h4::before,
.list_reason > .item h4::after{
	display: none;
}
.list_reason > .item.flex_unit {
	display: flex;
	flex-direction: column;
}

.list_reason > .item dl{
	width: 100%;
	flex-grow: 1;
}
.list_reason > .item dl dd{
	font-weight: 700;
}

.list_reason > .item figure{
	width: 100%;
	margin-top: 16px;
	border-radius: 12px;
	overflow: hidden;
}
.list_reason > .item figure img{
	width: 100%;
	height: auto;
	display: block;
}

@media screen and (max-width: 1020px) {
	.list_reason {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media screen and (max-width: 640px) {
	.list_reason {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}





	.l_container h3.emphasis_title{
		font-size: 1.6rem;
		background: #eceef4;
		color: #0e1b47;
		padding: 0.75em 1em;
	}
	.l_container h3.emphasis_title::after {
		content: "";
		position: absolute;
		bottom: 0px;
		left: 0;
		display: block;
		width: 3px;
		height: 100%;
		background-color: var(--ceatecblue);
		border-bottom: none;
	}
	
	@media screen and (max-width: 540px) {
		.l_container h3.emphasis_title{
			font-size: 1.5rem;
			padding: 0.5em 0.8em;
		}
	}
	


/* ======== about02 ======= */

.why .reason li {
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 30px;
}

@media screen and (max-width: 768px) {
	.why .reason li {
		padding-top: 0;
	}
}

.why .reason h4 {
	width: 100%;
	justify-content: flex-start;
	flex-wrap: nowrap;
	margin-bottom: 20px;
	align-items: center;
}

.why .reason h4 p {
	width: 5.5em;
	margin-right: 10px;
	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;
}

.why .reason h4 p span {
	font-size: 40px;
	font-weight: 700;
	padding-top: 3px;
}

/* ol.list.reason 専用スタイル（about01.html） */
body.why ol.list.reason li > p,
body.why ol.list.reason li > figure {
	width: 45%;
	flex: 0 0 45%;
}

body.why ol.list.reason li > figure {
	margin-left: auto;
}

.icon_ef{
	display: inline-block;
	color: #fff;
	font-size: 83%;
	background-color: var(--ceatecblue);
	padding:2px 3px;
}
.l_container h3 span.icon_ef{
	font-size: 1.1rem;
}

.l_container h3:has(.icon_ef) {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.big {
	font-size: 119%;
	margin: 0 4px;
	color: var(--pickup);
	font-weight: 700;
	display: inline-block;
	position: relative;
	z-index: 1;
}
.semi-b{
	font-size: 108%;
}

.lightyel_bg {
	text-decoration: none;
	padding: 0 4px;
	position: relative;
	display: inline;
	color: inherit;
	background: linear-gradient(transparent 70%, rgba(255, 228, 0, 0.41) 70%);
}


.highlighted {
	text-decoration: underline;
	text-decoration-thickness: 0.5em;
	text-decoration-color: rgba(178, 195, 255, 0.4);
	text-underline-offset: -0.2em;
	text-decoration-skip-ink: none;
	font-weight: bold;
	text-align: center;
	font-size: 2.2rem;
	margin-top: 30px;
	word-break: auto-phrase;
}


.clm2_list {
	flex-wrap: wrap;
	justify-content: space-between;
}
.clm2_list > li{
	width: 48%;
	font-weight: 700;
}

/* 2カラム横並び */
.flex_2col {
	display: flex;
	gap: 20px;
	align-items: stretch;
}

.flex_2col > figure {
	width: 50%;
	display: flex;
	align-items: center;
}

.flex_2col > figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 768px) {
	.flex_2col {
		flex-direction: column;
	}

	.flex_2col > figure {
		width: 100%;
	}
}

/* 1020px以下で縦並び時にliを100%幅に */
@media screen and (max-width: 1020px) {
	body.why .clm2_list > li {
		width: 100%;
	}

	body.why .clm2_list > li figure {
		width: 80%;
		margin: 15px auto 0;
	}

	body.why .exhibit03_01_img {
		width: 100%;
	}
}

.clm2_list > li figure{
	margin-top: 1em;
}
.exhibit03_r_num_list{
	margin-top: 20px;
	margin-bottom: 10px;
	text-align: center;
	justify-content: space-between;
	display: flex !important;
	flex-wrap: wrap;
}
.exhibit03_r_num_list > li{
	width: calc(100% / 4 - 10px);
	font-weight: 700;
}

/* スマホサイズで縦並び */
@media screen and (max-width: 640px) {
	body.why .exhibit03_r_num_list > li {
		width: 100%;
		margin-bottom: 10px;
	}
}

.exhibit03_r_num_list li p{
	text-align: center;
	font-weight: 700;
	color: #fff;
	background-color: #00b1eb;
	font-size: 125%;
}
.exhibit03_r_num_list li:nth-of-type(2) p{
	background-color: #1649b0;
}
.exhibit03_r_num_list li:nth-of-type(3) p{
	background-color: #132d74;
}
.exhibit03_r_num_list li:nth-of-type(4) p{
	background-color: #0e1b47;
}

@media screen and (max-width: 640px) {
	.breakon{
		display: block;
	}
	.clm2_list > li {
		width: 100%;
	}
	.clm2_list > li figure {
		width: 80%;
		margin: 15px auto 0;
	}

	/* add_style.cssの打ち消し */
	body.why .c_section_block .clm2_list.flex_unit figure {
		flex: none;
		width: 100%;
		margin: 15px auto 0;
	}

	/* ol.list.reason、clm2_listのfigureを100%に */
	body.why ol.list.reason li > figure,
	body.why .clm2_list > li figure {
		width: 100%;
	}
}



























/* 前回実績 */

.previous_list {
	justify-content: space-between;
	position: relative;
}

.previous_list > li {}

.previous_list > li + li {
	margin-top: 50px;
}

.previous_list h4 {
	margin-bottom: 30px;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.previous_list .count-size {
	color: #07153a;
	font-weight: bold;
	font-size: 25px;
	margin-right: 3px;
}

.previous_list .countbox_cont {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
	padding: 10px 0;
}

.previous_list h5 {
	background: #09143a;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	padding: 3px;
	width: 100%;
	max-width: 200px;
	border-radius: 30px;
	text-align: center;
	margin: auto;
}

.en .previous_list h5 {
	max-width: 350px;
}

.previous_list .countbox_cont p {
	line-height: 1.5;
	font-weight: bold;
}

.previous_list .countbox_cont .count-size {
	font-size: 55px;
	font-weight: 800;
	margin-right: 5px;
}

.previous_list .lightblue_list {
	justify-content: space-between;
}

.previous_list .lightblue_list li {
	width: 32.5%;
}

.previous_list .lightblue_list li:nth-child(n+4) {
	margin-top: 1%;
}

.previous_list .lightblue_list li h6 {
	font-weight: bold;
}

.previous_list .lightblue_list li p {
	font-weight: bold;
	text-align: right;
	line-height: 1.2;
}

.previous_list .lightblue_bg {
	background: #50b3da;
	border-radius: 10px;
	padding: 10px 15px;
	font-weight: bold;
	color: #ffffff;
}

.previous_list ul li.lightblue_bg .count-size {
	color: #ffffff;
}

.previous_list .subtitle{
	font-weight: bold;
    background-color: #f6f6f6;
    padding: 10px;
    margin-bottom: 20px;
    border-left: 5px solid var(--ceatecblue);
	text-align: left;
}

.previous_list .subtitle span{
	font-weight: normal;
    font-size: 13px;
    margin-left: 15px;
}

/* 出展者プロフィール */

.previous_list .previous_item_exb {}

body#results .previous_list .previous_item_exb table td:first-child,
body#results .previous_list .previous_item_exb table th:first-child {
	width: 8%;
	white-space: nowrap;
}

body#results .previous_list .previous_item_exb table td:nth-child(2),
body#results .previous_list .previous_item_exb table th:nth-child(2) {
	width: 1%;
	white-space: nowrap;
}

/* 放送情報エリアを横並びに（国内左、国内右+海外右） */
body#results .previous_item_press .flex {
	display: flex;
	gap: 20px;
	flex-wrap: nowrap;
}

body#results .previous_item_press .flex > .tv_info:first-child {
	width: 48%;
}

body#results .previous_item_press .flex > .tv_info_right {
	width: 48%;
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: stretch;
}

@media screen and (max-width: 1100px) {
	body#results .previous_item_press .flex {
		flex-direction: column;
	}
	body#results .previous_item_press .flex > .tv_info:first-child,
	body#results .previous_item_press .flex > .tv_info_right {
		width: 100%;
	}
	/* 1100px以下：表が縦並びになったタイミングで中央寄せ */
	body#results .tv_info > p {
		text-align: center;
	}
}

/* 右側の国内テーブルを左側と同じ高さに */
body#results .previous_item_press .flex > .tv_info_right > .tv_info:first-child {
	flex: 1;
	display: flex;
	flex-direction: column;
}

body#results .previous_item_press .flex > .tv_info_right > .tv_info:first-child .scrollbox {
	flex: 1;
	display: flex;
	flex-direction: column;
}

body#results .previous_item_press .flex > .tv_info_right > .tv_info:first-child table {
	flex: 1;
	height: 100%;
}

body#results .tv_info table td,
body#results .tv_info table th {
	white-space: nowrap;
}

/* 放送日の行の高さを統一 */
body#results .tv_info table tbody tr {
	height: 1.5em;
}

/* 放送日列を中央寄せ、幅指定 */
body#results .tv_info table td:first-child,
body#results .tv_info table th:first-child {
	text-align: center;
	width: 5%;
}

/* 局列を狭く、中央寄せ */
body#results .tv_info table td:nth-child(2),
body#results .tv_info table th:nth-child(2) {
	width: 5%;
	text-align: center;
}

/* 番組名列を中央寄せ */
body#results .tv_info table td:nth-child(3),
body#results .tv_info table th:nth-child(3) {
	text-align: center;
	width: 7%;
	white-space: normal !important;
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
}

/* 番組名列のnowrapクラスを無効化 */
body#results .tv_info table td:nth-child(3).nowrap {
	white-space: normal !important;
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
}

/* 放送時間・内CEATEC放送時間列を狭く、中央寄せ */
body#results .tv_info table td:nth-child(4),
body#results .tv_info table td:nth-child(5),
body#results .tv_info table th:nth-child(4),
body#results .tv_info table th:nth-child(5) {
	width: 5%;
	text-align: center;
}

/* 放送情報テーブル内の全てのセルを中央寄せ */
body#results .tv_info table td,
body#results .tv_info table th {
	text-align: center;
}

/* 日付列を同じ幅に */
/* thead: th:nth-child(2)〜(5)が日付 */
body#results .previous_list .previous_item_exb table th:nth-child(2),
body#results .previous_list .previous_item_exb table th:nth-child(3),
body#results .previous_list .previous_item_exb table th:nth-child(4),
body#results .previous_list .previous_item_exb table th:nth-child(5),
/* tbody: td:nth-child(3)〜(6)が日付データ */
body#results .previous_list .previous_item_exb table td:nth-child(3),
body#results .previous_list .previous_item_exb table td:nth-child(4),
body#results .previous_list .previous_item_exb table td:nth-child(5),
body#results .previous_list .previous_item_exb table td:nth-child(6) {
	width: 15%;
}

/* 合計列を広く */
body#results .previous_list .previous_item_exb table td:nth-child(7),
body#results .previous_list .previous_item_exb table th:nth-child(6) {
	width: 25%;
}


/* 出展者数テーブル（.countbox_cont内）の列幅調整 */
body#results .countbox_cont table td:first-child,
body#results .countbox_cont table th:first-child {
	width: 4%;
	white-space: nowrap;
}

/* 日本・海外・合計列の幅を揃える */
body#results .countbox_cont table td:nth-child(2),
body#results .countbox_cont table td:nth-child(3),
body#results .countbox_cont table td:nth-child(4) {
	width: 25%;
}

/* 左寄せ */

body#results .newspeper_left,
body#results .newspeper_left p,
body#results .tv_info > p {
	text-align: left;
}

/* 出展者数エリア（.graph.achievement）を横並びレイアウト */
body#results .graph.achievement {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

body#results .graph.achievement > .countbox_cont:first-child {
	width: 38%;
	display: flex;
	flex-direction: column;
}

body#results .graph.achievement > .countbox_cont:last-child {
	width: 60%;
}

/* 出展者数・掲載数にpadding-left */
body#results .newspeper_left p {
	padding-left: 140px;
}

body#results .newspeper_left h5 {
	margin: 0;
	max-width: 100%;
}

/* 国内新聞エリアを横並びに */
body#results .newspeper_flex {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

body#results .newspeper_flex .newspeper_left {
	width: 38%;
}

body#results .newspeper_flex .newspeper_right {
	width: 60%;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* about02スマホ対応 */
body#results .scrollbox {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	position: relative;
}

body#results .scrollbox table {
	min-width: 650px;
}

body#results .tv_info .scrollbox table {
	min-width: 800px;
}

body#results .tv_info th,
body#results .tv_info td {
	font-size: 12px;
}

/* 1020px以下でもテーブル構造を維持 */
@media screen and (max-width: 1020px) {
	body#results .c_section_block table th,
	body#results .c_section_block table td {
		display: table-cell !important;
	}
	body#results .c_section_block table {
		display: table !important;
	}
	body#results .c_section_block table thead {
		display: table-header-group !important;
	}
	body#results .c_section_block table tbody {
		display: table-row-group !important;
	}
	body#results .c_section_block table tr {
		display: table-row !important;
	}
	/* 1020px以下：放送日列を狭く、番組名列を広く */
	body#results .tv_info table td:first-child,
	body#results .tv_info table th:first-child {
		width: 3%;
	}
	body#results .tv_info table td:nth-child(3),
	body#results .tv_info table th:nth-child(3) {
		width: 35%;
		white-space: normal !important;
		word-wrap: break-word;
		overflow-wrap: break-word;
		word-break: break-word;
	}
	/* 1020px以下：放送時間列を中央揃え */
	body#results .tv_info table td:nth-child(4),
	body#results .tv_info table td:nth-child(5),
	body#results .tv_info table th:nth-child(4),
	body#results .tv_info table th:nth-child(5) {
		text-align: center;
	}
	/* 1020px以下：番組名列のnowrapクラスを無効化 */
	body#results .tv_info table td:nth-child(3).nowrap {
		white-space: normal !important;
		word-wrap: break-word;
		overflow-wrap: break-word;
		word-break: break-word;
	}
	/* 1020px以下：出展者数エリアを縦並び */
	body#results .graph.achievement {
		flex-direction: column;
	}
	body#results .graph.achievement > .countbox_cont:first-child,
	body#results .graph.achievement > .countbox_cont:last-child {
		width: 100%;
	}
	/* 1020px以下：国内新聞エリアを縦並び */
	body#results .newspeper_flex {
		flex-direction: column;
	}
	body#results .newspeper_flex .newspeper_left,
	body#results .newspeper_flex .newspeper_right {
		width: 100%;
	}
	/* 1020px以下：掲載数エリアを中央寄せ */
	body#results .newspeper_left,
	body#results .newspeper_left h5,
	body#results .newspeper_left p {
		text-align: center;
	}
	body#results .newspeper_left p {
		padding-left: 0;
	}
}

@media screen and (max-width: 768px) {
	body#results table {
		font-size: 13px;
	}
	/* 放送情報エリアをスマホで縦並び */
	body#results .previous_item_press .flex {
		flex-direction: column;
	}
	body#results .previous_item_press .flex > .tv_info:first-child,
	body#results .previous_item_press .flex > .tv_info_right {
		flex: 0 0 100%;
	}
	/* スマホ時はセンター寄せ、padding-leftを0に */
	body#results .text-left,
	body#results .newspeper_left,
	body#results .tv_info > h5,
	body#results .tv_info > p {
		text-align: center;
	}

	body#results .newspeper_left p {
		padding-left: 0;
	}
	/* スマホ時：スクロール可能であることを示す */
	body#results .scrollbox {
		position: relative;
	}
	body#results .scrollbox::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		width: 30px;
		height: 100%;
		pointer-events: none;
		z-index: 5;
	}
}

.previous_list .previous_item_exb > div {
	justify-content: space-between;
	align-items: center;
}

.previous_list .previous_item_exb .countbox_cont,
.previous_list .previous_item_exb ul {
	width: 48%;
}

.previous_list .previous_item_exb .countbox_cont {
	margin-bottom: 0;
}

.previous_list .previous_item_exb ul li {
	background: #f2f2ff;
	border-radius: 10px;
	padding: 10px 15px;
	color: #09143a;
	width: 100%;
}

.previous_list .previous_item_exb ul li + li {
	margin-top: 3%;
}

.previous_list .previous_item_exb ul li h6 {
	font-size: 14px;
	font-weight: bold;
}

.previous_list .previous_item_exb ul li h6 span {
	font-size: 16px;
}

.previous_list .previous_item_exb ul li p {
	font-weight: bold;
}

.previous_list .previous_item_exb .satisfaction {
	margin-top: 15px;
	border: 3px solid #50b3da;
	padding: 10px 15px;
	border-radius: 10px;
	justify-content: center;
	align-items: center;
}

.previous_list .previous_item_exb .satisfaction h6 {
	width: 290px;
	font-weight: bold;
	color: #50b3da;
	order: -1;
}

.previous_list .previous_item_exb .satisfaction p {
	width: calc(98% - 166px);
	max-width: max-content;
	font-weight: bold;
	font-size: 18px;
}

.previous_list .previous_item_exb .satisfaction .big {
	font-size: 30px;
	margin: 0 5px;
	color: #db3a87;
}

.previous_list .previous_item_exb .satisfaction::after {
	font-family: 'Material Icons Round';
	content: "keyboard_double_arrow_right";
	display: block;
	font-size: 16px;
	color: #50b3da;
	order: -1;
}


/* CONFERENCE / 特別企画プロフィール */

.previous_list .previous_item_cof {}

.previous_list .previous_item_cof ul {
	justify-content: space-between;
}

.previous_list .previous_item_cof ul li {
	width: 33%;
	padding: 1%;
	margin-bottom: 0;
	border-right: 1px solid #e7e7e7;
}

.previous_list .previous_item_cof ul li:last-child {
	border-right: none;
}


/* 報道関係者プロフィール */

.previous_list .previous_item_press {}

.previous_list .previous_item_press ul li:nth-child(n+4) {
	/*width: 49.3%;*/
}


/* バナーリンク */

.previous_card_list {
	justify-content: space-between;
	margin-top: 30px;
	position: relative;
}

.previous_card_list .previous_card_list_item {
	width: 48%;
}

.previous_card_list .previous_card_list_item a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	text-decoration: none;
	transition: all 400ms ease;
}

.previous_card_list .previous_card_list_item a:hover {
	background-color: #50b3da;
	opacity: 1;
	color: #fff;
}

.previous_card_list .previous_card_list_item a figure {
	max-width: 80px;
	margin-right: 15px;
}

.previous_card_list .previous_card_list_item a figure img {}

.previous_card_list .previous_card_list_item a h6 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.previous_card_list .previous_card_list_item a .c_btn {
	padding-top: 10px;
	padding-bottom: 10px;
}

.previous_card_list .previous_card_list_item a:hover .c_btn {
	color: #fff;
}

/* カードの高さを揃える */
.previous_card_list {
	align-items: stretch;
}

.previous_card_list .previous_card_list_item {
	display: flex;
	flex-direction: column;
	border: 2px solid #50b3da;
	justify-content: center;
}

.previous_card_list .previous_card_list_item > a,
.previous_card_list .previous_card_list_item > figure {
	flex: 1;
}

.previous_card_list .previous_card_list_item > div {
	display: flex;
	flex: 1;
}

/* ボタングループ */
.previous_card_list .btn_group {
	display: flex;
	gap: 10px;
	margin-top: auto;
}

.previous_card_list .btn_group .c_btn {
	flex: 1;
	padding: 10px 15px;
}

/* ボタン縦並び */
.previous_card_list .btn_group--vertical {
	flex-direction: column;
}

/* 複数ボタンカード（画像左・コンテンツ右） */
.previous_card_list_item--multi_btn {
	background: #f7f7f7;
	border: 2px solid #50b3da;
	padding: 15px;
}

.previous_card_list_item--multi_btn .card_inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.previous_card_list_item--multi_btn .card_inner figure {
	max-width: 80px;
	margin-right: 15px;
}

.previous_card_list_item--multi_btn .card_inner > div {
	display: flex;
	flex-direction: column;
}

.previous_card_list_item--multi_btn h6 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	width: 100%;
}

.previous_card_list_item--multi_btn .btn_group--vertical {
	width: 100%;
}

.previous_card_list_item--multi_btn .btn_group--vertical .c_btn {
	width: 100%;
	max-width: 100%;
	background-color: #50b3da;
	border-color: #50b3da;
	color: #fff;
	font-size: 14px;
}

.previous_card_list_item--multi_btn .btn_group--vertical .c_btn:hover {
	background-color: #3a9fc6;
	border-color: #3a9fc6;
	opacity: 1;
}

/* 画像なしバージョンのカードリスト */
.previous_card_list--noimg .previous_card_list_item a {
	flex-direction: column;
	text-align: center;
}

.previous_card_list--noimg .previous_card_list_item a div {
	width: 100%;
}

.previous_card_list--noimg .previous_card_list_item a h6 {
	margin-bottom: 15px;
}

.previous_card_list--noimg .previous_card_list_item a p {
	margin-bottom: 10px;
}

.previous_card_list--noimg .previous_card_list_item a .c_btn {
	margin-top: 10px;
}


/* 来場者プロフィール */

.previous_list .previous_item_vis {}

.previous_list .previous_item_vis .graph {
	justify-content: space-between;
	/* align-items: center; */
	margin-bottom: 20px;
}

.previous_list .previous_item_vis .graph > * {
	width: 49%;
	margin-bottom: 0;
}

.previous_list .previous_item_vis .graph figure {
	width: 45%;
	padding: 10px 0;
}

.previous_list .previous_item_vis .graph figure figcaption {
	background: #f2f2ff;
	color: #09143a;
	font-weight: bold;
	font-size: 14px;
	padding: 3px;
	width: 100%;
	max-width: 200px;
	border-radius: 30px;
	text-align: center;
	margin: auto;
	margin-bottom: 20px;
}

.previous_list .previous_item_vis .graph_list1{
	justify-content: space-evenly;
}

.previous_list .previous_item_vis .graph_list1 li{
	width: 25%;
}

.previous_list .previous_item_vis .graph_list1 li figure{
	margin-top: 30px;
}

.previous_list .previous_item_vis .graph_list2 {
	display: flex;
	justify-content: space-between;
	/*margin-top: 50px;*/
}

.previous_list .previous_item_vis .graph_list2 li {
	width: 48%;
}

.previous_list .previous_item_vis .graph_list2 li h5 {
	margin-bottom: 20px;
}

.previous_list .previous_item_vis .graph_list2 li:nth-child(1) figure,
.previous_list .previous_item_vis .graph_list2 li:nth-child(2) figure {
	width: 100%;
	margin: auto;
}

.previous_list .previous_item_vis .graph_list2 li:nth-child(2) figure {
	/*aspect-ratio: 133/150;*/
}

.previous_list .previous_item_vis .graph_list2 li:nth-child(2) figure img {
	object-fit: contain;
	object-position: bottom;
	height: 100%;
}

.previous_list .previous_item_vis .graph_list2 li:nth-child(n+3) {
	margin-top: 4%;
}

@media screen and (max-width: 767px) {
	.previous_list .countbox_cont .count-size {
		font-size: 45px;
	}
	.previous_list .previous_item_exb ul li {
		width: 100%;
	}
	.previous_list .previous_item_exb ul li + li {
		margin-top: 2%;
	}
	.previous_list .previous_item_exb ul li br {
		display: none;
	}
	.previous_list .previous_item_exb .satisfaction h6 {
		width: max-content;
	}
	.previous_list .previous_item_exb .satisfaction p {
		width: 100%;
	}
	.previous_list .previous_item_exb .satisfaction::after {
		content: none;
	}
	.previous_list .previous_item_exb .satisfaction h6::after {
		font-family: 'Material Icons Round';
		content: "keyboard_double_arrow_right";
		color: #50b3da;
	}
	.previous_list .previous_item_cof ul li {
		width: 50%;
		padding: 3%;
	}
	.previous_list .previous_item_cof ul li:nth-child(2) {
		border-right: none;
	}
	.previous_list .previous_item_cof ul li:nth-child(3) {
		width: 100%;
		border-top: 1px solid #e7e7e7;
	}
	.previous_list .previous_item_press ul li:nth-child(n+3) {
		margin-top: 2%;
	}
	/* .previous_list .previous_item_vis .graph>* {
    width: 100%;
  } */
	.previous_list .previous_item_vis .graph h6 {
		margin-right: auto;
		margin-top: 30px;
	}
	.previous_list .previous_item_vis .graph h6::after {
		content: "keyboard_double_arrow_down";
	}
	/* .previous_list .previous_item_vis .graph figure {
    width: 75%;
    margin: auto;
    padding-top: 10px;
  } */
  .previous_card_list .previous_card_list_item {
	width: 100%;
}

.previous_card_list .previous_card_list_item + .previous_card_list_item {
	margin-top: 3%;
}
}



@media screen and (max-width: 540px) {
	.previous_list .countbox_cont {
		margin-bottom: 10px;
		padding: 0 0 10px;
	}
	.previous_list .countbox_cont .count-size {
		font-size: 35px;
	}
	.previous_list h5 {
		max-width: 150px;
	}
	.previous_list .previous_item_exb ul li h6 span {
		font-size: 14px;
	}
	.previous_list .previous_item_cof ul li {
		width: 50%;
	}
	.previous_list .previous_item_cof ul li:nth-child(2) {
		border-right: none;
		border-bottom: none;
	}
	.previous_list .lightblue_list li,
	.previous_list .previous_item_press ul li:nth-child(n+4) {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	.previous_list .previous_item_press ul li:nth-child(n+2) {
		margin-top: 2%;
	}
	.previous_list .lightblue_list li h6 {
		width: calc(100% - 150px);
	}
	.previous_list .lightblue_list li p {
		width: 130px;
	}

	.previous_list .previous_item_exb .countbox_cont,
	.previous_list .previous_item_exb ul {
		width: 100%;
	}
	.previous_list .previous_item_cof ul li {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #e7e7e7;
	}
	.previous_list .previous_item_cof ul li:nth-child(3) {
		border-bottom: none;
	}
	.previous_list .previous_item_vis .graph > * {
		width: 100%;
	}
	.previous_list .previous_item_vis .graph figure {
		width: 60%;
		margin: auto;
	}
	.previous_list .previous_item_vis .graph_list2 {
		margin-top: 30px;
	}
	.previous_list .previous_item_vis .graph_list2 li {
		width: 100%;
	}

	.previous_list .previous_item_vis .graph_list1 li{
		width: 100%;
	}

	.previous_list .previous_item_vis .graph_list1 li figure{
		width: 75%;
    	margin: 20px auto 60px;
	}

	.previous_list .previous_item_vis .graph_list2 li + li,
	.previous_list .previous_item_vis .graph_list2 li:nth-child(2) {
		margin-top: 30px;
	}
	.previous_list .previous_item_vis .graph_list2 li:nth-child(2) figure {
		aspect-ratio: unset;
	}
	.previous_card_list .previous_card_list_item {
		width: 100%;
	}
	.previous_card_list .previous_card_list_item + .previous_card_list_item {
		margin-top: 3%;
	}
}


/* CEATECとは */

/* CEATEC 2024への参画により期待される効果 */

.why .effect {}

.why .effect .item {
	margin-top: 3em;
}

.why .effect h4 {
	margin-top: 0;
	margin-bottom: 0;
	width: calc(100% - 90px);
}

.why .effect .material-symbols-outlined {
	font-family: 'Material Icons Round';
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	vertical-align: middle;
}

.why .effect dl {
	flex-wrap: wrap;
	height: 100%;
}

.why .effect dt {
	padding: 0 10px 5px;
	align-items: flex-start;
}

.why .effect dt span {
	color: #fff;
	font-weight: bold;
	background: #0e1b47;
	text-align: center;
	width: 80px;
	border-radius: 50px;
	margin-top: 3px;
	line-height: 1.6;
	font-size: .9rem;
}

.why .effect dd {
	width: 48%;
	margin-top: 20px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
}

.why .effect .wid100 {
	width: 100%;
	flex-direction: unset;
	flex-wrap: wrap;
}

.why .effect .dod {
	position: relative;
	padding-left: 1em;
	word-break: auto-phrase;
	width: 100%;
}

.why .effect .dod::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50px;
	background-color: #00215d;
}

.why .effect .dod + * {
	margin-top: 10px;
}

.why .effect .dod .big {
	font-size: 1.4rem;
	color: #0e1b47;
	text-decoration: underline;
	text-decoration-thickness: 0.5em;
	/* 線の太さ */
	text-decoration-color: rgba(255, 228, 0, 0.4);
	/* 線の色 */
	text-underline-offset: -0.2em;
	/* 線の位置。テキストに重なるようにやや上部にする */
	text-decoration-skip-ink: none;
	/* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
	margin-top: -0.4rem;
	padding: 0 .2rem;
	display: inline-block;
}

.why .effect figure {
	margin-top: 10px;
}

.why .effect figure img {}

.why .effect p {}

.why .effect .countbox_cont {
	padding: 0;
	margin-bottom: 10px;
	width: 100%;
}

.why .effect .countbox_cont h6 {
	background: #09143a;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	padding: 3px;
	width: 100%;
	max-width: 200px;
	border-radius: 30px;
	text-align: center;
	margin: auto;
}

.why .effect .countbox_cont p {}

.why .effect .countbox_cont p .count-size {}

.why .effect .att_txt {
	font-size: 0.8rem;
	margin-top: 10px;
}

.why .effect .engagement {}

.why .effect .engagement .previous_item_press {
	margin-top: 20px;
}

.why .effect .engagement .previous_item_press .lightblue_list .lightblue_bg {
	width: 48.5%;
}

.why .effect .engagement .previous_item_press .lightblue_list .lightblue_bg:nth-child(n+3) {
	margin-top: 1%;
}

.why .effect .lead {}

.why .effect .lead .previous_list {}

.why .effect .lead .previous_list > li {
	width: 48.5%;
	margin-top: 0;
}

.why .effect .lead .previous_item_exb ul {
	width: 100%;
}

.why .effect .lead .previous_item_vis .graph figure {
	margin: auto;
	width: 60%;
}

.why .effect .lead_table {
	width: 100%;
	text-align: center;
}

.why .effect .lead_table thead {}

.why .effect .lead_table thead tr {}

.why .effect .lead_table thead th {
	padding: 0.5em;
	border-right: 1px solid #333;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	background: #fff;
}

.why .effect .lead_table thead tr th:last-child {
	border-right: none;
}

.why .effect .lead_table tbody {}

.why .effect .lead_table tbody {}

.why .effect .lead_table tbody td {
	padding: 1em 0.5em;
	border-right: 1px solid #333;
	border-bottom: 1px solid #000;
	color: #fff;
}

.why .effect .lead_table tbody td:nth-child(1) {
	background-color: #7cbbf4;
}

.why .effect .lead_table tbody td:nth-child(2) {
	background-color: #57a6ee;
}

.why .effect .lead_table tbody td:nth-child(3) {
	background-color: #2e75b6;
}

.why .effect .lead_table tbody td:nth-child(4) {
	background-color: #002060;
}

.why .effect .lead_table tbody tr td:last-child {
	border-right: none;
}

.why .effect .lead_table tbody td span {
	font-size: 1.2rem;
	font-weight: bold;
}

.why .effect .comprehension {}

.why .effect .comprehension h6 {
	color: #d9b300;
}

.why .effect .comprehension dd {}

.why .effect .comprehension dd p {
	margin-bottom: auto;
}

.why .effect .comprehension dd figure {
	margin-top: 10px;
	margin-bottom: 0;
}

.why .effect .comprehension dd figure img {}

.why .effect .comprehension .flex_l,
.why .effect .comprehension .flex_r {
	width: 48%;
}

.why .effect .comprehension .flex_l {}

.why .effect .comprehension .flex_l p {}

.why .effect .comprehension .flex_l figure {}

.why .effect .comprehension .flex_l figure img {}

.why .effect .comprehension .flex_l ul {
	padding-left: 6px;
}

.why .effect .comprehension .flex_l ul li {}

.why .effect .comprehension .flex_l ul li::before {
	background-color: #d9b300;
}

.why .effect .comprehension .yellow_box {
	margin-top: 1.5em;
	padding: 0 25px 25px;
	background-color: rgba(217, 179, 0, .1);
	border: 1px solid #d9b300;
	width: 100%;
}

.why .effect .comprehension .yellow_box h6 {
	margin-bottom: 0.5em;
	padding-top: 1em;
	padding-bottom: 0.25em;
	color: #d9b300;
	font-size: 1.1rem;
}

.why .effect .comprehension .yellow_box ul {}

.why .effect .comprehension .yellow_box ul li {
	font-weight: bold;
	margin-top: 0;
}

.why .effect .comprehension .yellow_box ul li::before {
	background-color: #d9b300;
}

.why .effect .comprehension .yellow_box ul li span {
	font-weight: normal;
}

.why .effect .comprehension .yellow_box ul li span p {}




/* c_spec_bordered スタイル（why-top専用） */
body.why-top .c_spec.c_spec_bordered dt {
	font-size: 14px;
}

body.why-top .c_spec.c_spec_bordered dd {
	font-size: 13px;
	padding-left: 1.5em;
}

/* エレクトロニクスショー　　*/
body.why-top .c_spec.c_spec_bordered.electronics_detail dt {
	font-size: 13px;
}
body.why-top .c_spec.c_spec_bordered.electronics_detail dd {
	font-size: 12px;
}

/* COM JAPAN */


body.why-top .c_spec.c_spec_bordered.com_japan dt {
	font-size: 13px;
}
body.why-top .c_spec.c_spec_bordered.com_japan dd {
	font-size: 12px;
}

/* flex_unit スタイル打ち消し（why-top専用） */
body.why-top .c_section_block .flex_unit {
	gap: 0;
}

body.why-top .c_section_block .flex_unit figure {
	flex: none;
}

/* flex_unit 横並び維持（why専用） */
body.why .c_section_block .flex_unit {
	display: flex;
}

body.why .c_section_block .flex_unit figure {
	flex: 0 0 40%;
}

body.why .c_section_block .flex_unit > section,
body.why .c_section_block .flex_unit > p {
	flex: 1;
}

@media screen and (max-width: 768px) {
	body.why .c_section_block .flex_unit {
		display: block;
	}

	body.why .c_section_block .flex_unit figure {
		width: 100%;
		margin-top: 20px;
	}

	/* ol.list.reason 専用レスポンシブ */
	body.why ol.list.reason li > p,
	body.why ol.list.reason li > figure {
		width: 100%;
		flex: none;
	}

}

.nowrap{
white-space: nowrap;
}

table td{
	padding: 1em 0.5em;
	border-left: 1px solid #c6c6c6;
    border-right: 1px solid #c6c6c6;
    border-top: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
	text-align: right;
}

.table_head th{
	padding: 1em 0.5em;
	white-space: nowrap;
    text-align: center;
	color: #fff;
	background-color: var(--ceatecblue);
	vertical-align: middle;
    line-height: 1.2;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

#countbox table{
	width: 100%;
}

#countbox table td {
	border-bottom: 1px solid #c6c6c6;
}

#results .c_section_block th,
#results .c_section_block td {
	padding: 5px;
}

#results .c_section_block td {
	vertical-align: middle;
}

#countbox table tbody tr:nth-child(odd) {
	background-color: #f4f4f4;
}


/*テキスト左揃え*/

.previous_list .txt_left{
	text-align: left;
}
.previous_item_press .achievement{
	justify-content: space-between;

}

#countbox .previous_item_press .achievement .table_head th{
	padding: 0.5em 0.5em;

}

#countbox .previous_item_press .achievement table .category-header td{
	color: #fff;
	font-weight: bold;
text-align: left;
background-color: #34204e;
}

#countbox .previous_item_press .achievement table .sub-category-header td{
	color: #fff;
	font-weight: bold;
	text-align: left;
	background-color: #1795e9;
}

.previous_list .achievement .countbox_cont div h5{
	max-width: 400px;
}

.previous_list .achievement .countbox_cont > div:nth-of-type(1) .count.count-size{
	font-size: 80px;
}


.previous_list .achievement .countbox_cont:last-child{
	display: flex;
    flex-direction: column;
}

.countbox_cont .achievement_num{
	display: flex;
    justify-content: space-between;
	flex-direction: column;
}


.countbox_cont .achievement_num div h5{
	max-width: none;
}


.achievement_img{
	display: flex;
	justify-content: space-between;
}

.achievement_img figure{
	width: 48%;
}

.previous_list .newspeper{
	display: flex;
	justify-content: center;
    align-items: center;
}


.previous_list .newspeper ul{
	width: 100%;
	position: relative;
	background-color: #eaeaea;
	text-align: left;
	padding: 10px;
}

.media1 table td,
.media2 table td{
	text-align: left;
}

.previous_list .media_box{
    margin-bottom: 30px;
}

.previous_list .media1 .media_box{
    width: 60%;
}


.media_box_wrapper{
	display: flex;
	justify-content: space-between;
	align-items:flex-start;
}

.media_box_wrapper figure{
width: 40%;
margin-right: 20px;
}

.media1 .media_box_wrapper figure{
	width: 35%;
	margin-right: 0px;
	}

.previous_list .media_box div{
	display: flex;
    justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.previous_list .media_box div figure{
	width: 30%;
}

.previous_list .media_box table td{
	text-align: left;
}

.previous_list .tv_info h5{
	max-width: none;
	margin-bottom: 20px;
}

.previous_list .tv_info table td{
	text-align: left;
}

.center{
	text-align: center;
}
.previous_list .sns_info{
	text-align: left;
}

.sns_box_wrapper{
	display: flex;
    justify-content: space-between;
}

.previous_list .sns_box{
	width: 48%;
	margin-top: 20px;
}

.previous_list .sns_box h5{
	margin: 0 0 20px;
}
.previous_list .sns_box .sns_num{
	width: 60%;
	text-align: left;
}

.previous_list .sns_box .sns_block{
	display: flex;
	justify-content: space-between;
}

.previous_list .sns_box .sns_block figure{
	width: 35%;
}

.previous_list .sns_box .sns_num .count-size{
	font-size: 38px;
}


/*WHY CEATEC*/

.exhibit03_01_img {
	width: 50%;
}
.exhibit03_01_img {
	width: 50%;
}
.exhibit03_01_row {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.exhibit03_01_col {
	display: flex;
	flex-direction: column;
	gap: 65px;
}
.exhibit03_list {
	align-items: flex-start!important;
	margin: 0 auto;
}
.exhibit03_list img {
	width: 80%;
	margin: 0 auto;
}


@media screen and (max-width: 1200px){
	.countbox_cont .achievement_num{
		flex-wrap: wrap;
	}

	.countbox_cont .achievement_num div{
		margin: 0;
		padding: 3%;
	}

	.countbox_cont .achievement_num div:nth-child(3){
		width: 100%;
	}
}

@media screen and (max-width: 1100px) {
	.previous_list .sns_box .sns_num .count-size{
		font-size: 30px;
	}
}

@media screen and (max-width: 880px) {
	.previous_list .previous_item_vis .graph_list2{
		flex-direction: column;
	}

	.previous_list .previous_item_vis .graph_list2 li{
		width: 80%;
		margin: 30px auto 0;
	}
}

@media screen and (max-width: 767px){
	.media_box_wrapper{
		flex-direction: column;
	}

	.previous_list .media_box div{
		flex-direction: column;
	}

	.previous_list .media_box div figure{
		width: 80%;
	}

	.previous_list .media1 .media_box{
		width: 100%;
	}

	.media1 .media_box_wrapper figure{
		width: 80%;
		margin: 0 auto 30px;
	}

	.sns_box_wrapper{
		flex-direction: column;
		align-items: center;
	}

	.previous_list .sns_box{
		width: 100%;
	}

	.previous_list .sns_box .sns_num .count-size{
		font-size: 38px;
	}

	.countbox_cont .achievement_num div{
		width: 100%;
	}
}


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

	.previous_list .achievement .countbox_cont > div:nth-of-type(1) .count.count-size{
		font-size: 56px;
	}


	.previous_list .previous_item_vis .graph_list2 li{
		width: 100%;
	}

	.achievement_img{
		flex-direction: column;
		align-items: center;
		row-gap: 30px;
	}

	.achievement_img figure{
		width: 100%;
	}


	


	.previous_list .newspeper ul::before{
		top: 10px;
    	left: -5px;
		font-size: 12px;
		padding: 4px 24px;
    	border-radius: 0 24px 24px 0;
	}

	.previous_list .newspeper ul{
		width: 100%;
		padding: 10px;

	}

	.previous_list .sns_box .sns_num .count-size{
		font-size: 30px;
	}


}

/* ================================================== */
/* 英語ページ用 */
/* ================================================== */

.en .list_reason > .item dt::before, 
.en .list_reason > .item dt::after {
    transform: none;
	top: 0px;
}

.en .list_reason > .item dt::after {
    left: 2px;
    top: 12px;
}