/* =========================
  entry testページ
========================= */
/* =====================
section
===================== */
/* ======================
4展並び
====================== */

.expo-section,
.expo-grid{
max-width:1280px;
margin:0 auto;
}
.expo-section{
padding:90px 20px;
background:#FBFAF3;
}

.expo-title{
text-align:center;
font-size:32px;
margin-bottom:50px;
}

/* grid */

.expo-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
}

/* ======================
カード
====================== */

.expo-card{
border-radius:16px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* ヘッダー */

.expo-header{
padding:18px 20px;
color:#fff;
}

.expo-header h3{
margin:0 0 6px;
font-size:20px;
}

.expo-header p{
margin:0;
font-size:13px;
opacity:.9;
}

/* 本文 */

.expo-body{
padding:16px 20px 20px;
}

/* 年 */

.expo-year{
margin-bottom:16px;
}

.expo-year h4{
font-size:18px;
font-weight: bold;
margin-bottom:10px;
color:#19726b;
}

/* テーブル */

.expo-table{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
}

/* 見出し */

.expo-col.head{
font-size:15px;
font-weight: bold;
text-align:center;
border-bottom:1px solid rgba(0,0,0,.08);
padding-bottom:4px;
}

/* リノベ再生フェアマガジン */
.expo-body h3{
font-size: 16px;
font-weight: bold;
color: #3498DB;
border-top:1px solid rgba(0,0,0,.08);
padding-top:8px;
}

/* リンク */

.expo-item{
display:block;
text-align:center;
padding:10px;
font-size:15px;
font-weight: bold;
border-radius:8px;
border:1px solid rgba(0,0,0,.08);
background:#fff;
text-decoration:none;
color:#333;
transition:.2s;
}

.expo-item:hover{
background:#f5f5f5;
}

/* disabled */

.expo-item.disabled{
background:#f3f3f3;
color:#aaa;
}

/* ======================
カラー
====================== */

.expo-card.blue .expo-header{background:#0057a9;}
.expo-card.blue{background:#F7F7F7;}

.expo-card.red .expo-header{background:#dc143c;}
.expo-card.red{background:#F7F7F7;}

.expo-card.yellow .expo-header{background:#E4C146;}
.expo-card.yellow{background:#F7F7F7;}

.expo-card.green .expo-header{background:#6AB5B1;}
.expo-card.green{background:#F7F7F7;}

/* hover色 */

.expo-card.blue .expo-item:hover{background:#FBFAF3;}
.expo-card.red .expo-item:hover{background:#FBFAF3;}
.expo-card.yellow .expo-item:hover{background:#FBFAF3;}
.expo-card.green .expo-item:hover{background:#FBFAF3;}

/* レスポンシブ */

@media (max-width:768px){
.expo-grid{
grid-template-columns:1fr;
}
}

/* =====================
4展紹介
===================== */

/* セクション */

.intro-section{
background:#fff;
padding:0px 20px 80px;
}

/* リード文 */

.intro-lead{
max-width:900px;
margin:0 auto 50px;
text-align:center;
line-height:1.8;
color:#black;
}

/* グリッド */

.intro-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* カード */

.intro-card{
text-align:left;
padding:20px;
border-radius:12px;
background:#fff;
box-shadow:0 4px 12px rgba(0,0,0,.04);
transition:.25s ease;
}

.intro-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 24px rgba(0,0,0,.08);
}

/* ロゴ */

.intro-card img{
width:200px;
margin-bottom:16px;
object-fit:contain;
}

/* タイトル */

.intro-card h3{
font-size:18px;
margin-bottom:10px;
}

/* テキスト */

.intro-card p{
font-size:14px;
line-height:1.7;
color:#666;
}

/* SP */

@media (max-width:768px){
.intro-grid{
grid-template-columns:1fr;
}
}

/* ======================
出展メリット
====================== */

.benefit-section{
padding:90px 20px;
background:#fff;
}

.benefit-title{
text-align:center;
font-size:32px;
margin-bottom:50px;
}

/* grid */

.benefit-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

/* card */

.benefit-card{
background:#fff;
border-radius:16px;
padding:30px 24px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.25s;
}

.benefit-card:hover{
transform:translateY(-6px);
box-shadow:0 16px 36px rgba(0,0,0,.15);
}

/* icon */

.benefit-icon{
width:60px;
height:60px;
margin:0 auto 14px;
border-radius:50%;
background:#19726b;
display:flex;
align-items:center;
justify-content:center;
}

.benefit-icon svg{
width:26px;
height:26px;
stroke:#fff;
stroke-width:2;
fill:none;
stroke-linecap:round;
stroke-linejoin:round;
}

/* title */

.benefit-card h3{
font-size:18px;
margin-bottom:10px;
}

/* text */

.benefit-card p{
font-size:14px;
color:#555;
line-height:1.6;
margin:0;
}

/* responsive */

@media (max-width:900px){

.benefit-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.benefit-grid{
grid-template-columns:1fr;
}

}

/* ======================
出展対象
====================== */
.target-section{
padding:90px 20px;
background:#FBFAF3;
border-bottom:2px solid #c0c0c0;
text-align:center;
}

.target-title{
font-size:32px;
margin-bottom:12px;
}

.target-lead{
color:#666;
font-size:15px;
margin-bottom:40px;
}

/* grid */

.target-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
}

/* tag */

.target-tag{
background:#f1f4f6;
padding:10px 16px;
border-radius:30px;
font-size:14px;
color:#333;
transition:.2s;
}

.target-tag:hover{
background:#19726b;
color:#fff;
}

/* ======================
出展対象
====================== */

.target-section{
padding:90px 20px;
background:#FBFAF3;
border-bottom:2px solid #c0c0c0;
}

/* タイトル（そのままでもOKだけど一応） */
.target-title{
text-align:center;
font-size:32px;
margin-bottom:12px;
}

/* リード文 */
.target-lead{
text-align:center;
color:#666;
font-size:15px;
margin-bottom:50px;
}

/* ======================
グループ（左寄せの軸）
====================== */

.target-group{
max-width:900px;
margin:60px auto 0;
text-align:left;
}

/* ======================
小見出し（左寄せ＋アクセント）
====================== */

.target-subtitle{
font-size:18px;
font-weight:600;
color:#19726b;
margin-bottom:14px;
padding-left:14px;
position:relative;
}

/* 左ライン */
.target-subtitle::before{
content:"";
position:absolute;
left:0;
top:50%;
transform:translateY(-50%);
width:4px;
height:70%;
background:#19726b;
border-radius:2px;
}

/* ======================
リスト（3列グリッド）
====================== */

.target-list{
list-style:none;
padding:0;
margin:8px 0 0;

display:grid;
grid-template-columns:repeat(3, 1fr);
gap:10px 30px;
}

/* 各項目 */

.target-list li{
position:relative;
padding-left:18px;
font-size:14px;
line-height:1.6;
color:#333;
}

/* ドット装飾 */

.target-list li::before{
content:"";
position:absolute;
left:0;
top:0.6em;
width:6px;
height:6px;
background:#19726b;
border-radius:50%;
}

/* ======================
ほんのり区切り（うっすら）
====================== */

.target-group + .target-group{
border-top:1px solid #e5e5e5;
padding-top:40px;
}

/* ======================
レスポンシブ
====================== */

@media (max-width:768px){

.target-section{
padding:70px 16px;
}

.target-title{
font-size:26px;
}

.target-subtitle{
font-size:17px;
}

.target-list{
grid-template-columns:repeat(2, 1fr);
gap:8px 20px;
}

.target-list li{
font-size:13px;
}

}

@media (max-width:480px){

.target-list{
grid-template-columns:1fr;
}

}
/* =========================
  entry testページ終わり
========================= */


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;
}


