@charset "UTF-8";
/* ---------------------------------------- */
/* less　変数設定
/* ---------------------------------------- */
@import "reset.css";
.box-sizing {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/*clearfix*/
/*透過*/
/*インラインボックス*/
.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/*シャドウ*/
/*角丸処理*/
/*アニメーション*/
/*-------------------------------------------------*/
/*Flexbox*/
.flexbox {
  -js-display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
/*-------------------------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP Regular"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format("opentype");
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans CJK JP Medium"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.woff2) format('woff2'), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.woff) format('woff'), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.otf) format('opentype');
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: local("Noto Sans CJK JP Black"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Black.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Black.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Black.otf) format("opentype");
}
/********************/
/**** ページ基礎 ****/
/********************/
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.6;
  font-size: 15px;
  color: #333333;
  /* font-feature-settings: "palt"; */
}
/* Google Translate Overrides対応 */
html,
body {
  min-height: 0!important;
  height: auto!important;
  position: inherit!important;
}
a {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  color: #317ac9;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.wrapper {
  margin: 0 auto;
  max-width: 1000px;
  min-width: 1000px;
  overflow: hidden;
  zoom: 1;
  overflow: visible;
}
sup {
  font-size: 0.8em;
  vertical-align: top;
}
/* PC表示 */
.smp {
  display: none;
}
.pc {
  display: block;
}
/* ページトップへ */
#page-top {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 1000 !important;
}
#page-top a {
  display: block;
  color: white;
  font-size: 2em;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: black;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
#page-top a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
/* #page-top */
/******************/
/**** ヘッダー ****/
/******************/
header {
  height: 320px;
  width: 100%;
  min-width: 1000px;
  background: url("../img/common/bg.png") no-repeat white;
  background-size: 100% 360px;
  position: relative;
}
header .container {
  -js-display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*
	●水平方向の揃え方
	space-between：初期値。均等に間隔を空ける
	space-around：「space-between」と同じく均等に間隔を空ける。違うのは、左右の端のFlexアイテムにも半分ずつ間隔を空けてるところ。
	flex-start：横配置の場合、「左揃え」、縦配置の場合、「上揃え」になります。
	flex-end：横配置の場合「右揃え」、縦配置の場合「下揃え」になります。
	center：「中央揃え」です。
	*/
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  /*
	●垂直方向の揃え方（親要素に設定）
	flex-start：上揃えです。
	flex-end：下揃えです。
	center：上下中央寄せです。
	baseline：最初のflexアイテムのbaselineに揃います。
	stretch：flexコンテナいっぱいに広がります。
	*/
  -webkit-align-items: center;
  -moz-flex-direction: center;
  -ms-align-items: center;
  -o-flex-wrap: center;
  align-items: center;
  height: 320px;
  max-width: 1000px;
  margin: auto;
  padding-top: 40px;
}
header .container h1 {
  width: 440px;
}
header .container h1 a {
  opacity: 100;
  filter: alpha(opacity=10000);
}
header .container h1 a img {
  width: 100%;
  height: auto;
}
header .container h2 {
  margin-top: 10px;
  width: 540px;
}
header .container h2 img {
  width: 100%;
  height: auto;
}
header .container .mti {
  position: absolute;
  top: 70px;
  right: 20px;
  width: 95px;
}
header .container .mti img {
  width: 100%;
  height: auto;
}
header .container .anv {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 75px;
}
header .container .anv img {
  width: 100%;
  height: auto;
}
/* バナー */
.bnr_area {
  background: #f5f5f5;
}
.bnr_area .wrapper {
  padding: 20px 0 10px;
}
.bnr_area ul {
  -js-display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*
	●水平方向の揃え方
	space-between：初期値。均等に間隔を空ける
	space-around：「space-between」と同じく均等に間隔を空ける。違うのは、左右の端のFlexアイテムにも半分ずつ間隔を空けてるところ。
	flex-start：横配置の場合、「左揃え」、縦配置の場合、「上揃え」になります。
	flex-end：横配置の場合「右揃え」、縦配置の場合「下揃え」になります。
	center：「中央揃え」です。
	*/
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  /*
	●垂直方向の揃え方（親要素に設定）
	flex-start：上揃えです。
	flex-end：下揃えです。
	center：上下中央寄せです。
	baseline：最初のflexアイテムのbaselineに揃います。
	stretch：flexコンテナいっぱいに広がります。
	*/
  -webkit-align-items: center;
  -moz-flex-direction: center;
  -ms-align-items: center;
  -o-flex-wrap: center;
  align-items: center;
  /*
	●子要素の折り返し設定
	wrap:初期値。折り返しを許可、「複数行」。
	nowrap:折り返しなし、つまり「単一行」。
	wrap-reverse:「wrap」と同じで、ただ、折り返し地点が逆になります。
	*/
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bnr_area ul li {
  width: 238px;
  margin-left: 1em;
  margin-bottom: 10px;
}
.bnr_area ul li:nth-child(1) {
  margin-left: 0;
}
/****************/
/**** メイン ****/
/****************/
main {
  display: block;
  overflow: hidden;
  /************************/
  /**** コンテンツ ****/
  /************************/
  /* article.cnts */
}
main article {
  /* コンテンツ共通 */
  /* section.cnt */
  /* ボタン共通使用 */
  /* 準備中 */
}
main article section.cnt {
  /* h1 */
}
main article section.cnt .wrapper {
  padding: 60px 0 0;
}
main article section.cnt h1 {
  -js-display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*
	●水平方向の揃え方
	space-between：初期値。均等に間隔を空ける
	space-around：「space-between」と同じく均等に間隔を空ける。違うのは、左右の端のFlexアイテムにも半分ずつ間隔を空けてるところ。
	flex-start：横配置の場合、「左揃え」、縦配置の場合、「上揃え」になります。
	flex-end：横配置の場合「右揃え」、縦配置の場合「下揃え」になります。
	center：「中央揃え」です。
	*/
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  /*
	●垂直方向の揃え方（親要素に設定）
	flex-start：上揃えです。
	flex-end：下揃えです。
	center：上下中央寄せです。
	baseline：最初のflexアイテムのbaselineに揃います。
	stretch：flexコンテナいっぱいに広がります。
	*/
  -webkit-align-items: center;
  -moz-flex-direction: center;
  -ms-align-items: center;
  -o-flex-wrap: center;
  align-items: center;
  width: 100%;
  font-size: 30px;
  line-height: 1.4;
  color: black;
  margin-bottom: 20px;
}
main article section.cnt h1::before,
main article section.cnt h1::after {
  content: "";
  height: 14px;
  flex-grow: 1;
  background: url("../img/common/h1_bg.gif") repeat-x;
}
main article section.cnt h1::before {
  margin-right: 0.5em;
}
main article section.cnt h1::after {
  margin-left: 0.5em;
}
main article section.cnt h2 {
  font-size: 22px;
  color: black;
  line-height: 1.4;
}
main article section.cnt h3 {
  font-size: 16px;
  color: black;
}
main article section.cnt h4 {
  color: black;
}
main article section.cnt h5 {
  color: black;
}
main article section.cnt i {
  font-size: 1.1em;
  vertical-align: baseline;
}
main article .btn {
  text-align: center;
}
main article .btn a {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  font-size: 21px;
  color: white;
  text-decoration: none;
  background: #be380d;
  padding: 10px 35px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}
main article .btn a i {
  font-size: 1.2em;
  margin-right: 7px;
}
main article section.none {
  height: 40vh;
  position: relative;
}
main article section.none p {
  font-size: 2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
/* main */
/******************/
/**** フッター ****/
/******************/
footer {
  background: #f5f5f5;
  margin: 60px 0 0 0;
}
footer .wrapper {
  padding: 40px 0;
}
footer .container {
  -js-display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*
	●水平方向の揃え方
	space-between：初期値。均等に間隔を空ける
	space-around：「space-between」と同じく均等に間隔を空ける。違うのは、左右の端のFlexアイテムにも半分ずつ間隔を空けてるところ。
	flex-start：横配置の場合、「左揃え」、縦配置の場合、「上揃え」になります。
	flex-end：横配置の場合「右揃え」、縦配置の場合「下揃え」になります。
	center：「中央揃え」です。
	*/
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
footer .container dl {
  -js-display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*
	●垂直方向の揃え方（親要素に設定）
	flex-start：上揃えです。
	flex-end：下揃えです。
	center：上下中央寄せです。
	baseline：最初のflexアイテムのbaselineに揃います。
	stretch：flexコンテナいっぱいに広がります。
	*/
  -webkit-align-items: center;
  -moz-flex-direction: center;
  -ms-align-items: center;
  -o-flex-wrap: center;
  align-items: center;
}
footer .container dl dt {
  font-weight: 500;
  margin-right: 1em;
  color: black;
}
footer .container dl dd {
  -js-display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*
	●垂直方向の揃え方（親要素に設定）
	flex-start：上揃えです。
	flex-end：下揃えです。
	center：上下中央寄せです。
	baseline：最初のflexアイテムのbaselineに揃います。
	stretch：flexコンテナいっぱいに広がります。
	*/
  -webkit-align-items: center;
  -moz-flex-direction: center;
  -ms-align-items: center;
  -o-flex-wrap: center;
  align-items: center;
}
footer .container dl dd h1 {
  margin-right: 1.5em;
}
footer .container dl dd p {
  font-size: 14px;
}
footer .container dl dd p strong {
  font-weight: 500;
}
footer .container dl dd p i {
  margin-right: 0.3em;
}
footer .container dl dd p .tel {
  font-weight: bold;
}
footer address {
  text-align: center;
  background: url("../img/common/bg.png") no-repeat;
  background-position: 50% 50%;
  background-size: 100% 360px;
  padding: 20px;
  color: white;
}
/*footer*/
/****************************/
/**** 各ページの読み込み ****/
/****************************/
/* トップページ・会場へのアクセス・よくある質問 */
/* LESS Document */
/**********************/
/**** トップページ ****/
/**********************/
body#top {
  /* 開催概要 */
  /* 出展対象 */
  /* 来場対象 */
  /* 小間規格と出展料 */
  /* 展示会について */
  /* 出展資料請求 */
}
body#top section.outline table {
  width: 100%;
}
body#top section.outline table td,
body#top section.outline table th {
  border: 1px solid rgba(0, 0, 0, 0.25);
  vertical-align: middle;
  padding: 15px;
}
body#top section.outline table td span.new,
body#top section.outline table th span.new {
  margin-left: 0.5em;
  font-size: 0.7em;
  font-weight: 500;
  background: #be380d;
  color: white;
  padding: 1px 4px 2px;
}
body#top section.outline table th {
  font-weight: 500;
  background: #f5f5f5;
  text-align: center;
  width: 15%;
}
body#top section.subject .item {
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 20px;
  margin-top: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
body#top section.subject .item h3 {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  min-width: 40%;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 5px 50px 5px 10px;
  color: white;
  background: url("../img/common/triangle.png") 100% 50% no-repeat #3778c8;
  background-size: 30px 100%;
}
body#top section.subject .item ul {
  -js-display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*
	●水平方向の揃え方
	space-between：初期値。均等に間隔を空ける
	space-around：「space-between」と同じく均等に間隔を空ける。違うのは、左右の端のFlexアイテムにも半分ずつ間隔を空けてるところ。
	flex-start：横配置の場合、「左揃え」、縦配置の場合、「上揃え」になります。
	flex-end：横配置の場合「右揃え」、縦配置の場合「下揃え」になります。
	center：「中央揃え」です。
	*/
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  /*
	●子要素の折り返し設定
	wrap:初期値。折り返しを許可、「複数行」。
	nowrap:折り返しなし、つまり「単一行」。
	wrap-reverse:「wrap」と同じで、ただ、折り返し地点が逆になります。
	*/
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
body#top section.subject .item ul li {
  width: 48%;
  text-indent: -1.2em;
  padding-left: 1.2em;
  font-weight: 500;
}
body#top section.subject .item ul li:before {
  content: "■ ";
  color: #ccc;
}
body#top section.subject .item.brg h3 {
  background: url("../img/common/triangle.png") 100% 50% no-repeat #00aa71;
}
body#top section.subject .item.brg ul li::before {
  content: "● ";
  color: #BCCFC9;
}
body#top section.vis ul {
  -js-display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*
	●子要素の折り返し設定
	wrap:初期値。折り返しを許可、「複数行」。
	nowrap:折り返しなし、つまり「単一行」。
	wrap-reverse:「wrap」と同じで、ただ、折り返し地点が逆になります。
	*/
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  /*
	●水平方向の揃え方
	space-between：初期値。均等に間隔を空ける
	space-around：「space-between」と同じく均等に間隔を空ける。違うのは、左右の端のFlexアイテムにも半分ずつ間隔を空けてるところ。
	flex-start：横配置の場合、「左揃え」、縦配置の場合、「上揃え」になります。
	flex-end：横配置の場合「右揃え」、縦配置の場合「下揃え」になります。
	center：「中央揃え」です。
	*/
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  /*
	●垂直方向の揃え方（親要素に設定）
	flex-start：上揃えです。
	flex-end：下揃えです。
	center：上下中央寄せです。
	baseline：最初のflexアイテムのbaselineに揃います。
	stretch：flexコンテナいっぱいに広がります。
	*/
  -webkit-align-items: stretch;
  -moz-flex-direction: stretch;
  -ms-align-items: stretch;
  -o-flex-wrap: stretch;
  align-items: stretch;
}
body#top section.vis ul li {
  -js-display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*
	●水平方向の揃え方
	space-between：初期値。均等に間隔を空ける
	space-around：「space-between」と同じく均等に間隔を空ける。違うのは、左右の端のFlexアイテムにも半分ずつ間隔を空けてるところ。
	flex-start：横配置の場合、「左揃え」、縦配置の場合、「上揃え」になります。
	flex-end：横配置の場合「右揃え」、縦配置の場合「下揃え」になります。
	center：「中央揃え」です。
	*/
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  /*
	●垂直方向の揃え方（親要素に設定）
	flex-start：上揃えです。
	flex-end：下揃えです。
	center：上下中央寄せです。
	baseline：最初のflexアイテムのbaselineに揃います。
	stretch：flexコンテナいっぱいに広がります。
	*/
  -webkit-align-items: center;
  -moz-flex-direction: center;
  -ms-align-items: center;
  -o-flex-wrap: center;
  align-items: center;
  font-weight: 500;
  width: 32.5%;
  background: #f5f5f5;
  padding: 10px;
  margin: 10px 0 0 0;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
body#top section.fee h2 {
  margin: 20px 0 5px;
}
body#top section.fee strong {
  color: #be380d;
}
body#top section.fee table {
  width: 100%;
}
body#top section.fee table td,
body#top section.fee table th {
  border: 1px solid rgba(0, 0, 0, 0.25);
  vertical-align: middle;
  padding: 15px;
  text-align: center;
  font-weight: 500;
}
body#top section.fee table thead td,
body#top section.fee table thead th {
  background: #3778c8;
  color: white;
}
body#top section.fee table tbody th {
  font-weight: 500;
  background: #f5f5f5;
  text-align: center;
  width: 15%;
}
body#top section.about dl dt {
  border: 2px solid #be380d;
  padding: 5px 0;
  background: #be380d;
  text-align: center;
  font-weight: bold;
  color: white;
  font-size: 1.2em;
}
body#top section.about dl dd {
  border: 2px solid #be380d;
  border-top: 0;
  padding: 10px 15px;
  font-weight: 500;
}
body#top section.doc {
  margin-top: 60px;
}
body#top section.doc .wrapper {
  background: #f5f5f5;
  padding: 40px;
}
body#top section.doc .wrapper h1::before,
body#top section.doc .wrapper h1::after {
  content: none;
}
body#top section.doc .wrapper h3 {
  margin-top: 20px;
  text-align: center;
}
/* トップページ */
/* 出展のご案内 */
/* 来場のご案内 */
/*スマホ表示*/
@media screen and (max-width: 769px) {
  .smp {
    display: block;
  }
  .pc {
    display: none;
  }
  body {
    font-size: 13px;
    position: relative;
  }
  body::after {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
    background: rgba(0, 0, 0, 0);
  }
  a:hover {
    opacity: 100;
    filter: alpha(opacity=10000);
  }
  /* ページトップへ */
  #page-top {
    bottom: 2%;
    right: 4%;
  }
  #page-top a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  #page-top a:hover {
    opacity: 100;
    filter: alpha(opacity=10000);
  }
  /* #page-top */
  /******************/
  /**** ヘッダー ****/
  /******************/
  header {
    height: 45vh;
    width: 100%;
    min-width: 100%;
    background-size: 100% 50vh;
    background-position: 0 -2vh;
  }
  header .container {
    height: 45vh;
    max-width: 80%;
    padding-top: 6vh;
    -js-display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    /*
	●子要素の配置方向
	row：初期値。子要素はHTMLの書き順で、左から右に配置されます。
	column：子要素はHTMLの書き順で、上から下に配置されます。
	row-reverse：「row」と同じで横に配置されるが、並ぶ順序は「右から左」になります。
	column-reverse：「column」と同じで縦に配置されるが、並ぶ順序は「下から上」になります。
	*/
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    /*
	●水平方向の揃え方
	space-between：初期値。均等に間隔を空ける
	space-around：「space-between」と同じく均等に間隔を空ける。違うのは、左右の端のFlexアイテムにも半分ずつ間隔を空けてるところ。
	flex-start：横配置の場合、「左揃え」、縦配置の場合、「上揃え」になります。
	flex-end：横配置の場合「右揃え」、縦配置の場合「下揃え」になります。
	center：「中央揃え」です。
	*/
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
  }
  header .container h1 {
    width: 100%;
  }
  header .container h2 {
    width: 100%;
  }
  header .container h2 img {
    width: 100%;
    height: auto;
  }
  header .container .mti {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 20vw;
  }
  header .container .mti img {
    width: 100%;
    height: auto;
  }
  header .container .anv {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 13vw;
  }
  header .container .anv img {
    width: 100%;
    height: auto;
  }
  /* バナー */
  .bnr_area {
    width: auto;
  }
  .bnr_area .wrapper {
    max-width: 90%;
    min-width: 90%;
    padding: 15px 0 10px;
  }
  .bnr_area ul {
    -js-display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    /*
	●水平方向の揃え方
	space-between：初期値。均等に間隔を空ける
	space-around：「space-between」と同じく均等に間隔を空ける。違うのは、左右の端のFlexアイテムにも半分ずつ間隔を空けてるところ。
	flex-start：横配置の場合、「左揃え」、縦配置の場合、「上揃え」になります。
	flex-end：横配置の場合「右揃え」、縦配置の場合「下揃え」になります。
	center：「中央揃え」です。
	*/
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    /*
	●垂直方向の揃え方（親要素に設定）
	flex-start：上揃えです。
	flex-end：下揃えです。
	center：上下中央寄せです。
	baseline：最初のflexアイテムのbaselineに揃います。
	stretch：flexコンテナいっぱいに広がります。
	*/
    -webkit-align-items: center;
    -moz-flex-direction: center;
    -ms-align-items: center;
    -o-flex-wrap: center;
    align-items: center;
    /*
	●子要素の折り返し設定
	wrap:初期値。折り返しを許可、「複数行」。
	nowrap:折り返しなし、つまり「単一行」。
	wrap-reverse:「wrap」と同じで、ただ、折り返し地点が逆になります。
	*/
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .bnr_area ul li {
    width: 49%;
    margin-left: 2%;
    margin-bottom: 2%;
  }
  .bnr_area ul li img {
    width: 100%;
    height: auto;
  }
  .bnr_area ul li:nth-child(1) {
    margin-left: 0;
  }
  /****************/
  /**** メイン ****/
  /****************/
  main {
    /************************/
    /**** 共通コンテンツ ****/
    /************************/
    /* article.cnts */
  }
  main article {
    /* コンテンツ共通 */
    /* section.cnt */
    /* ボタン共通使用 */
    /* 横スクロール */
  }
  main article section.cnt {
    /* h1 */
  }
  main article section.cnt .wrapper {
    max-width: 90%;
    min-width: 90%;
    padding: 20px 0 0;
  }
  main article section.cnt h1 {
    font-size: 22px;
    margin: 0 auto 10px;
  }
  main article section.cnt h2 {
    font-size: 18px;
  }
  main article section.cnt h3 {
    font-size: 15px;
  }
  main article .btn a {
    font-size: 16px;
  }
  main article .scroll {
    overflow-x: auto;
    white-space: nowrap;
  }
   main article .scroll::-webkit-scrollbar {
    height: 5px;
  }
  main article .scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  main article .scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  /* main */
  /* トップページ・会場へのアクセス・よくある質問 */
  /**********************/
  /**** トップページ ****/
  /**********************/
  body#top {
    /* 開催概要 */
    /* 出展対象 */
    /* 来場対象 */
    /* 小間規格と出展料 */
    /* 展示会について */
    /* 出展資料請求 */
  }
  body#top section.outline table td,
  body#top section.outline table th {
    padding: 10px;
  }
  body#top section.outline table td .category,
  body#top section.outline table th .category {
    width: 100%;
    margin-right: 0;
  }
  body#top section.outline table th {
    width: 27%;
  }
  body#top section.subject .item {
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 15px;
    margin: 5px 0 0 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
  }
  body#top section.subject .item h3 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    min-width: 100%;
    font-size: 16px;
  }
  body#top section.subject .item ul li {
    width: 100%;
  }
  body#top section.vis ul li {
    width: 49%;
    margin: 5px 0 0 0;
  }
  body#top section.fee h2 {
    margin: 5px 0 5px;
  }
  body#top section.fee strong {
    color: #be380d;
  }
  body#top section.fee table {
    width: 100%;
  }
  body#top section.fee table td,
  body#top section.fee table th {
    padding: 5px;
  }
  body#top section.about dl dt {
    font-size: 1em;
  }
  body#top section.about dl dd {
    padding: 10px;
  }
  body#top section.doc {
    margin-top: 20px;
  }
  body#top section.doc .wrapper h3 {
    margin-top: 10px;
  }
  /* 出展のご案内 */
  /* 来場のご案内 */
  /******************/
  /**** フッター ****/
  /******************/
  footer {
    margin: 20px 0 0 0;
  }
  footer .wrapper {
    max-width: 90%;
    min-width: 90%;
    padding: 20px 0;
  }
  footer .container {
    -js-display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    /*
	●水平方向の揃え方
	space-between：初期値。均等に間隔を空ける
	space-around：「space-between」と同じく均等に間隔を空ける。違うのは、左右の端のFlexアイテムにも半分ずつ間隔を空けてるところ。
	flex-start：横配置の場合、「左揃え」、縦配置の場合、「上揃え」になります。
	flex-end：横配置の場合「右揃え」、縦配置の場合「下揃え」になります。
	center：「中央揃え」です。
	*/
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    /*
	●子要素の配置方向
	row：初期値。子要素はHTMLの書き順で、左から右に配置されます。
	column：子要素はHTMLの書き順で、上から下に配置されます。
	row-reverse：「row」と同じで横に配置されるが、並ぶ順序は「右から左」になります。
	column-reverse：「column」と同じで縦に配置されるが、並ぶ順序は「下から上」になります。
	*/
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  footer .container dl {
    -js-display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    /*
	●垂直方向の揃え方（親要素に設定）
	flex-start：上揃えです。
	flex-end：下揃えです。
	center：上下中央寄せです。
	baseline：最初のflexアイテムのbaselineに揃います。
	stretch：flexコンテナいっぱいに広がります。
	*/
    -webkit-align-items: flex-start;
    -moz-flex-direction: flex-start;
    -ms-align-items: flex-start;
    -o-flex-wrap: flex-start;
    align-items: flex-start;
    /*
	●子要素の配置方向
	row：初期値。子要素はHTMLの書き順で、左から右に配置されます。
	column：子要素はHTMLの書き順で、上から下に配置されます。
	row-reverse：「row」と同じで横に配置されるが、並ぶ順序は「右から左」になります。
	column-reverse：「column」と同じで縦に配置されるが、並ぶ順序は「下から上」になります。
	*/
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  footer .container dl:nth-last-child(1) {
    margin-top: 15px;
  }
  footer .container dl dt {
    margin-right: 0;
    color: black;
  }
  footer .container dl dd {
    -js-display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    /*
	●垂直方向の揃え方（親要素に設定）
	flex-start：上揃えです。
	flex-end：下揃えです。
	center：上下中央寄せです。
	baseline：最初のflexアイテムのbaselineに揃います。
	stretch：flexコンテナいっぱいに広がります。
	*/
    -webkit-align-items: flex-start;
    -moz-flex-direction: flex-start;
    -ms-align-items: flex-start;
    -o-flex-wrap: flex-start;
    align-items: flex-start;
    /*
	●子要素の配置方向
	row：初期値。子要素はHTMLの書き順で、左から右に配置されます。
	column：子要素はHTMLの書き順で、上から下に配置されます。
	row-reverse：「row」と同じで横に配置されるが、並ぶ順序は「右から左」になります。
	column-reverse：「column」と同じで縦に配置されるが、並ぶ順序は「下から上」になります。
	*/
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  footer .container dl dd h1 {
    margin: 5px 0;
  }
  footer .container dl dd p {
    font-size: 14px;
  }
  footer .container dl dd p strong {
    font-weight: 500;
  }
  footer .container dl dd p i {
    margin-right: 0.3em;
  }
  footer .container dl dd p .tel {
    font-weight: bold;
  }
  footer address {
    padding: 20px;
  }
  /*footer*/
}
