@charset "UTF-8";

.tmp {
  /* 現在使用してるテンプレートファイル名を表示 */
  display: none;
  position: absolute;
  z-index: 100;
  color: #FF0000;
    
  left: 25%;
  transform: translateX(-50%);
}

/* 固定ヘッダーのページ内リンク補正 */
:root { --header-h: 72px; }                
@media (max-width: 1024px){ :root { --header-h: 64px; } }
@media (max-width:  768px){ :root { --header-h: 56px; } }

/* WP管理バー（ログイン時）考慮 */
body.admin-bar { --wpbar-h: 32px; }
@media (max-width: 782px){ body.admin-bar { --wpbar-h: 46px; } }

/* アンカー位置の上に余白を確保（スムーススクロールはお好みで） */
html { scroll-behavior: smooth; }
#tabs.tab-anchor {
  scroll-margin-top: calc(var(--header-h) + var(--wpbar-h, 0px) + 8px);
}

/* 基本リセット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /*16px × 62.5% = 10px*/
  font-feature-settings: "halt"; /*文字詰めを約物半角だけ適用 */
}
body {
  font-size: 1.6rem; /*10px × 1.6 = 16px*/
  /*font-family: YakuHanRPs, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;*/
  font-family: YakuHanRPs,　-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.6;
  background-color: #F7F7FF;
  color: #333;
}

/* リンク */
a {
  color: #1476BF;
  text-decoration: none;
  transition: color .2s ease, text-decoration-color .2s ease;
}
/* ホバー時（少し濃く＋下線） */
a:hover {
  /*color: #0F5E98;*/                 /* #1476BF を少しだけ濃く */
  text-decoration: underline;
  text-underline-offset: .2em;
}
/* キーボード操作でも同等の見た目に */
a:focus-visible {
  /*color: #0F5E98;*/
  text-decoration: underline;
  text-underline-offset: .2em;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    /*color: #0F5E98;*/
    text-decoration: underline;
    text-underline-offset: .2em;
  }
}
a img {
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  transition: 0.2s linear;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

ul {
  list-style: none;
}
.fa-fw {
  margin-right: 0.2em !important;
}
.fa-fww {
  margin-left: 0.2em !important;
}
h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
h2, h3, h4 {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.kome {
    color: #FF0000;
    margin: 0 0.2em;
    font-size: 90%;
}

/* h 見出し装飾
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h4.midashiA {
  padding: 0.4em 0.5em; /*文字の上下 左右の余白*/
  background: #f4f4f4; /*背景色*/
  border-left: solid 5px #7db4e6; /*左線*/
    margin: 0 0 1em;
    /*box-shadow: 0 1px 2.5px rgba(0, 0, 0, 0.1); /* ←お好みで影 */
    border-bottom: 1px solid #D4D4D4;
    border-right: 1px solid #D4D4D4;
}

/* p リード装飾
–––––––––––––––––––––––––––––––––––––––––––––––––– */
p.leedA {
  line-height: 1.6;
  margin: 0 0 1em;
}

/* ul リスト装飾
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul.listA {
    list-style: disc;
    list-style-position: inside;
    margin: 0.5em 0;
}

/* 左右50:50のフレックスボックス2カラム
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1em; /* カラム間の余白 */
  margin: 1em 0;
}
.flex-column {
  flex: 1 1 48%; /* 50%よりちょい小さくしてgapとバランス取る */
  box-sizing: border-box;
}
.flex-column img {
    width: 100%;
    height: auto;
    display: block;
}
/* スマホ対応：縦並びに */
@media (max-width: 768px) {
  .flex-column {
    flex: 1 1 100%;
  }
}

/* 左右3:1のフレックスボックス2カラム
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.flex-container2 {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  justify-content: space-between;
  margin: 1em 0;
}
.flex-container2 img {
    width: 100%;
    height: auto;
    display: block;
}
.flex-left {
  flex: 1 1 60%;
}
.flex-right {
  flex: 1 1 35%;
}
/* レスポンシブ：スマホなどは縦並びに */
@media (max-width: 768px) {
  .flex-container2 {
    flex-direction: column;
  }
  .flex-left, .flex-right {
    width: 100%;
    margin-bottom: 1em;
  }
}

/* ヘッダー
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.site-header {
  background-color: #FFFFFF;
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2%;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* ←お好みで影 */
  z-index: 1000;
}
.site-nav ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}
.site-nav li {
	color: #ccc;
}
.site-nav li a {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  color: #808080;
}
.site-nav li a {
  position: relative;
  color: #808080;
  text-decoration: none;
}
.site-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.site-nav li a:hover::after {
  transform: scaleX(1);
}
.site-header h1,
.site-header h2,
.site-header p {
  margin: 0;
}


/*** アクティブページ ***/
/* ホーム */
body.home .site-nav li a#home {
  border-bottom: 2px solid #1476BF;
  padding-bottom: 5px;
}
body.home .site-nav li a#home::after {
  display: none; /* activeリンクには下線アニメーションを無効化 */
}
/* 開催概要 */
body.shushi .site-nav li a#shushi {
  border-bottom: 2px solid #1476BF;
  padding-bottom: 5px;
}
body.shushi .site-nav li a#shushi::after {
  display: none; /* activeリンクには下線アニメーションを無効化 */
}
/* 開催プログラム */
body.program .site-nav li a#program {
  border-bottom: 2px solid #1476BF;
  padding-bottom: 5px;
}
body.program .site-nav li a#program::after {
  display: none; /* activeリンクには下線アニメーションを無効化 */
}
/* 出展者等の紹介 */
body.exhibitor .site-nav li a#exhibitor {
  border-bottom: 2px solid #1476BF;
  padding-bottom: 5px;
}
body.exhibitor .site-nav li a#exhibitor::after {
  display: none; /* activeリンクには下線アニメーションを無効化 */
}
/* リクルーティングプレゼンテーション（WEB配信版） */
body.presen .site-nav li a#presen {
  border-bottom: 2px solid #1476BF;
  padding-bottom: 5px;
}
body.presen .site-nav li a#presen::after {
  display: none; /* activeリンクには下線アニメーションを無効化 */
}
/* プレゼンテーション */
body.presentation-program .site-nav li a#presen {
  border-bottom: 2px solid #1476BF;
  padding-bottom: 5px;
}
body.presentation-program .site-nav li a#presen::after {
  display: none; /* activeリンクには下線アニメーションを無効化 */
}
/* サイトマップ */
body.sitemap .site-nav li a#sitemap {
  border-bottom: 2px solid #1476BF;
  padding-bottom: 5px;
}
body.sitemap .site-nav li a#sitemap::after {
  display: none; /* activeリンクには下線アニメーションを無効化 */
}
/* 会場配置 */
body.layout .site-nav li a#layout {
  border-bottom: 2px solid #1476BF;
  padding-bottom: 5px;
}
body.layout .site-nav li a#layout::after {
  display: none; /* activeリンクには下線アニメーションを無効化 */
}
/* お問合せ */
body.toiawase .site-nav li a#toiawase {
  border-bottom: 2px solid #1476BF;
  padding-bottom: 5px;
}
body.toiawase .site-nav li a#toiawase::after {
  display: none; /* activeリンクには下線アニメーションを無効化 */
}

/* サイトロゴ */
header {
  position: relative;
}
.logo-area {
  display: flex;
  align-items: baseline;
  position: absolute;
  top: 20px;
  left: 2%;
  z-index: 999;

  pointer-events: none; /* 装飾ロゴにクリック判定を持たせない */
}
.logo a { /* 但し、ロゴもクリックできるようにする */
  pointer-events: auto;
  display: inline-block;
}
.logo {
  width: 118px;
  height: 118px;
  background-color: #FFFFFF;
  border: 10px solid #F7F7FF;
  box-shadow: 3px 3px 6px -2px #666, 3px 3px 8px rgba(255, 255, 255, 0.8) inset;
}
.logo img {
  width: 100%;
  height: auto;
    display: block;
}
.logo-area h1 {
  font-size: 3rem;
  color: #1476BF;
  margin: 0 0 0 15px;
  transform: translateY(-15px); /* ←ここで上に持ち上げる */
  white-space: nowrap;
}
header .sp-head h1 {
    display: none;
}

/* スクロール時の縮小スタイル */
.site-header.scrolled .logo {
  width: 50px;
  height: 50px;
  border-width: 4px;
  transition: all 0.3s ease;
  box-shadow: 1.5px 1.5px 3px -1px #666, 1.5px 1.5px 4px rgba(255, 255, 255, 0.8) inset;
}
.site-header.scrolled .logo-area h1 {
  font-size: 1.6rem;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.site-header.scrolled .logo-area {
  top: 5px;
}

/* スマホ時 */
@media (max-width: 768px) {
  .logo {
    width: 80px;
    height: 80px;
    border: 6px solid #F7F7FF;
  }
  .logo-area h1 {
    display: none;
  }
  header .sp-head h1 {
    display: block;
    font-size: 1.4rem;
    color: #1476BF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .logo-area {
    pointer-events: auto;
  }
}

/* スマホ用ハンバーガーメニュー */
.menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 2%;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
display: block;
  height: 2px;
  width: 100%;
  background: #333;
  margin: 6px auto;
  transition: all 0.3s ease;
  transform-origin: center;
}
/* 3本ラインをメニューが開いてる時は×へ */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.menu-toggle span {
  transition: all 0.3s ease;
}
/* ナビ展開時のマスク */
.nav-mask {
  display: none;
  position: fixed;
  top: 65px; /* ヘッダー下に */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 透過グレー */
  backdrop-filter: blur(3px);     /* 背景ぼかし */
  z-index: 900;
}
.nav-mask.active {
  display: block;
}

/* スマホ時 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    top: 65px;
    right: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
  }
  .site-nav.active {
    max-height: 500px; /* メニューの高さに合わせて調整 */
    opacity: 1;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .site-nav li {
    border-top: 1px solid #ccc;
    text-align: center;
  }
  .site-nav li a {
    display: block;
    padding: 1em;
  }
  .site-nav.active {
    display: block;
  }
}

/* メイン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
main {
  padding-top: 65px; /* ヘッダー高さと同じ */
}
/* スマホ時 */
@media (max-width: 768px) {
  main {}
}

/* メインビジュアル
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.main-visual {
  height: 325px;
  position: relative;
  background-image: url("../../../img/top/head-BG.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
/* スライダー配置 */
.main-visual .main-swiper {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px; /* 3:2の比率 */
  height: 280px;
  z-index: 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 15px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
/* 内側の装飾 */
.main-visual .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: transform 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.main-visual .swiper-slide:hover img {
  transform: scale(1.05);
}
/* ラベル（上のバー） */
.main-visual .main-swiper::before {
  content: "HIGHLIGHTS";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #007ACC, #00B4D8);
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.35em 0.9em;
  border-radius: 0 0 0.6em 0;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .main-visual {
    background-image: url("../../../img/top/head-BG2.svg");
  }
}
/* スマホ（縦位置）時の調整 */
@media (max-width: 768px) and (orientation: portrait) {
  .main-visual .main-swiper {
    width: 220px;
    height: 146px;
    top: 35%; /* 高さだけ少し上へ */
    transform: translateY(-50%);
    right: 2%; /* ← right固定 */
    left: auto; /* 念のためリセット */
  }
}
/* 開催日時・会場 */
.main-visual .information {
  width: 1200px;
  max-width: 90%; /* 画面幅が狭い時も対応 */
  position: absolute;
  bottom: 2.5vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.information .date, .information .venue {
  font-size: 1.8rem;
  line-height: 1;
  font-family: sans-serif;
}
.information h4 {
  font-size: 2.8rem;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  line-height: 2.2;
}
/* 本年のフォーラムは、終了いたしました。 */
.main-visual .ended {
    position: absolute;
    z-index: 11;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    
    font-size: 2.8rem;
    line-height: 1.2;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: bold;
    color: #FF0000;
}


/* レスポンシブ */
@media (max-width: 768px) {
  .information .date, .information .venue {
    font-size: 1.6rem;
  }
  .information h4 {
    font-size: 2.2rem;
  }
  .main-visual .information {
    bottom: 4vw;
  }
  .main-visual .ended {
    font-size: 2.2rem;
  }
}

/* サブビジュアル（背景共通）
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sub-visual {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  background: url("../../../img/common/head-BG.png") no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
  flex-wrap: nowrap;
  gap: 2rem;
    height: 325px;
}
/* キャッチとキャラ */
body.shushi .sub-visual .catch {
  width: 480px;
  flex-shrink: 1;
}
body.program .sub-visual .catch {
  width: 642px;
  flex-shrink: 1;
}
body.exhibitor .sub-visual .catch {
  width: 562px;
  flex-shrink: 1;
}
body.presen .sub-visual .catch {
  width: 640px;
  flex-shrink: 1;
}
body.presentation-program .sub-visual .catch {
  width: 640px;
  flex-shrink: 1;
}
body.sitemap .sub-visual .catch {
  width: 542px;
  flex-shrink: 1;
}
body.toiawase .sub-visual .catch {
  width: 668px;
  flex-shrink: 1;
}
body.layout .sub-visual .catch {
  width: 450px;
  flex-shrink: 1;
}
.sub-visual .chara {
  width: 260px; /* 固定 */
  flex-shrink: 1;
}
.sub-visual img {
  width: 100%;
  height: auto;
  display: block;
}
/* レスポンシブ */
@media (max-width: 768px) {
    .sub-visual {
        height: auto;
    }
}

/* パンくずリスト
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.breadcrumb {
  width: 1200px;
  font-size: 1.2rem;
  margin: 1em auto;
  color: #666;
  font-family: sans-serif;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li + li::before {
  content: "\f105"; /* FAのchevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #bbb;
  margin: 0 0.5em;
}
.breadcrumb a {
  text-decoration: none;
  color: #007ACC;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: #004c80;
  text-decoration: underline;
}
.breadcrumb li .home-link {
  display: flex;
  align-items: center;
}

.breadcrumb li .home-link i {
  margin-right: 0.3em;
  font-size: 1em;
  color: #666;
}


/* レスポンシブ */
@media (max-width: 768px) {
  .breadcrumb {
    width: 100%;
  }
  .breadcrumb ol {
    flex-wrap: wrap;
    gap: 0.3em;
  }
}

/* メインコンテンツ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
section.main-contents {
  position: relative;
  background-image: url("../../../img/common/haikei-BG.svg");
  background-repeat: no-repeat;
  background-position: right 5% top 2.5%;
  background-size: 320px;
    
    /*margin-bottom: 1em;*/
}
/* レスポンシブ */
@media (max-width: 768px) {
  section.main-contents {
    padding: 10px;
    background-position: right 2% top 1.5%;
    background-size: 180px;
  }
}

/* NEWS 最新情報 */
.news-box {
  width: 1200px;
  max-width: 90%; /* 画面幅が狭い時も対応 */
  background: #FFFFFF;
  border: 1px solid #000000;
  padding: 1em 2em;
  border-radius: 15px;
  box-shadow: 3px 3px 6px -2px #666, 3px 3px 8px rgba(255, 255, 255, 0.8) inset;
  /* 高さを自然に扱えるように */
  position: relative;
  top: -30px;
  z-index: 10;
  margin: 0 auto;
  /* 横並び */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-box .tittle {
  padding-right: 1em;
}
.news-box .kiji {
  padding-left: 1em;
  padding-right: 1em;
  border-left: 3px solid #000;
    border-right: 1px dashed #ccc;
}
.news-box .kiji p.date {
  font-family: Verdana, Geneva, "sans-serif";
  color: #999;
  font-weight: 700;
}
p span.download {
    display: block;
    margin: 0.2em 0;
    font-family: sans-serif;
    font-weight: bold;
    color: #666;
}
.news-box .ichiran {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 700;
  padding-left: 1em;
  white-space: nowrap;
}
.news-box .tittle h1 {
  font-size: 3rem;
  font-weight: 400;
  color: #808080;
  line-height: 1.3;
}
.news-box .tittle h4 {
  font-size: 1.8rem;
  color: #FF6A6A;
  line-height: 1.3;
}
/* スマホ縦対応 */
@media (max-width: 768px) and (orientation: portrait) {
  .news-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em; /* 要素間に少し余白 */
    max-width: 96%;
    top: -15px;
    padding: 1em;
  }
  .news-box .tittle {
    padding-right: 0;
  }
  .news-box .kiji {
    padding-left: 0;
    padding-right: 0;
    border-left: none;
    border-top: 3px solid #000;
    padding-top: 1em;
  }
  .news-box .ichiran {
    padding-left: 0;
    align-self: flex-end; /* 右寄せにしたい場合 */
  }
}

/* コンテンツ */
.contentsu {
  width: 1200px;
  margin: 0 auto;
  padding: 1em 0;
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
.sideL {
  flex: 3;
}
.sideR {
  flex: 1;
}
.sidebar {
  position: sticky;
  top: 100px; /* スクロールで何px下に来たら固定されるか */
  align-self: start;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .contentsu {
    width: 100%;
    flex-direction: column;
    box-sizing: border-box;
  }
  .sideL, .sideR {
    flex: none;
    width: 100%;
  }
  .sidebar {
    position: static; /* ← スマホ時はstickyを解除 */
  }
}

/* 出展者等の紹介
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.contentsu_ex {
  width: 1200px;
  margin: 0 auto 1em;
  padding: 1em 0;
}

h2.main-tittle {
  width: 1200px;
  margin: 0 auto 0.5em;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
	font-size: 2.4rem;
	line-height: 2;
}
h2.main-tittle::before, h2.main-tittle::after {
  content: "";
  position: absolute;
  bottom: 0;
}
h2.main-tittle:before {
  border-bottom: 3px solid #1476BF;
  width: 100%;
}
h2.main-tittle:after {
  border-bottom: 3px solid #A4D3E5;
  width: 100%;
}
h2.main-tittle span {
    font-size: 1.4rem;
    margin-left: 0.5em;
    font-weight: normal;
}

/* レスポンシブ */
@media (max-width: 768px) {
  h2.main-tittle {
    width: 100%;
	  font-size: 1.6rem;
	line-height: 1.6;
  }
  .contentsu_ex {
    width: 100%;
  }
}

/* 出展者等の紹介トップのアイコン */
.flex_wrap01 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 0 auto 1em;
  max-width: 1200px;
}
.wrap01_item {
  width: calc(20% - 2rem); /* 5列：100% ÷ 5 - gap分 */
  background: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  /* CLICKボタンの位置を揃える */
  display: flex;
  flex-direction: column;
}
.wrap01_item:hover {
  transform: translateY(-4px);
}
.wrap01_item img {
  max-width: 120px;
  margin: 0 auto;
}
.wrap01_item h4 {
  font-size: 1.1em;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.wrap01_item p {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 1em;
    text-align: justify;
}
.wrap01_item .btn {
  margin-top: auto; /* CLICKボタンの位置を揃える */
}
.wrap01_item .btn img {
  max-width: 100px;
  transition: opacity 0.3s;
}
.wrap01_item .btn img:hover {
  opacity: 0.8;
}
.count {
  font-size: 0.8em;
  color: #777;
  margin-left: 0.4em;
    font-family: sans-serif;
}


/* スマホ対応：〜768px → 2列表示 */
@media (max-width: 768px) {
  .wrap01_item {
    width: calc(50% - 2rem);
  }
}
/* さらに狭い画面：〜480px → 1列表示 */
@media (max-width: 480px) {
  .wrap01_item {
    width: 100%;
  }
}

/* サイト内検索 */
.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 2em auto 1em;
  max-width: 800px;
  padding: 1em;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.search-box input[type="text"] {
  flex: 1;
  padding: 1em 1.2em;
  font-size: 1.2rem;
  border: 2px solid #DEDEDE;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: #333;
}
.search-box input[type="text"]::placeholder {
  color: #aaa;
  font-size: 1.2rem;
}
.search-box button {
  background: #1476BF;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1em 2em;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.search-box button:hover {
  background: #105c99;
  transform: translateY(-2px);
}
/* レスポンシブ */
@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
    gap: 1em;
  }
  .search-box input[type="text"], .search-box button {
    width: 100%;
  }
}

/* 検索結果 */
.contentsu_popular {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.contentsu_popular2 {
  max-width: 1200px;
  margin: 0 auto;
}
.contentsu_popular a.block {
  display: flex;
  flex-direction: column;
  padding: 1.5em;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 1em;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.contentsu_popular a.block:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}
.contentsu_popular .block h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.6em;
  color: #1476BF;
  line-height: 1.4;
}
.contentsu_popular .block p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  flex-grow: 1;
  margin-top: auto;
}
.tech-name {
  font-weight: bold;
  margin-bottom: 5px;
}
mark {
  background-color: yellow;
  font-weight: bold;
}
.result {
    font-size: 1.5rem;
    font-family: sans-serif;
    margin: 0 auto 1em;
    text-align: center;
}

/* 人気の検索キーワード */
.popular-words-wrap {
  margin-top: 2em;
  padding: 1em;
  border-top: 1px solid #eee;
  text-align: center; /* 全体を中央寄せ */
}
.support-text {
  margin-bottom: 0.8em;
  color: #777;
  font-size: 0.9em;
  font-style: italic; /* さりげなく */
    font-family: sans-serif;
}
ul.popular-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 中央寄せ */
  gap: 8px 12px; /* 横の余白少し広め */
  padding: 0;
  list-style: none;
    
    max-width: 1200px;
    margin: 1em auto;
}
ul.popular-searches li a {
  display: inline-block;
  padding: 0.3em 0.9em;
  border: 1px solid #ccc;
  border-radius: 4px; /* 角を丸すぎない、タグっぽく */
  font-size: 0.85em;
  font-weight: 500;
  color: #0073aa; /* WP青系 */
  background-color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}
ul.popular-searches li a:hover {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .contentsu_popular {
    grid-template-columns: 1fr;
  }
    ul.popular-searches {
        max-width: none;
        width: auto;
        margin: 0;
    }
}

/* ================================
   出展者一覧｜ジャンルタブ（WP固定ページ版）
   - PC：均等幅
   - SP：横スクロール
   - li内は<a>で全域クリック
   ================================ */
/* ベース */
.genre-tabs {
  overflow-x: hidden; /* SPは @media で上書き */
  /* background: #f1f2f2; gapの隙間を見やすくする裏地（任意） */
}

.genre-tabs ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  gap: 0.2em; /* すき間。キッチリ1pxにしたいなら 1px に */
}

/* タブ項目（PC：均等幅） */
.genre-tabs li {
  flex: 1;                           /* 均等幅 */
  display: flex;                     /* 内側aをフレックスで中央寄せ */
  align-items: stretch;
  background: #F1F2F2;               /* 非アクティブ背景 */
  font-weight: bold;
  font-size: 1.4rem;
  font-family: sans-serif;
  color: #333;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  /* paddingはa側に移管（クリック領域＝見た目全域に） */
  padding: 0;
}

/* li内リンク：全域クリック＋横並び */
.genre-tabs li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;                          /* アイコンとラベルの間隔 */
  width: 100%;
  height: 100%;
  padding: 10px;                     /* クリック余白はこちらに */
  color: inherit;
  text-decoration: none;
}

/* アクティブ / ホバー / フォーカス */
.genre-tabs li.active { background: #FFFFFF; }     /* 指定通り */
.genre-tabs li:hover { filter: brightness(0.98); } /* 軽い反応 */
.genre-tabs li > a:focus-visible {
  outline: 2px solid #005bac;
  outline-offset: 2px;
}

/* アイコン・テキスト */
.genre-tabs li img {
  width: 40px;
  height: 40px;
  display: block;                    /* 余白ズレ防止 */
}
.genre-tabs li span {
  display: inline-block;
  line-height: 1.2;
}

/* パネル＆ヒント */
.genre-panel,
.scroll-hint {
  display: none;                     /* 初期は非表示 */
}
.genre-panel.active {
  display: block;                    /* アクティブのみ表示 */
}

/* ================================
   スマホ（横スクロール）
   ================================ */
@media (max-width: 768px) {
  .genre-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;              /* フェードマスク用 */
  }
  .genre-tabs::after {               /* 右端フェードでスクロール気付きを促す */
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to left, #f1f2f2, transparent);
    pointer-events: none;
  }

  .genre-tabs ul {
    flex-wrap: nowrap;               /* 折り返し禁止 */
    width: max-content;              /* 中身幅に追従 */
  }

  .genre-tabs li {
    flex: 0 0 auto;                  /* 均等幅を解除して可変 */
  }
  .genre-tabs li > a {
    min-width: 120px;                /* タブ最小幅（調整可） */
    padding: 10px 12px;              /* 指で押しやすい余白 */
  }

  .genre-tabs li img {
    width: 30px;
    height: 30px;
  }
  .genre-tabs li span {
    font-size: 1.3rem;
  }

  .scroll-hint {
    display: block;
    text-align: left;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 4px;
    margin-left: 4px;
  }

  /* スクロールバー見せたい派は下を解禁
  .genre-tabs { scrollbar-width: thin; scrollbar-color: #aaa transparent; }
  .genre-tabs::-webkit-scrollbar { height: 6px; }
  .genre-tabs::-webkit-scrollbar-thumb { background: #aaa; border-radius: 3px; }
  */
}


/* ジャンル別出展者表示エリア */
.genre-contents {
  background-color: #FFFFFF;
  padding: 1em;
  margin-bottom: 1em;
}
.genre-panel {
  font-size: 1.6rem;
  line-height: 1.8;
}
.exhibitor-item {
  padding-bottom: 1em;
  border-bottom: 1px #ccc dashed;
  margin-bottom: 1em;
}
.exhibitor-item h4 {
  font-size: 1.8rem;
  line-height: 1.8;
}
.exhibitor-item h4:before {
  font-family: "Font Awesome 6 Free";
  content: "\f1ad";
  font-weight: 900;
  color: #cccccc;
  margin-right: 0.5em;
}
.exhibitor-item p.tech-name {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
.exhibitor-item p.tech-name:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0ad";
  font-weight: 900;
  margin-right: 0.25em;
}

/* 出展者ページ */
/* インフラDX（.infura） */
/* 安全防災（.anzen_bosai） */
/* 維持管理（.anzen_bosai） */
/* 環境（.kankyo） */
/* 品質（.hinshitsu） */

/* 技術名称 */
.tech-name-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 10px;
  font-size: 1.6rem;
  table-layout: fixed;
  border: 1px solid #aaa;
}
.tech-name-table th, .tech-name-table td {
  padding: 10px 15px;
  vertical-align: middle;
}
.tech-name-table td {
    font-weight: bold;
}
.tech-name-table th {
  width: 200px;
  background-color: #008fc3;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-right: 1px solid #ccc;
  border-left: 5px solid #008fc3; /* タブ感の補強 */
}
.tech-name-table td {
  background-color: #fdfdfd;
  color: #333;
}
/* 担当者・担当部署・電話番号・メールアドレス */
.exhibitor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  table-layout: fixed;
}
.exhibitor-table th, .exhibitor-table td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  vertical-align: top;
  background: #fff;
}
.exhibitor-table th {
  width: 200px;
  background-color: #e0f0ff;
  font-weight: bold;
  text-align: left;
  color: #333;
}
.exhibitor-table td {
  background-color: #f9f9f9;
  color: #333;
}

/* 出展者データ */
.exhibitor_data {
  margin: 1em auto;
  background-color: #FFF;
  padding: 1em;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.exhibitor_data .gaiyo, .exhibitor_data .catalog, .exhibitor_data .pr {
  display: flex;
  gap: 1em;
  margin: 0 0 1em;
}
.exhibitor_data .gaiyo .icon, .exhibitor_data .catalog .icon, .exhibitor_data .pr .icon {
  flex: 1;
  text-align: center;
}
.exhibitor_data .gaiyo .leed, .exhibitor_data .catalog .leed, .exhibitor_data .pr .leed {
  flex: 5;
}
.exhibitor_data .gaiyo, .exhibitor_data .catalog {
  padding-bottom: 1em;
  border-bottom: 1px dashed #ccc;
}
.exhibitor_data .gaiyo .icon img, .exhibitor_data .catalog .icon img, .exhibitor_data .pr .icon img {
  display: block;
  width: 100%;
  height: auto;
}
.exhibitor_data p {
    margin-bottom: 0.5em;
}
/* 行頭を1文字ぶん下げる（字下げ） */
.indent {
  text-indent: 1em;
	margin: 0 auto!important;
}
.exhibitor_data ul.wp-block-list {
    margin: 0.5em 0;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

/* 【出展技術概要】 */
.pdf-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0078c0;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
  font-size: 1.4rem;
  margin: 1em auto;
}
.pdf-btn:hover {
  background-color: #005c9e;
  transform: translateY(-2px);
}
.exhibitor_data ul {
  list-style: disc;
  padding: 0.5em 1.5em;
}
.exhibitor_data ol {
  list-style: decimal;
  padding: 0.5em 1.5em;
}
.exhibitor_data ul p, .exhibitor_data ol p {
	margin-left: -1.5em;
}
.exhibitor_data ul li a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f35d"; /* fa-arrow-up-right-from-square */
  font-size: 0.85em;
  margin-left: 6px;
  color: #999;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease;
}
.exhibitor_data ul li a.gaibu::after {
  content: "【外部リンク】"!important; 
    font-weight: normal!important;
  font-size: 0.85em;
  margin-left: 6px;
  color: #999;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease;
}
.exhibitor_data ul li a:hover::after {
  transform: translateY(-1px);
  color: #0078c0;
}

@media screen and (max-width: 768px) {
  .tech-name-table, .exhibitor-table {
    font-size: 1.4rem;
  }
  .tech-name-table th {
    width: auto;
    white-space: nowrap;
  }
  .exhibitor-table, .exhibitor-table tr, .exhibitor-table th, .exhibitor-table td {
    width: 100%;
  }
  .exhibitor-table {
    border-bottom: 1px solid #ccc;
  }
  .exhibitor-table th, .exhibitor-table td {
    display: block;
    box-sizing: border-box;
  }
  .exhibitor-table tr {
    border: none;
  }
  .exhibitor-table th {
    border-bottom: none;
  }
  .exhibitor-table td:not(:last-child), .exhibitor-table td:last-child {
    border-bottom: none;
  }
  .exhibitor_data .gaiyo .leed, .exhibitor_data .catalog .leed, .exhibitor_data .pr .leed {
    flex: 3;
  }
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  margin: 2em 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 0.5em 0.9em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  font-size: 1.4rem;
  min-width: 2.2em;
  text-align: center;
}
.pagination a:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}
.pagination .current {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
  font-weight: bold;
  pointer-events: none;
}
/* paginate_links() が <ul><li> を吐くので横並びに整える */
.pagination ul.page-numbers {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination ul.page-numbers li {
  margin: 0; /* デフォルト余白をリセット */
}


@media screen and (max-width: 768px) {
  .pagination a, .pagination span {
    padding: 0.8em 1.2em;
    font-size: 1.1rem;
  }
}

/* NEWS一覧 */
.news-list {
  padding: 1rem;
  margin: 0 0 1em;
}
.news-list ul li {
  margin-bottom: 1.5em;
}
.news-list ul li ul {
    list-style: disc;
    list-style-position: inside;
    margin: 0.5em;
}
.news-list ul li ul li {
    line-height: 1;
}

.news-list h2 {
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  margin-bottom: 0.5em;
}
.news-list h2::before, .news-list h2::after {
  content: "";
  position: absolute;
  bottom: 0;
}
.news-list h2:before {
  border-bottom: 3px solid #1476BF;
  width: 100%;
}
.news-list h2:after {
  border-bottom: 3px solid #A4D3E5;
  width: 100%;
}
#news-items .date {
  font-family: Verdana, Geneva, "sans-serif";
  color: #999;
  font-weight: 700;
  display: block;
  border-bottom: 1px dotted #ccc;
  padding: 0.25em 0;
  margin-bottom: 0.5em;
}
#news-items .date::before, .news-box .kiji p.date::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    content: "\f017";
    margin-right: 0.2em;
}

#news-items span.tittle, .kiji h4.tittle {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .3em; /* ← 下線との間隔 */
  text-decoration-thickness: 1px; /* 任意：下線の太さ */
  text-decoration-skip-ink: auto; /* 任意：ディセンダを避ける */
  margin-bottom: 0.3em;
}

/* 視覚的に非表示（スクリーンリーダー向け） */
.sr-only{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* フラットな“もっと見る”ボタン（右寄せ） */
#news-load-more {
  --accent: #1476BF; /* 必要に応じてサイト色へ */
  appearance: none;
  background: transparent;
  color: var(--accent);
  border: 1px solid #dcdfe4;
  border-radius: 4px;
  padding: .5rem .9rem;
  display: block;
  width: fit-content;
  margin: .75rem 0 0 auto; /* 右寄せ */
  font: inherit;
  line-height: 1.2;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
#news-load-more:hover {
  background: rgba(20, 118, 191, .06);
  border-color: #cbd5e1;
}
#news-load-more:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
#news-load-more:disabled {
  opacity: .55;
  cursor: not-allowed;
}
/* 古い環境フォールバック（fit-content 非対応） */
@supports not (width: fit-content) {
  #news-load-more {
    float: right;
  }
}

/* アーカイブ */
.archive {
  padding: 1rem;
}
.archive h2 {
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  margin-bottom: 0.5em;
}
.archive h2::before, .archive h2::after {
  content: "";
  position: absolute;
  bottom: 0;
}
.archive h2:before {
  border-bottom: 3px solid #1476BF;
  width: 100%;
}
.archive h2:after {
  border-bottom: 3px solid #A4D3E5;
  width: 100%;
}

.archive ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive ul li {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0.8em 1em;
  border: 1px solid #ccc;
  border-left: 5px solid #325A8C;
  border-radius: 5px;
  background-color: #f9f9f9;
  margin-bottom: 0.7em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  transition: background-color 0.3s ease;
}
.archive ul li span {
  font-weight: bold;
  color: #325A8C;
  min-width: 50px;
  font-size: 1.1rem;
  white-space: nowrap;
}
.archive ul li:hover {
  background-color: #eef6ff;
}
.archive ul li::before {
  content: "\f1da"; /* fa-archive */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #325A8C;
  margin-right: 0.1em;
}

/* アイコンメニュー
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.icon-menu {
  width: 100%;
  padding: 1em 0;
  background-image: url("../../../img/common/bg_iconmenu.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.icon-menu ul {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5em;
  padding: 2em 1em;
}
.icon-menu li {
  position: relative;
  background-color: #A4D3E5;
  text-align: center;
  border-radius: 10px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  /*overflow: hidden;*/
}
.icon-menu li a {
  display: block;
  text-align: center;
  color: inherit;
  text-decoration: none;
}
/* バッジ */
.icon-menu .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.2em 0.6em;
  border-radius: 20px;
  color: #fff;
  background-color: #ff9900; /* OPENの色（初期） */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
/* 状態別に色を変更 */
.icon-menu li.closed .badge {
  background-color: #666;
}
.icon-menu li.open .badge {
  background-color: #FFB842;
}
.icon-menu li:hover .badge {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}
.icon-menu li img {
  width: 100%;
  height: auto;
  display: block;
}
/* レスポンシブ */
@media (max-width: 768px) {
  .icon-menu ul {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    padding: 1em;
  }
  .icon-menu .badge {
    top: 4px;
    right: 4px;
  }
}

/* 交通アクセス
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
    margin: 1em auto;
}
/* Googleマップ */
.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 開催趣旨
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.img30 {
    width: 30%;
    margin: 0 auto;
    text-align: center;
}
.img50 {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
.img80 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

/* 開催プログラム
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.t_pro1 {
  width: 100%;
  margin: 0 auto 1em;
}
.t_pro1 img {
  width: 100%;
  height: auto;
  display: block;
}
.t_pro1 td {
  background-color: #fff;
}
.t_pro1 .time {
  background-color: #097eb3;
  color: #fff;
  width: 13%;
  padding: 0.5em;
}
.t_pro1 .place {
  width: 14%;
  padding: 0.5em;
  background-color: #f0f0ff;
}
.t_pro1 .koumoku {
  width: 73%;
}
.t_pro1 .jouhou2 {
  width: 27%;
  padding: 1.0em 0.5em 2.0em 0.5em;
}
.t_pro1 .jouhou4 {
  width: 21%;
  padding: 1.0em 0.5em 2.0em 0.5em;
}
.t_pro1 .jouhou2 .gijutu li, .t_pro1 .jouhou4 .gijutu li {
  margin-left: 0;
  list-style: none;
}
.t_pro1 .jouhou2 .gijutu li a, .t_pro1 .jouhou4 .gijutu li a {
  padding: 3px 5px;
  color: #333;
}
.t_pro1 td p {
  font-size: 1.0em;
}
.t_pro1 .jouhou3 {
  width: 75%;
  padding: 1.0em 0.5em 2.0em 0.5em;
}
.t_pro1 .jouhou2 .gijutu li span, .t_pro1 .jouhou4 .gijutu li span {
  padding: 4px 5px 2px;
  color: #333;
}
.t_pro1 .jouhou3 .gijutu2 li {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}
.t_pro1 .jouhou3 .gijutu2 li span {
  padding: 4px 9px 2px;
  color: #333;
  float: left;
  margin-right: 5px;
}
.t_pro1 h1 {
	font-size: 1.8rem!important;
}
.t_pro1 h4 {
	font-size: 1.6rem!important;
}

/* テーブル全体の基本スタイル */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* テーブル本体 */
.table-scroll table {
  width: 100%;
  border-collapse: collapse;
  min-width: 768px; /* ← 必要に応じて調整 */
}
/* テーブルセル */
.table-scroll td {
  padding: 0.75em;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  vertical-align: top;
}
/* 時間・場所・項目の見た目 */
.table-scroll .time {
  background-color: #097eb3;
  color: #fff;
  white-space: nowrap;
  width: 13%;
}
.table-scroll .place {
  background-color: #f0f0ff;
  white-space: nowrap;
  width: 14%;
}
.table-scroll .koumoku {
  width: auto;
}
.table-scroll h4 {
  margin: 0.3em 0;
  font-size: 1.1em;
}

/* 基調講演YouTube LIVE配信バナー
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.menu_banner_red {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #fff1f2, #ffe4e6); /* 明るめレッドグラデ */
  border: 2px solid #ef4444; /* 赤みの主線 */
  border-radius: 14px;
  padding: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
  margin-bottom: 12px;
}
.menu_banner_red:hover {
  background: linear-gradient(90deg, #fee2e2, #fecaca); /* ホバー時少し濃く */
}
.menu_banner_red .banner-icon-big {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.menu_banner_red .banner-text {
  font-size: clamp(16px, 2.8vw, 18.5px);
  font-weight: 800;
  color: #b91c1c; /* 濃いレッド系で見出し強調 */
  line-height: 1.4;
}
.menu_banner_red .banner-text p {
	font-size: 85%;
	font-weight: 500;
}

/* プレゼンテーション
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.lefttxt2 img {
	padding: 7px;
	border: 1px solid #ccc;
	background: #fff;
	moz-box-shadow: 1px 1px 5px rgba(20,20,20,0.2);/* ドロップシャドウ 【横位置 縦位置 ぼかし幅 色】の順に記述 */
	-webkit-box-shadow: 1px 1px 5px rgba(20,20,20,0.2);/* ドロップシャドウ 【横位置 縦位置 ぼかし幅 色】の順に記述 */
	box-shadow: 1px 1px 5px rgba(20,20,20,0.2);/* ドロップシャドウ 【横位置 縦位置 ぼかし幅 色】の順に記述 */
}

/* リクルーティングプレゼンテーションテーブル */
.table_02 {
  
  border-collapse: separate;
  border-spacing: 0px;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: 1.4rem;
  font-weight: bold;
}
.table_02 th {
  width: 25%;
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  color: #444;
  background-color: #ccc;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 1.6rem;
}
.table_02 td {
  padding: 40px;
  background-color: #fafafa;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
body.presen .table_02 td {
  padding: 20px;
  vertical-align: bottom;
}
body.presen .table_02 td h5 {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 1em 0;
  padding: 0 0 0.5em 0;
  color: #6594e0;
  border-bottom: dashed 2px #6594e0;
  text-align: left;
  
}
body.presen .table_02 td p {
  text-align: left;
  font-size: 16px;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  
}
body.presen .table_02 td p.leed {
  font-family: "メイリオ", Meiryo, "sans-serif";
  font-weight: normal;
  color: #000;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 0;
  margin: 0;
}
body.presen .table_02 td img {
  width: 100%;
  height: auto;
  margin: 1em auto 0;
  padding: 5px;
  border: 1px solid #ccc;
  background: #fff;
}

/* 会場配置
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body.layout .kaijyo {
    margin-bottom: 1em;
}
body.layout .kaijyo p {
    text-align: center;
    font-family: sans-serif;
    margin-bottom: 2em;
}
body.layout .kaijyo img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1em;
}

/* プレゼンテーションプログラム
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body.presentation-program .layout {
	margin: 1em auto;
}
body.presentation-program .layout img {
	width: 100%;
	height: auto;
}

/* サイトマップ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sitemap-block {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1em 1.2em;
  margin-bottom: 1.5em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.sitemap-title {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.6em;
  border-left: 4px solid #2196f3;
  padding-left: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.sitemap-block ul {
  list-style: disc;
    list-style-position: inside;
  padding-left: 0;
  margin: 0;
}
.sitemap-block li {
  margin: 0.3em 0;
}
.sitemap-block a {
  text-decoration: none;
  color: #0077cc;
  font-weight: 500;
}
.sitemap-block a:hover {
  text-decoration: underline;
}

/* お問合せ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-top: 2em;
}

.contact-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.block {
  font-size: 1.4em;
  border-left: 5px solid #2196f3;
  padding-left: 0.6em;
  margin-bottom: 0.5em;
}

.block2 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #333;
}

.contact-card address {
  font-style: normal;
  color: #555;
  line-height: 1.7;
}

.contact-card i {
  margin-right: 0.4em;
  color: #2196f3;
  width: 1.2em;
  text-align: center;
}

/* お知らせ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.vtable-wrap {
  width: 100%;
  margin: 0 auto 1.5rem;
}

/* 基本設定 */
.vtable {
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 1.6rem;
  width: 100%;
  min-width: 620px;
  table-layout: fixed; /* 均等幅のため固定レイアウト */
}
.vtable caption {
  caption-side: top;
  text-align: right;
  font-size: 12px;
  color: #333;
  margin: .25rem 0 .4rem;
}
.vtable th, .vtable td {
  border: 1px solid #888;
  padding: .35rem .5rem;
  line-height: 1.3;
  text-align: center;
  word-break: keep-all;
}
.vtable .num { text-align: right; }

/* 列幅指定 */
.col-date { width: 8%; }     /* 日付 */
.col-even { width: calc((100% - 8% - 12%) / 6); } /* 均等6列 */
.col-total { width: 12%; }   /* 合計 */

/* 見出し色 */
.vtable thead th { background: #f3efe9; font-weight: 700; }
.vtable .rowhd { background: #f6e7df; font-weight: 700; white-space: nowrap; }
.vtable tfoot th { background: #f6edd6; }

/* 小計行の淡いベージュ */
.vtable td.sub { background: #f6edd6; }

/* 合計列の強調 */
.vtable th.total, .vtable td.total { border-right-width: 2px; }
.vtable .grand {
  background: #fff3a6;
  font-weight: 800;
  border-right-width: 2px;
}

/* 左右の太枠 */
.vtable thead th:first-child,
.vtable tbody th:first-child,
.vtable tfoot th:first-child { border-left-width: 2px; }
.vtable thead th.total, .vtable td.total, .vtable .grand { border-right-width: 2px; }

/* 余白調整（PC） */
@media (min-width: 768px) {
  .vtable th, .vtable td { padding: .32rem .45rem; }
}

/* スマホ（620px以下）は横スクロール */
@media (max-width: 620px) {
  .vtable-wrap { overflow-x: auto; }
  .vtable { width: 620px; }
}

/* 濃い境界線 */
.vtable { border: 0; }

/* サイドバー
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button-links {
  display: flex;
  flex-direction: column; /* ← 常に縦並び */
  gap: 1rem;
  padding: 0 1rem 1.5rem;
  margin-bottom: 1em;
}
.download-btn {
  display: flex;
  align-items: center;
  gap: 0.8em;
  background: #f2f2f2;
  border-left: 6px solid #325A8C;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
}
.download-btn i {
  color: #325A8C;
  font-size: 1.8rem;
}
.download-btn:hover {
  background: #e6efff;
}

:root {
  --accent: #0ea5e9;
  --text: #1f2937;
  --muted: #6b7280;
  --card: #fff;
  --line: #e5e7eb;
  --chip: #f1f5f9;
  --radius: 14px;
}
.menu_free {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 4px 14px rgba(2, 8, 23, .05);
  color: var(--text);
}
.menu_free + .menu_free {
  margin-top: 14px;
}
/* 見出し（h2） */
.menu_free > h2 {
  margin: 0 0 10px;
  font-size: clamp(16px, 2.6vw, 18px);
  font-weight: 800;
  line-height: 1.2;
  padding-left: 12px;
  position: relative;
}
.menu_free > h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  width: 5px;
  height: 1.2em;
  border-radius: 3px;
  background: var(--accent);
}
/* 施設名(h1)はカード内用に小さめ */
.menu_free h1 {
  margin: .2em 0 .5em;
  font-size: clamp(15px, 2.4vw, 17px);
  line-height: 1.3;
  font-weight: 800;
}
/* 開催日時リスト（ホバーなし） */
.menu_free .selector {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu_free .selector li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  line-height: 1.7;
  background:
    linear-gradient(#fff, #fff) padding-box, linear-gradient(120deg, rgba(14, 165, 233, .15), rgba(14, 165, 233, 0)) border-box;
  font-size: clamp(13px, 2.4vw, 14.5px);
  transition: none; /* ← ホバーアクション無効 */
}
.menu_free .selector li:hover {
  box-shadow: none;
  transform: none;
} /* 念のため無効化 */
.menu_free .selector li .days {
  display: inline-block;
  font-weight: 800;
  background: var(--chip);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .05em .6em;
  /*margin-bottom: 4px;*/
  letter-spacing: .02em;
  font-size: 1.3rem;
}
.menu_free .selector li i {
  color: var(--accent);
  margin-right: .35em;
}
/* 画像は常に中央 */
.menu_free img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto; /* ← 中央寄せ */
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(2, 8, 23, .08);
}
/* 古い align 属性の救済（残っててもOK） */
.menu_free [align="center"] {
  text-align: center;
}
/* テキスト */
.menu_free p {
  margin: .5em 0 0;
  line-height: 1.8;
  font-size: clamp(1.4rem, 2.3vw, 1.6rem);
}
.menu_free p strong {
  font-weight: 800;
}
/* 入場無料バッジ */
.menu_free p.admission-free {
  display: inline-block;
  margin-top: 8px;
  padding: .25em .65em;
  border: 1px solid var(--line);
  background: var(--chip);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .02em;
}
.menu_notice {
  background: #f0f9ff;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12);
  color: var(--text);
  margin-bottom: 1.5em;
}
/* 見出し */
.menu_notice > h2 {
  margin: 0 0 10px;
  font-size: clamp(16px, 2.6vw, 18px);
  font-weight: 800;
  line-height: 1.2;
  color: #0c4a6e;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
/* テキスト */
.menu_notice p {
  margin: 0.5em 0 0;
  line-height: 1.8;
  font-size: clamp(1.4rem, 2.3vw, 1.6rem);
}
/* アイコン色（fa-bullhornなど） */
.menu_notice i.fa-bullhorn {
  color: #0284c7;
  font-size: 1.6rem;
}
.menu_notice a.text-link {
  color: #0284c7;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.menu_notice a.text-link:hover {
  color: #0369a1;
  text-decoration: none;
}
/* 募集終了 */
.notice-end {
  margin: 1em 1rem 1em;
  padding: 0.6em 0.8em;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  font-size: 0.95em;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

/* リクルーティングプレゼンテーション バナー */
.menu_banner {
  display: flex;
  align-items: center;
  gap: 1em;
  background: linear-gradient(90deg, #ecfdf5, #d1fae5); /* パステルミントグリーン背景 */
  border: 2px solid #34d399; /* 明るい緑の主線 */
  border-radius: 14px;
  padding: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.1);
  margin-bottom: 12px;
}
.menu_banner:hover {
  background: linear-gradient(90deg, #d1fae5, #bbf7d0); /* ホバーで少し濃く */
}
.banner-icon-big {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.banner-text {
  font-size: clamp(16px, 2.8vw, 18.5px);
  font-weight: 800;
  color: #059669; /* 濃い緑：強調見出し */
  line-height: 1.4;
}
/* スマホ用改行制御（必要に応じて） */
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}
/* リクルーティングプレゼンテーション：説明カード */
.menu_recruit_note {
  background: #f0fdf4; /* 薄いミント背景 */
  border-left: 4px solid #34d399;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: clamp(1.4rem, 2.3vw, 1.6rem);
  color: #065f46; /* 落ち着いた濃緑テキスト */
  line-height: 1.7;
  margin-bottom: 20px;
}

/* PC幅でもサイドカラム想定の軽い調整 */
@media (min-width: 960px) {
  .menu_free {
    padding: 16px 18px;
  }
}

/* フッター
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.site-footer {
  text-align: center;
  background: #3399cc;
  color: #fff;
  padding: 1rem;
  font-size: 1.2rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .site-nav ul {
    flex-direction: column;
  }
  .icon-menu ul {
    flex-direction: column;
  }
}

/* ページトップへ戻る
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #1476BF;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pagetop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pagetop:hover {
  background: #005fa3;
}
