@charset "utf-8";



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');


/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--bg-color: #000;			/*主にテンプレートの背景色*/
	--bg-inverse-color: #fff;	/*上のbg-colorの「対」として使う色*/
	
	--primary-color: #37c6df;	/*メインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの「対」として使う色*/
	
	--content-space: 8.33vw;  /*余白の一括管理用。画面幅100% = 100vwです。（grid-boxと幅を合わせる為に100÷12=8.33にしました）*/

	--headerH: 70px;  /*headerの高さ他、関連パーツ用*/
	--headerM: 3rem;  /*headerのマージン他、関連パーツ用*/

}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {

	:root {
		--content-space: 10px;	/*余白の一括管理用。小さな端末で余白を狭くする。*/
	}

	}/*追加指定ここまで*/


/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 15px;	/*基準となるフォントサイズ。*/
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: Oswald, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	font-weight: 300;
	-webkit-text-size-adjust: none;
	background: var(--bg-color);	/*背景色*/
	color: var(--bg-inverse-color);		/*文字色*/
	line-height: 2.5;		/*行間*/
	overflow-x: hidden;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section > ol,section > ul {margin-left: 2rem;}


/*sectionの設定
---------------------------------------------------------------------------*/
section {
	padding: 0 var(--content-space);
	margin: 5vw 0;	/*5vwを変更する際は、他にも影響するので注意*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
	text-decoration: none;
}

/*マウスオン時*/
a:hover {
	text-decoration: none;
}


/*conatiner（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	animation: opa1 0.2s 0.4s both;  /*0.4秒待機後、0.2秒かけてフェードイン*/
	display: grid;
	grid-template-rows: auto 1fr;	/*mainの内容が少ない場合にfooterが浮かないように。*/
	min-height: 100vh;
	min-height: 100dvh;
	overflow-x: hidden;
}

/*トップ以外のcontainer*/
body:not(.home) #container {
	grid-template-rows: 1fr;	/*mainの内容が少ない場合にfooterが浮かないように。*/
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	position: fixed;	/*画面の一定箇所で固定表示*/
	z-index: 1;
	width: calc(100% - 6rem);	/*幅。下の行のmarginが左右にあるので、6remを引いた幅にしています。*/
	margin: var(--headerM);	/*header周りに空けるマージン。css冒頭のheaderMを読み込みます。*/
	overflow: hidden;
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒のことで0.8は色が80%出た状態。*/
	border-radius: 10px;	/*角を丸くする指定*/
	display: flex;
	align-items: center;
	gap: 2rem;	/*headerの直接の子要素同士に空けるスペース。２文字分。*/
	line-height: 1.5;	/*行間を少し狭く*/
	height: var(--headerH);	/*ヘッダーの高さ。css冒頭のheaderHを読み込みます。*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかす量、0,0,0は黒のことで0.1は色が10%出た状態。*/
	transition: transform 0.5s ease, opacity 0.5s ease;	/*スクロールでheaderがフェードする際にかける時間。*/
	padding: 0 calc(var(--headerH) + 2rem) 0 2rem;	/*header内の余白*/
}


/* 隠す際のスタイル */
.site-header.is-hide {
	opacity: 0;
	transform: translateY(-100%); /*真上に隠す*/
	pointer-events: none; /*消えている間はクリックを無効化*/
}

	/*画面幅800px以下の追加指定*/
	@media screen and (max-width:800px) {

	header {
		position: absolute;	/*スクロールとともに動かす為、絶対配置*/
		background: transparent;	/*背景を透明にして背後の画像を見やすく*/
		box-shadow: none;	/*ボックスの影も消す*/
		margin: 0;
	}

	}/*追加指定ここまで*/


/*ロゴ画像*/
#logo {margin: 0;flex-shrink: 0;}
#logo img {
	display: block;
	height: 30px;	/*ロゴの高さ。headerの高さを固定しているので、ロゴも高さで指定して下さい。*/
}

	/*画面幅800px以下の追加指定*/
	@media screen and (max-width:800px) {

	#logo img {
		background: #000;		/*ロゴ背後の色。headerの背景色を消すので、ロゴの背後に色をのせています。*/
		padding: 0.5rem 1rem;	/*上下、左右の余白*/
		border-radius: 10px;	/*角丸のサイズ*/
	}

	}/*追加指定ここまで*/


/*header内のメニュー（※開閉メニューとはブロックが異なります）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
header nav ul {
	display: flex;
	gap: 2rem;	/*メニュー同士の間に空けるスペース*/
}

	/*画面幅1000px以下の追加指定*/
	@media screen and (max-width:1000px) {

	header nav ul {
		gap: 1rem;	/*メニュー同士の間に空けるスペースを狭く*/
	}

	}/*追加指定ここまで*/

	/*画面幅800px以下の追加指定*/
	@media screen and (max-width:800px) {

	header nav ul {
		display: none;	/*非表示に*/
	}

	}/*追加指定ここまで*/

/*メニュー１個あたりの設定*/
header nav ul a {
	display: block;
	text-decoration: none;
	text-align: center;
}

/*マウスオン時*/
header nav ul a:hover {
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
}

/*英語の装飾文字*/
header nav ul span {
	display: block;
	font-size: 0.7rem;	/*文字サイズ70%*/
	opacity: 0.6;	/*色を60%だけ出す*/
}


/*言語切り替えブロック
---------------------------------------------------------------------------*/
#lang {
	margin: 0;padding: 0;list-style: none;
	position: absolute;
	right: var(--headerM);
	top: 0px;
	line-height: var(--headerM);
	z-index: 1;
	display: flex;
	gap: 1rem;	/*テキスト同士の間に空けるスペース。１文字分。*/
	font-size: 0.9rem;	/*文字サイズ85%*/
	color: #fff;	/*文字色*/
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px var(--content-space) 50px;		/*ブロック内の余白*/
	background: var(--bg-color) url('../images/bg-greeting.png') no-repeat center bottom / 100%;	/*背景色はcss冒頭のbg-colorを読み込み。url以降は背景画像。*/
	color: var(--bg-inverse-color);	/*文字色。*/
	line-height: 1.5;
	font-size: 1.2rem;
}

.small-screen #menubar {display: none;}

/*メニュー１個あたり*/
.small-screen #menubar a {
	display: block;text-decoration: none;
	background: var(--primary-inverse-color);	/*背景色。css冒頭のprimary-inverse-colorを読み込み。*/
	color: #333;	/*文字色*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける。メニュー同士の間隔です。*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
	border-radius: 10px;
}

/*英語の装飾文字*/
.small-screen #menubar span {
	display: block;
	font-size: 0.7rem;	/*文字サイズ70%*/
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: var(--headerM);	/*右からの配置場所。css冒頭のheaderMを読み込みます。*/
	top: var(--headerM);	/*上からの配置場所。css冒頭のheaderMを読み込みます。*/
	width: var(--headerH);	/*幅。css冒頭のheaderHを読み込みます。*/
	height: var(--headerH);	/*高さ。css冒頭のheaderHを読み込みます。*/
	transform-origin: right top;
	transform: scale(1);	/*大きさを調整したい場合はここの「1」を変更します。1.2や0.7など。*/
	border-radius: 10px;	/*角を丸くする指定。headerのborder-radiusと揃えます。*/
}

	/*画面幅800px以下の追加指定*/
	@media screen and (max-width:800px) {

	#menubar_hdr {
		right: 2rem;	/*右からの配置場所の上書き*/
	}

	}/*追加指定ここまで*/


/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: #4d0000;
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;		/*線の高さ*/
	background: #fff;	/*線の色*/
	transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

/*小さな画面での設定*/
.small-screen #menubar_hdr {
	display: flex;
}


/*テキストスライド
---------------------------------------------------------------------------*/
.text-slide-wrapper {
	overflow: hidden;
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	line-height: 1;
}

.text-slide {
	display: flex;
	white-space: nowrap;
    font-size: 10vw;	/*文字サイズ*/
	opacity: 0.3;	/*透明度。色が30%出た状態。*/
}

.text-slide span {
	padding: 0 20px;
}


/*見出し
---------------------------------------------------------------------------*/
/*h2と、grid-box内のh4*/
#container h2, .grid-box h4 {
	display: flex;
	flex-direction: column-reverse;	/*spanと表示順を入れ替える*/
	font-size: 1.8rem;	/*文字サイズ1.8倍*/
	font-weight: 400;
}

/*上記のh2とh4の中で使うspan（小文字）*/
#container h2 .small, #container h4 span {
	font-size: 0.8rem;	/*文字サイズ0.8倍*/
	opacity: 0.5;		/*透明度50%*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広く*/
}


/*見出しのテキストのフェードイン設定
---------------------------------------------------------------------------*/
/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.2」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}


/*main
---------------------------------------------------------------------------*/
/*トップ以外ののmain*/
body:not(.home) main {
	margin-top: 150px;	/*上にマージン。*/
}

	/*画面幅800px以下の追加指定*/
	@media screen and (max-width:800px) {

	body:not(.home) main {
		margin-top: 100px;
	}

	}/*追加指定ここまで*/


/*「会場案内」
---------------------------------------------------------------------------*/
/*gridボックス全体を囲むブロック*/
.grid-mask {
	display:grid;
	grid-template-columns: repeat(4, 1fr);	/*4列にする指定*/
	gap: 5rem;	/*ボックスの間に空けるスペース。５文字分。*/
	line-height: 1.5;	/*行間を少し狭く*/
}

	/*画面幅800px以下の追加指定*/
	@media screen and (max-width:800px) {

	.grid-mask {
		grid-template-columns: repeat(2, 1fr);	/*2列にする*/
		gap: 3rem;	/*ボックスの間に空けるスペース*/
	}

	}/*追加指定ここまで*/


/*h4見出し*/
.grid-mask h4 {
	margin-bottom: 0;
	text-align: center;
}

/*p（段落）*/
.grid-mask p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
}

/*画像*/
.grid-mask figure {
	aspect-ratio: 1 / 1;   /* アスペクト比1:1の正方形 */
}
.grid-mask figure img {
	transition: 0.3s;
	width:100%;
	height:100%;
	object-fit: cover;
	display:block;
}

/*画像にリンクがある場合のみ少しだけ拡大*/
.grid-mask figure a img:hover {
	transform: scale(1.1);
}

.grid-mask .list {
	position: relative;
}


/*「グルメランキング（３列ブロック）」
---------------------------------------------------------------------------*/
.list-grid .list * {margin: 0;padding: 0;}

/*ブロック全体を囲むブロック*/
.list-grid {
	display: grid;
    grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
	gap: 6vw;	/*ブロックの間に空けるスペース*/
	align-items: start;
}

/*ボックス１個あたり*/
.list-grid .list {
	display: grid;
	text-align: center;		/*テキストをセンタリング*/
	position: relative;
}

/*ボックス内のfigure画像（※アスペクト比を1:1にした場合）*/
.list-grid.square .list figure {
	width: 100%;
	aspect-ratio: 1 / 1;	/*幅に対して高さを同じにする*/
}
.list-grid.square .list figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;			/*コンテナいっぱいにカバー、余分な部分はカット*/
	object-position: center;	/*中央部分を表示*/
}

/*ボックス内のh4（見出し）*/
.list-grid h4 {
	font-weight: 500;
}

/*ボックス内のp（文章）*/
.list-grid p {
	font-weight: normal;
	font-size: 0.85rem;	/*文字サイズ85%*/
	opacity: 0.7;		/*色を70%だけ出す*/
}

/* ランキングの旗 */
/*grid-box（色々なレイアウト用）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.grid-box {
	margin-bottom: 5vw;	/*下に空けるスペース。100vw = 画面幅100%なので、この場合は5%。*/
}

/*ボックス内のh2*/
.grid-box h2 {
	grid-column: 2 / 12;
}

/*ボックス内のh4*/
.grid-box h4{
	margin: 0;
}

/*画像と文字を囲むブロック*/
.grid-box section {
	display: grid;
	grid-template-columns: repeat(12, 1fr); /* 12等分 */
	gap: 5vw; /* 要素間の隙間 */
	margin-left: calc(-1 * var(--content-space));
	margin-right: calc(-1 * var(--content-space));
	margin-bottom: 5vw;	/*下に空けるスペース*/
	grid-auto-flow: dense;
}
.grid-box section:last-child {
  margin-bottom: 0;	/*最後のブロックの下マージンをなくす*/
}

/*imageとtextの設定*/
.grid-box .image,
.grid-box .text {
	align-self: center;
	position: relative;
}

/*imageのみの設定*/
.grid-box .image {
	grid-column: 1 / -1;
}

/*textのみの設定*/
.grid-box .text {
	grid-column: 2 / 12;
}

/*装飾イラスト用*/
.grid-box .kazari {
	display: block;
	position: absolute;
	z-index: 99;
	transform: translate(-50%, -50%);
	width: 150px;	/*幅*/
}

/*image-wide（横長で使う場合）*/
.grid-box .image-wide {
	grid-column: 2 / 12;
}

/*image-01*/
.grid-box .image-01 {
	grid-column: 8 / 12;
}
/*.text-01*/
.grid-box .text-01 {
	grid-column: 2 / 8;
}
/*image-01（左右入れ替え用）*/
.grid-box section.reverse .image-01 {
	grid-column: 2 / 6;
}
/*text-01（左右入れ替え用）*/
.grid-box section.reverse .text-01 {
	grid-column: 6 / 12;
}

/*image-02*/
.grid-box .image-02 {
	grid-column: 1 / 10;
}
/*text-02*/
.grid-box .text-02 {
	grid-column: 2 / 10;
}
/*image-02（左右入れ替え用）*/
.grid-box section.reverse .image-02 {
	grid-column: 4 / -1;
}
/*text-02（左右入れ替え用）*/
.grid-box section.reverse .text-02 {
	grid-column: 4 / 12;
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {

	/*画像と文字を囲むブロック*/
	.grid-box section {
		margin-left: var(--content-space);
		margin-right: var(--content-space);
		display: block;
		margin-bottom: 60px;
	}
	
	}/*追加指定ここまで*/


/*お知らせ
---------------------------------------------------------------------------*/
	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;
		gap: 1rem;  /*日付や文章の間にとるスペース。１文字分。*/
		grid-template-columns: auto 1fr;	/* 日付の幅は自動で、内容が入るブロックは残り幅一杯とる。 */
	}

	}/*追加指定ここまで*/


/*背景画像が少しずつ上に移動する
---------------------------------------------------------------------------*/
/*画像ボックス*/
.bg-slideup {
    background-image: url("../images/bg-slideup.png");	/*背景画像の読み込み*/
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
	height: 50vh;	/*高さ。画面の高さの50%になる設定ですがお好みで。*/
	display: flex;
	justify-content: center;
	align-items: center;
}


/*「ご挨拶」の背景画像
---------------------------------------------------------------------------*/
.bg-greeting {
	padding-bottom: 5vw;	/*下に余白。*/
	background: url('../images/bg-greeting.png') no-repeat center center / 100%;	/*画像の読み込み。*/
	color: #555; /* 基本の文字色（濃いグレー） */
	min-height: 500px;
	display: flex;             /* フレックスボックスにする */
	flex-direction: column;    /* 中身を縦に並べる */
	justify-content: center;   /* 縦方向の中央に配置 */ 
	padding: 50px;             /* 周りの余白 */
}

hero-text {
  text-align: left;
  /* ここでこのセクション内の文字だけにフォントを適用 */
  font-family: 'Oswald', sans-serif; 
}

.hero-text p {
  font-size: 8vw;      /* 大きさを調整 */
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* 頭文字のオレンジ色 */
.accent {
  color: #ff8c00;       /* オレンジ色 */
}

/* スマホ用（画面幅が768px以下のとき） */
@media screen and (max-width: 768px) {
  .hero-text p {
    font-size: 40px; /* スマホではここが適用される */
  }
}

/*btn1（ボタン）
---------------------------------------------------------------------------*/
.btn1 a {
	display: block;text-decoration: none;
	width: fit-content;
	margin: 0 auto;
	background: var(--bg-color);	/*背景色*/
	color: var(--bg-inverse-color);	/*文字色*/
	padding: 0.5rem 3rem;	/*ボタン内の余白。上下に0.5文字分、左右に3文字分。*/
	border-radius: 100px;	/*角を丸くする指定。大きければ適当でOK。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1);	/*ボタンの影。右に、下に、ぼかす量、0,0,0は黒のことで0.1は色が10%出た状態。*/
}

/*マウスオン時*/
.btn1 a:hover {
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	box-shadow: none;	/*ボタンの影を消す*/
}

.bg-slideup .btn1 a {
	background: var(--primary-color);	/*背景色*/
	color: var(--primary-inverse-color);	/*文字色*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.2rem 1rem;		/*ボックス内の余白*/
	background: rgba(0,0,0,0.1);	/*背景色*/
	color: var(--bg-inverse-color);			/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid rgba(0,0,0,0.3);	/*テーブルの上の線。幅、線種、0,0,0は黒のことで0.3は色が30%出た状態。*/
	width: 100%;				/*幅*/
	margin-bottom: 2rem;		/*テーブルの下に空けるスペース。２文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid rgba(0,0,0,0.3);	/*テーブルの下の線。幅、線種、0,0,0は黒のことで0.3は色が30%出た状態。*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

	}/*追加指定ここまで*/


/*フッター
---------------------------------------------------------------------------*/
footer * {margin: 0;padding: 0;}
footer ul {list-style: none;}

/*ブロック全体*/
footer {
	background: #0d3036;	/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	padding: var(--content-space);	/*フッター内の余白。css冒頭のcontent-spaceを読み込みます。*/
	position: relative;
}

/*ロゴが入ったブロック（大きな画面だと左側）*/
footer .footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;	/*このブロック内のボックス同士の間に空ける余白。１文字分。*/
	margin-bottom: 30px;
}

/*フッター内のロゴ*/
/*
footer .logo {
	font-size: 1.2rem;
}
*/

/*地図が入ったブロック（大きな画面だと右側）*/
footer .footer2 {
    flex: 1;
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {

	footer {
		display: flex;
		gap: 2rem;		/*ロゴのブロックとメニューのブロックとの間の余白。2文字分。*/
	}

	/*ロゴが入ったブロック*/
	footer .footer1 {
		margin-bottom: 0;
		text-align: left;
	}

	}/*追加指定ここまで*/


/*Copyright部分*/
footer small {
	display: block;
	text-align: right;
	margin-top: 2rem;
}

/*footerlogo部分*/
.footer-logo-font {
  text-align: left;
  /* ここでこのセクション内の文字だけにフォントを適用 */
  font-family: 'Oswald', sans-serif; 
  font-size: 30px;      /* 大きさを調整 */
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}


/*Google Map用
---------------------------------------------------------------------------*/
.iframe-box1 {
	width: 100%;
	aspect-ratio: 16 / 9;	/*マップのアスペクト比。お好みで。*/
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}
.iframe-box1 iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*SNSアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	gap: 10px;
}
.icons i {
	font-size: 40px;	/*アイコンサイズ*/
}


/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	background: #040f11;	/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	padding-top: 3vw;		/*ボックス内の上に空ける余白。画面幅100%=100vw*/
	padding-bottom: 3vw;	/*ボックス内の下に空ける余白。画面幅100%=100vw*/
}


/*bg2背景
---------------------------------------------------------------------------*/
.bg2 {
	background: #0f3941;	/*背景色*/
	color: #fff;	/*文字色*/
	padding-top: 3vw;		/*ボックス内の上に空ける余白。画面幅100%=100vw*/
	padding-bottom: 3vw;	/*ボックス内の下に空ける余白。画面幅100%=100vw*/
}


/*bg1,bg2共通設定。微妙な余白をなくす。
---------------------------------------------------------------------------*/
.bg1 + .bg1,
.bg2 + .bg2,
.bg1 + .bg2,
.bg2 + .bg1 {
	margin-top: 0;
}


/*会場周辺マップ（イメージマップ風）
---------------------------------------------------------------------------*/
/*マップ全体を囲むブロック*/
.image-map-container {
    position: relative;
    width: 100%;
	line-height: 1.2;
}

/*地図イラスト*/
.base-image {
    width: 100%;
    height: auto;
    display: block;
}

/*ピン（アイコンマーク）の配置の基準設定と、ピンデザイン*/
.pin-item {
    position: absolute; /* 基準に対して絶対配置 */
    transform: translate(-50%, -50%);
    
    /* 以下、ピンのデザイン */
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/*ピン（アイコンマーク）*/
.pin-marker {
	font-size: clamp(10px, 4vw, 30px);	/*文字サイズ。最小10px、最大30px、それ以外は4vw。*/
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    text-shadow: 
        2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, /* 白いフチ */
        3px 3px 5px rgba(0,0,0,0.5); /* 影 */
    transition: transform 0.2s;
}

/*ラベル（テキスト）*/
.pin-label {
    background: #fff;	/*背景色*/
    color: #333;		/*文字色*/
	border: 2px solid #333;	/*枠線の幅、線種、色*/
    padding: 4px 8px;	/*ラベル内の余白。上下、左右に。*/
    border-radius: 4px;	/*角を少しだけ丸くする*/
    /*font-size: 0.8rem;	文字サイズ*/
	/*font-size: 1.2vw;*/
	font-size: clamp(10px, 1.2vw, 20px);	/*文字サイズ。最小10px、最大20px、それ以外は1.2vw。*/
    font-weight: bold;	/*太字に*/
    white-space: nowrap; /* 文字を折り返さない */
}

/* ホバー時の動き（PC用） */
.pin-item:hover .pin-marker {
    transform: scale(1.2) translateY(-5px); /* ちょっと大きくなって浮く */
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
.slide-thumbnail1 {
    overflow-x: hidden;
    margin-bottom: 2rem;
    width: 100%;
}

.slide-thumbnail1 .img {
    display: flex;
    overflow: hidden;
    width: 100%;
    justify-content: flex-start;
}

/* ★修正：paddingと角丸をここに集約 */
.slide-thumbnail1 .img div {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 1vw; /* 余白はdivで持つ */
    box-sizing: border-box; /* paddingを含めて25%にする */
    overflow: hidden;      /* はみ出した角をカット */
    border-radius: 12px;   /* ★角丸をここに指定 */
}

/* ★修正：画像は枠いっぱいにする */
.slide-thumbnail1 .img img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    border-radius: 12px; /* ★念のためimgにも指定 */
}

/*段違いの設定*/
.slide-thumbnail1 .img div:nth-of-type(even) {
    margin-top: 30px;
}

/*アニメーション関連は変更なし*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
    0% {transform: translateX(0);}
    100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
    0% {transform: translateX(-50%);}
    100% {transform: translateX(0);}
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;display: block;
	background: #040f11;
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e4e5";
	font-weight: bold;
	margin-right: 0.5em;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*YouTubeをiframeで読み込む（アスペクト比16:9）
---------------------------------------------------------------------------*/
.youtube {
	max-width: 700px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;	/*アスペクト比を調整するところです*/
	position: relative;
}
.youtube iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: yellow!important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.padding0 {padding: 0 !important;}
.mb0 {margin-bottom: 0px !important;}
.mb3rem {margin-bottom: 3rem !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: rgba(255,255,255,0.2); color: #fff; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.look .color-check {color: yellow !important;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.block {display: block !important;}


/* 殿堂入りランキングセクション */
---------------------------------------------------------------------------*/
/* 殿堂入りランキングセクション */

#new-arrival-section {
    margin: 0% auto 50px auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

#ranking-section {
    margin: 0% auto 50px auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  #paid-ranking-section {
    margin: 0% auto 50px auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  /* 3列固定グリッド */
  .note-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }

  /* カードデザイン */
  .note-card {
    position: relative; /* 順位帯配置の基準 */
    border: 1px solid #5f5f5f3b;
    border-radius: 8px;
    background: #1b1b1be0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.26);
    transition: transform 0.8s ease, box-shadow 0.8s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: rgba(129, 193, 204, 0.637);
	opacity: 0;                /* 最初は透明 */
	transform: translateY(20px); /* 最初は少し下にずらしておく */
	transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* ぽわーんと動く時間 */
  }

  /* 表示された時に適用するクラス */
.note-card.is-visible {
  opacity: 1;                /* 透明度を1（表示）に */
  transform: translateY(0);  /* 元の位置に戻る */
}

  /* 順位帯の基本設定 */
.ranking-badge {
  position: absolute;
  top: 10px;
  left: -10px;
  width: 5rem;
  height: 2rem;
  font-weight: bold;
  
  /* 中央揃えで位置を安定させる */
  display: flex;
  justify-content: center; /* 完全な中央揃えにする */
  align-items: center;
  
  font-size: 0.9rem;
  color: #fff;
  
  /* 左側の斜めラインを考慮し、右へ少しだけオフセットさせる */
  padding-right: 0.3rem; 

  /* マスク定義 */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L85,50 L100,100 L0,100 Z' fill='%23000000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L85,50 L100,100 L0,100 Z' fill='%23000000'/%3E%3C/svg%3E");
  
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  
  z-index: 10;
  pointer-events: none;
}

/* 中の文字も少し小さくしてバランスを取る */
.badge-text {
  font-size: 0.75rem; 
  padding-bottom: 3px;
  text-align: center;
  line-height: 1;
  display: block;
}
  /* 順位ごとのカラー設定 (金・銀・銅) */
.badge-1 { 
  background: linear-gradient(135deg, #fff700, #fddc00, #b8860b); 
  color: #111; 
}
/* 2位：シルバー（洗練された金属感） */
.badge-2 { 
  background: linear-gradient(135deg, #f0f0f0, #c0c0c0, #808080); 
  color: #111; 
}
/* 3位：ブロンズ（重厚な銅の質感） */
.badge-3 { 
  background: linear-gradient(135deg, #e6a568, #cd7f32, #8b4513); 
  color: #fff; 
}
/* 4位：ブルー（鋭い知性を感じる青） */
.badge-4 { 
  background: linear-gradient(135deg, #6ec6ff, #4a90e2, #2c5a8a); 
  color: #fff; 
}
/* 5位：ミント（鮮やかなエネルギー） */
.badge-5 { 
  background: linear-gradient(135deg, #84ffc8, #50e3c2, #2a9d8f); 
  color: #000000; 
}
/* 6位：バイオレット（情熱と冷静の融合） */
.badge-6 { 
  background: linear-gradient(135deg, #e084ff, #bd10e0, #7b0099); 
  color: #fff; 
}
  /* ホバー時の浮遊エフェクト */
  .note-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(94, 231, 255, 0.26); 
  }

  /* リンク装飾 */
  .note-card a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px !important;
  }
  .note-card a:hover {
    color: rgba(94, 231, 255, 0.8);
  }

  /* 画像・ズーム設定 */
  .note-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
  }
  .note-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease; 
  }
  .note-card:hover img {
    transform: scale(1.1);
  }

  /* タイトルエリア */
  .note-title {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    transition: color 0.3s ease;
  }

  /* 新着記事コンテナの幅とランキングセクションのルールを統一 */
/* スマホの時、有料・無料・新着すべてのカードを強制的に2列＆同サイズにする */
@media (max-width: 768px) {
  /* セクションの幅を統一 */
  #ranking-section {
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* コンテナをグリッド2列に強制指定 */
  .note-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  /* カードの幅と余白を完全に固定 */
  .note-card {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* 画像の高さ制限（これがないと画像が縦に伸びて大きく見える） */
  .note-image-wrapper {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
  }
  
}

/* フォロワー数・スキ数・コメント数カード設定 */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.stat-card {
  position: relative; /* 穴を絶対配置するための基準点 */
  /* ...既存のスタイルはそのまま... */
  background: #045e7c;
  border: 1px solid #00374d;
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 0px 100px 0px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.5s ease;
}

/* 左右の穴の共通スタイル */
.stat-card::before,
.stat-card::after {
  content: '';
  position: absolute;
  top: 20px; /* カード上部からの距離 */
  width: 16px;  /* 穴の大きさ */
  height: 16px; /* 穴の大きさ */
  background-color: #000000; /* 穴の色（背景色と同じにするのがポイント） */
  border-radius: 50%; /* まん丸にする */
  /* 穴の縁を少し立体的に見せる（オプション） */
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 1px 1px rgba(0,0,0,0.5);
}

/* 左の穴の位置 */
.stat-card::before {
  left: 20px; /* カード左端からの距離 */
}

/* 右の穴の位置 */
.stat-card::after {
  right: 20px; /* カード右端からの距離 */
}
.stat-card:hover {
  box-shadow: 0 10px 10px rgba(0, 204, 255, 0.308);
}

.stat-card .label { font-size: 16px; color: #ffffff; margin-bottom: 8px; }
.stat-card .value { font-size: 24px; font-weight: bold; }
.stat-card .diff { margin-top: 5px; font-weight: bold; }
.value {
  display: flex;
  align-items: baseline; /* ベースラインで揃えるときれいです */
  justify-content: center;
}
@media (max-width: 600px) {
  .stats-container { grid-template-columns: 1fr; }
}


.profile-container {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 90%;
  margin: 0 auto;
}

.profile-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%; /* ここで丸く切り抜く */
  display: block;
  animation: shake 5s ease-in-out infinite;
}

.profile-text {
  flex: 1;
  line-height: 1.8;
  font-size: 1.2rem; /* ここでフォントサイズを大きくする（元のサイズから少しアップ） */
  font-weight: 500;   /* 読みやすさと力強さを出すために少し太く設定 */
}

/* 震える動きの定義 */
@keyframes shake {
  /* 0%～90%までは静止 */
  0%, 90% {
    transform: translate(0, 0) rotate(0deg);
  }
  /* 92%から細かく激しく揺らす */
  92% { transform: translate(-2px, 1px) rotate(1deg); }
  94% { transform: translate(2px, -1px) rotate(-1deg); }
  96% { transform: translate(-1px, 2px) rotate(0deg); }
  98% { transform: translate(1px, -2px) rotate(1deg); }
  /* 100%で元に戻る */
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* マウスホバー時はアニメーションを止める（任意） */
.profile-image img:hover {
  animation-play-state: paused;
}

/* スマホ対応：狭い画面では縦並びにする設定 */
@media (max-width: 600px) {
  .profile-container {
    flex-direction: column;
    text-align: center;
  }
}

h2.c {
  display: flex;       /* 横並びの要 */
  align-items: center;  /* アイコンと文字の上下位置を完全に揃える */
  justify-content: center; /* 左右中央寄せ */
  gap: 12px;           /* アイコンと文字の間の隙間を定義 */
  width: 100%;
}

h2.c i {
  display: inline-flex; /* アイコンをフレックスアイテムとして扱う */
  margin: 0;           /* 余計な外側のマージンを消す */
  font-size: 1.2em;
  color: #ff4500;
}

h2.c span {
  margin: 0;           /* 余計なマージンを消す */
  line-height: 1;      /* 行高を1にして上下の無駄な隙間をカット */
}


.c-ranking-container {
            max-width: 600px;
            margin: 20px auto;
            font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
        }
        .rank-card {
            display: flex;
            align-items: center;
            border: 2px solid #ffffff;
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 10px;
            background: #0000004d;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .rank-number {
            font-weight: bold;
            font-size: 1.2em;
            color: #555;
            min-width: 40px;
            text-align: center;
        }
        .profile-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #ffffff;
            flex-grow: 1;
        }
        .user-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 1px solid #000000;
        }
        .user-name {
            font-weight: 600;
            font-size: 1.2em;
        }
        .comment-count {
            color: #888;
            font-size: 0.55em;
            margin-left: 10px;
        }
	
		.rank-card.hidden {
        display: none;
    }
    #toggle-button {
        display: block;
        margin: 10px auto;
        padding: 10px 20px;
        cursor: pointer;
        background-color: #f0f0f0;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

/* カード内の要素を横並びにする */
.rank-card { display: flex; align-items: center; padding: 10px; border-bottom: 1px solid #eee; }
.rank-number { min-width: 60px; }

/* --- レスポンシブ対応: スマホ向け調整 --- */
@media screen and (max-width: 480px) {
    .c-ranking-container {
        padding: 0 10px;
        margin: 10px auto;
    }

    .rank-card {
        padding: 8px;
        border-radius: 8px;
    }

    .rank-number {
        min-width: 40px; /* スマホでは少し幅を詰める */
        font-size: 1em;
    }

    .user-icon {
        width: 40px;   /* アイコンも少しコンパクトに */
        height: 40px;
        margin-right: 10px;
    }

    .user-name {
        font-size: 1em; /* 名前が長すぎると改行されるので調整 */
    }

    .comment-count {
        font-size: 0.8em; /* 文字を少し大きくして視認性アップ */
        margin-left: 0;
        display: block;   /* 名前の下に表示させてスッキリさせる */
    }
}

/* バッジのスタイル（これを設定しないとバッジが見えません） */
.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: bold;
    color: white;
}
.rank-1 { background-color: #ffd700; color: #333; } /* 1位 */
.rank-2 { background-color: #c0c0c0; color: #333; } /* 2位 */
.rank-3 { background-color: #cd7f32; color: #fff; } /* 3位 */
.rank-4, .rank-5 { background-color: #888; color: #fff; } /* 4位以降の予備 */

.hidden { display: none; }



.rank-card.hidden {
    display: none;
}

/* ボタンのスタイルは好みで調整してくれ */
#toggle-button {
    cursor: pointer;
    /* ここにデザインを追加 */
}


/* 各項目の説明文カード */
.pop-out-board {
  /* --- 形状の固定 --- */
  background-color: transparent;
  color: #fff;
  padding: 40px;
  border-radius: 12px; /* 角丸をしっかり定義 */
  border: 2px solid rgba(0, 0, 0, 0.4);
  
  /* --- 歪みのない立体感 (内側の影のみで表現) --- */
  box-shadow: 
    inset 0 4px 6px rgba(255, 255, 255, 0.3),  /* 上部の光 */
    inset 0 -4px 6px rgba(0, 0, 0, 0.4);       /* 下部の影 */
  
  /* 歪みをなくすため、transformの回転は解除 */
  transform: none; 
  
  /* --- 滑らかな発光アニメーション --- */
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  
  margin: 40px 0;
  
  /* 文字設定 */
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
}

/* --- ホバー時は「光」のみを追加 --- */
.pop-out-board:hover {
  /* 浮き上がりはさせず、周囲の発光のみ */
  border-color: rgba(0, 0, 0, 0.8);
  
  box-shadow: 
    inset 0 4px 6px rgba(255, 255, 255, 0.3),
    inset 0 -4px 6px rgba(0, 0, 0, 0.4),
    /* 周囲に仄かな光を追加 */
    0 0 15px rgba(0, 198, 255, 0.5),
    0 0 30px rgba(0, 198, 255, 0.3);
}