@charset "utf-8";


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table.table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

ol,
ul {
  list-style: none;
}

table.table {
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

figure {
  margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

hr {
  border: none;
  border-top: 1px solid #dacd9b; /* 好きな色を指定 */
  margin: 1em 0;              /* 上下にだけ余白を作る */
}

a {
  text-decoration: none;
  color: inherit;
}

.humburger {
  display: none;
}

.pcmenuarea {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: 44px;
  /* メニューの高さ（height:26px + paddingなど）に合わせて明示 */
  position: fixed;
  left: 0px;
  top: 50px;
  background-color: #1f1f1f;
  z-index: 9000;
}

.pcmenu {
  font-size: 12px;
  position: relative;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  margin-right: 20px;
  padding-top: 2px;
  color: #fff;
  ;
}


/* コンテンツがナビバーに隠れないようにする設定 */
body {
  padding-top: 50px;
  /* ナビバーの高さ + 余白 */
}

/* ナビゲーションの基本構造（継続） */
.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 40px;
  background-color: #0e3b67;
  box-sizing: border-box;
  z-index: 500;
}

/* リンクエリアをFlexboxで並べる */
.nav-links {
  display: flex;
  gap: 5px;
  /* ボタン同士の隙間 */
  list-style: none;
}

/* 各メニュー項目（ボタン）の共通デザイン */
.nav-links li {
  padding: 2px 4px;
  font-size: 12px;
  font-weight: bold;
  color:#0e3b67;
  border-radius: 2px;
  /* 角丸 */
  transition: all 0.3s ease;
  /* ホバー時の動きを滑らかに */
  border: 2px solid #ccc;
  /* 基本の枠線 */
  background-color: #f9f9f9;
}

/* ホバー時の演出（マウスが乗ったとき） */
.nav-links li:hover {
  transform: scale(1.2);
}

/* 特定のボタンだけ色を変えて強調したい場合（例：来場登録） */
.nav-links li:first-child {
  background-image: linear-gradient(90deg, rgba(65, 164, 253, 1), rgba(14, 244, 255, 1));
  color: #fff;
  border-color: #007bff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.nav-links li:nth-child(2) {
  background-image: linear-gradient(90deg, rgb(255, 42, 34), rgb(255, 175, 14));
  color: #fff;
  border: 2px solid #ff5900;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.nav-links li:nth-child(5) {
  background-image: linear-gradient(90deg, rgba(255, 0, 165, 1), rgba(191, 233, 255, 1));
  color: #fff;
  border-color: #ff00ee;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}


/* ロゴ画像のサイズ調整 */
.logo img {
  height: 40px;
  /* ナビバーに合わせた高さ */
  width: auto;
  position:fixed;
  top:5px;
  left:5px;
}

.anchor {
  position: relative;
  top: -100px;
  /* 固定ヘッダーの高さと同じ */
  visibility: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  /* 縦方向に並べる */
  align-items: center;
  /* 左寄せ（必要に応じて変更） */
  padding: 10px;
  background-color: #0e3b67;
  min-height: 100vh;
}

.main {
  flex: 1;
  width: 100%;
  padding: 20px;
}

.rowpanel {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  position: relative;
  /* 中央配置する要素の基準にする */
  align-items: baseline;
  width: 90%;
  max-width: 1500px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px;
  margin: 0 auto;
  margin-top: 10px;
  border: solid 1px #333;
  border-radius: 10px;
  box-shadow: 10px 10px 0px -5px #d6d6d6;
}

.circlegraph {
    display: flex ;
  width: 100%;
  height: auto;
  margin: 5px auto;
}

.circlegraph2 {
  display: flex ;
  justify-content: space-around;
  width: 100%;
  height: auto;
  margin: 5px auto;
}

.last-exhibitor {
  font-size: 14px;
  width: 100%;
  margin: 10px auto;
  margin-left: 30px;
  /* 段組みの設定 */
  column-count: 1;
  /* 基本の分割数 */
  column-gap: 20px;
  /* アイテム間の隙間 */
}

.book{
  width:80%;
  margin-left:30px;
  border:solid 1px #000;
}

.card {
  width: 90%;
  height: auto;
  padding: 5px;
  margin: 5px auto;
  border: solid 3px #aeaeae;
  border-radius: 10px;
}

.midokoro {
  width: 50%;
  height:fit-content;
  padding: 10px;
  margin: 2px auto;
  border: solid 3px #ff0000;
}

.induction {
  display:inline;
  background-color: #fff;
  color: rgb(48, 48, 48);
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  border: solid 3px #333;
  margin: 5px auto;
  width: 100%;
}

.pannel {
  display:inline;
  background-color: #fff;
  color: rgb(48, 48, 48);
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  border: solid 3px #333;
  margin: 5px auto;
  width: 80%;
}

.item {
  display: block;
  position: relative;
  background-color: #fff;
  color: rgb(48, 48, 48);
  padding: 15px;
  border-radius: 5px;
  margin: 5px;
  width: 100%;
}

.wide {
  width: 100%;
}

.map {
  width: 100%;
  margin: 5px auto;
}

.photo {
  width: 100%;
}

.scenebox {
  width:100%;
  display: flex;
  justify-content:space-around;
  flex-wrap: wrap;
  align-items: center;
}

.scene{
  width:45%;
  margin-top:10px;
}

.banner {
  display: flex;
  width: 50%;
  height: auto;
  float: left;
  margin: 10px;
}

.companybox {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #fff;
  color: rgb(48, 48, 48);
  padding: 15px;
  border-radius: 5px;
  margin: 5px;
  width: 100%;
}

.company {
  display: flex;
  width: 200px;
  margin: 20px auto;
}

body {
  margin: 0;
  font-family: sans-serif;
}


/* フッター */

.footer {
  background-color: #000;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  font-size: 14px;
}

.footer-content p {
  margin: 5px 0;
}

/* 上に戻る */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  font-size: 14px;
  background-color: #dacd9b;
  color: #0e3b67;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.topvisual {
  width: 100%;
}

.list-icon {
  display: none;
}

@media screen and (max-width: 700px) {


  .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .navbar{
    height:50px;
  }

  .nav-links li {
    display: none;
  }

  .humburger {
    display: block;
  }

  .pcmenuarea {
    display: none;
  }

.midokoro{
  width:100%;
}

.footer{
  font-size:12px;
}
  /* 2. コンテンツ部分に余白を埋めさせる */
.content-wrapper {
  flex: 1; 
}


}