body .wp-block-template-part + .wp-block-group {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

 /* 要項ページのグラデ文字 */
.mirror_txt {
  background: linear-gradient(to right, #00a1e5, #00ffbc);
  background: -webkit-linear-gradient(to right, #00a1e5, #00ffbc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700; 
}

/* =========================
  以下メニューバーの調整
========================= */
/* =========================
  対象 figure 共通
========================= */
figure.wp-block-image {
  position: relative;
  display: flex;
  justify-content: center; /* 左右中央 */
}

/* =========================
  ツールチップ共通
========================= */
figure.wp-block-image::after {
  position: absolute;
  top: calc(100% + 8px);   /* 下に表示 */
  left: 50%;
  transform: translate(-50%, -6px);

  background: #333;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 9999px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  z-index: 10;

  transition:
    opacity 0.2s ease-out,
    transform 0.2s cubic-bezier(.2,.6,.2,1);
}

/* =========================
  ホバー時
========================= */
figure.wp-block-image:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =========================
  文言出し分け
========================= */

/* 2106 → お問合せ */
figure.wp-block-image:has(img.wp-image-2106)::after {
  content: "お問合せ";
}

/* 2107 → 出展に関して */
figure.wp-block-image:has(img.wp-image-2107)::after {
  content: "出展に関して";
}

/* =========================
  余白とアイコン大きさ
========================= */
/* アイコンサイズ */
.wp-image-2106,
.wp-image-2107 {
  width: 55px;
}

/* 2106 の次に並ぶ 2107 を左に寄せる */
figure.wp-block-image:has(img.wp-image-2106)
+ figure.wp-block-image:has(img.wp-image-2107) {
  margin-left: -40px !important;
}

/* 上部イベント切替ボタン：文字まわりの余白を詰める 　ボタン2つ並びのところ（東京と大阪）*/
.event-menu .wp-block-navigation__container a {
  padding: 6px 12px; /* ← 縦 横 */
  line-height: 1.2;
}
/* =========================
メニューバーの調整ここまで
========================= */



/* =========================
  とわページ
========================= */
.headingtowa {
	font-size: 26px;
　　font-weight: strong; 
}

.headingtowa span {
	display: flex;
	align-items: center;
	color: #498ee0;
	font-size: 18px;
	text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 20px;
}

.headingtowa span::before {
	content: '';
	display: inline-block;
	margin-right: 20px;
	width: 40px;
	height: 1px;
	background-color: #498ee0; 
}
/* =========================
  とわページ終わり
========================= */
/* =========================
  voiceページ
========================= */
.1829-2 .interview-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden; /* 角丸を効かせる */
  margin-bottom: 32px;
}


