@charset "utf-8";


/*各cssの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*日本地図用css（list_chintai.html用）*/
@import url(map.css);

/*一覧ページ用css*/
@import url(listCustom.css);

/*トップページのメイン画像用css*/
@import url(mainimg.css?v=1780085581);



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
}
h1,h2,h3,h4,h5,h5r,h5b,p,ul,ol,li,dl,dt,dd,form,figure,form,button,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;}
ul {list-style-type: none;}
img {border: none;max-width: 90%;height: auto;vertical-align: middle;}
img.logo_pc {max-width: none}
img.img2 {border: none;height: 100px;vertical-align: middle;background: #87CEFA;	/*背景色*/}
.img3 {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
video,audio {max-width: 100%;}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #e06565;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*マウスオン時の画像*/
a:hover img {
	opacity: 0.8;	/*80%色がついた状態*/
}

a.yearLink {
	color: white;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a.yearLink:hover {
	color: #66ccff;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*マウスオン時の画像*/
a.yearLink:hover img {
	opacity: 0.8;	/*80%色がついた状態*/
}

a.org {
	color: white;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1300px;	/*サイトの最大幅*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
}
/*ロゴ画像*/
header #logo {
	width: 350px;		/*ロゴ画像の幅*/
	float: left;		/*左に回り込み*/
	margin-top: 30px;	/*ロゴの上にあける余白。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	margin-left: 3%;	/*ロゴの左側にあける余白。*/
}

#headMain {
	float: right;	/*右に回り込み*/
	width: 100%;		/*ブロックの幅*/
}
/*mainコンテンツのh2タグ設定*/
#headMain h1 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 24px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	background: #e06565;	/*背景色*/
}


/*ログイン（ヘッダー右側のログイン）
---------------------------------------------------------------------------*/
header .login a {
	display: inline-block;text-decoration: none;
	float: right;		/*右に回り込み*/
	margin-right: 3%;	/*右に空けるスペース*/
	margin-top: 30px;	/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
	border: 1px solid #fe7200;	/*枠線の幅、線種、色*/
	background: #fe7200;/*背景色（古いブラウザ用）*/
	background: #fe7200 url(../images/icon_login.png) no-repeat 20px 11px / 12px;/*背景色、アイコンの読み込み。左から25px、上から11pxの場所に配置。画像幅は12px。*/
	color: #fff;	/*文字色*/
	padding: 5px 30px 5px 50px;	/*上、右、下、左へのボタン内の余白*/
	border-radius: 4px;		/*角丸のサイズ*/
	font-size: 14px;		/*文字サイズ*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる指定*/
}
/*マウスオン時*/
header .login a:hover {
	background-color: #fe9b00;	/*背景色だけ変更する*/
	color: #fff;	/*も地色*/
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	height: 75px;		/*メニューの高さ。下の「#menubar ul li a」の「height」と「padding-top」の数字を合計した数字に合わせる。*/
	text-align: center;	/*文字を中央に*/
	background: #de6b6b;	/*背景色*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 14.285%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
	text-decoration: none;display: block;
	line-height: 1.6;	/*行間を少し狭く*/
	color: #fff;		/*文字色*/
	height: 60px;		/*高さ*/
	padding-top: 15px;	/*上に追加する余白*/
	border-right: 1px solid #fff;	/*メニューの右側の線の幅、線種、色（古いブラウザ用）*/
	border-right: 1px solid rgba(255,255,255,0.5);	/*右の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #fff;	/*メニューの線の幅、線種、色（古いブラウザ用）*/
	border-left: 1px solid rgba(255,255,255,0.5);	/*左の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
/*飾り文字*/
#menubar li span {
	display: block;
	font-size: 9px;			/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	opacity: 0.5;			/*透明度50％*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #ea8b8b;	/*背景色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;padding-top: 1px;
	width: 14.285%;		/*幅。上の「#menubar li」と合わせる。*/
	font-size: 12px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a {
	width: 100%;height: auto;font-weight: normal;
	border: none;	/*線を一旦リセット*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	color: #fff;		/*文字色*/
	padding: 10px 0;	/*上下、左右への余白*/
}
/*ドロップダウンメニュー内の見出し*/
#menubar ul.ddmenu li.title a {

	background: #e06565;	/*背景色*/
	cursor: default;		/*カーソルをリンク用でなくデフォルトの矢印にしておく*/
	padding: 3px 0;			/*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #000;	/*背景色*/
}
/*見出しのマウスオン時*/
#menubar ul.ddmenu li.title a:hover {
	background: #e06565;
}




/* =========================================================
   地方メニュー
   PC: 均等割り
   スマホ: 高さ固定の横スクロール
========================================================= */

/* --- PC/共通ベース --- */
#menubarNew {
  clear: both;
  height: 52px;
  text-align: center;
  background: #e8b0b0;
  border-bottom: 1px solid #fff;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

#menubarNew ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}

#menubarNew li {
  flex: 1 1 0;
  width: auto;
  text-align: center;
}

#menubarNew li a {
  text-decoration: none;
  display: block;
  height: 52px;
  line-height: 52px;
  padding: 0 8px;
  white-space: nowrap;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.5);
  box-sizing: border-box;
  font-size: 18px;
}

#menubarNew li:first-child a {
  border-left: 1px solid rgba(255,255,255,0.5);
}

#menubarNew li a:hover,
#menubarNew li.current a {
  background: #f09a9a;
}


/* --- タブレット以下は少しだけ文字を縮める --- */
@media screen and (max-width: 1100px) {
  #menubarNew {
    height: 44px;
  }

  #menubarNew li a {
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    padding: 0 6px;
  }
}


/* --- スマホは横スクロールに切り替え --- */
@media screen and (max-width: 900px) {
  #menubarNew {
    height: 35px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  #menubarNew ul {
    justify-content: flex-start;
    width: auto;
    min-width: max-content;
  }

  #menubarNew li {
    flex: 0 0 auto;
  }

  #menubarNew li a {
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    padding: 0 18px;
    white-space: nowrap;
  }
}







/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed-menu header {
	margin-bottom: 75px;	/*メニューの高さを指定。menubarのborderが1px分ありますが大差ないので75でOKです。*/
}
/*上の設定の「is-fixed-menu」を「is-fixed」に変更したものをそのまま記入します。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed header {
	margin-bottom: 75px;
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	padding-top: 20px;		/*上に空けるボックス内の余白*/
	padding-bottom: 20px;	/*下に空けるボックス内の余白*/
}

/*contents-in（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;	/*左に回り込み*/
	width: 80%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #contents-in {
	float: none;
	width: auto;
}

/*mainコンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ブロックの幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 18px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	background: #e06565;	/*背景色*/

}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 4px 20px;	/*上下、左右への余白*/
	font-size: 16px;	/*文字サイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter {
	border-left: 3px solid #e06565;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}


/*mainコンテンツのh3タグ設定*/
#main h3.sub {
	clear: both;
	margin-bottom: 20px;
	padding: 4px 20px;	/*上下、左右への余白*/
	font-size: 16px;	/*文字サイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
	background-color: #de7774;
	color: #fff;
}
/*h3タグの１文字目への追加設定*/
#main h3.sub::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	margin-top: 30px;
}

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 22.5%;	/*ブロックの幅*/
}

/*sideコンテンツ（右側のブロック）
---------------------------------------------------------------------------*/
#side {
	float: right;	/*右に回り込み*/
	width: 18%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #side {
	display: none;
}

/*sub,side共通設定
---------------------------------------------------------------------------*/
/*h2見出しタグ設定*/
#sub h2,
#side h2 {
	text-align: center;		/*文字をセンタリング*/
	padding: 8px 0px;		/*上下、左右への余白*/
	color: #fff;			/*文字色*/
	background: #9d9980;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#9d9980, #8c876c);	/*背景グラデーション*/
}
/*段落タグ（p）設定*/
#sub p,#side p {
	line-height: 1.6;	/*行間を少し狭く*/
}

/*box1設定（sub,sideで使っています）
---------------------------------------------------------------------------*/
/*box1設定*/
#sub .box1,
#side .box1 {
	border: 1px solid #8c876c;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下にあけるスペース*/
	background: #f1f0ec;	/*背景色*/
}
/*box1の中にsubmenuがある場合の下のmarginをなくす*/
.box1 .submenu {
	margin-bottom: 0 !important;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub .submenu,
#side .submenu {
	margin-bottom: 20px;		/*メニューブロックの下にあけるスペース*/
	border-top: 1px solid #8c876c;	/*上の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a {
	text-decoration: none;display: block;
	padding: 0 10px;		/*上下、左右のボックス内の余白*/
	border: 1px solid #8c876c;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線を消す設定*/
	background: #fff;		/*背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #e06565;	/*背景色*/
	font-size: 85%;			/*文字サイズ*/
	color: #fff;			/*文字色*/
}
footer a, footer a:hover {
	color: #fff;	/*リンクテキスト、マウスオン時の文字色*/
}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
	font-size: 14px;	/*文字サイズを少し小さく*/
}
/*１列分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 14%;		/*幅。今回は5列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 1%;
	padding-left: 1%;
}
/*メニュー１個あたりの設定*/
#footermenu ul li {
	padding: 0 10px;	/*上下、左右への余白*/
}
/*見出し*/
#footermenu li.title {
	font-weight: bold;	/*太字にする*/
	background: rgba(0,0,0,0.1);	/*背景色*/
	border-radius: 2px;	/*角丸のサイズ*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%色がでた状態の事。*/
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;	/*透明度。100%色がでた状態の事。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {text-decoration: none;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 10em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 10em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

/*ブロック全体の設定*/
#rev dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#rev dt {
    display: inline-block; /* dt が改行しないようにする */
    white-space: nowrap; /* 日付の折り返しを防ぐ */
    margin-right: 10px; /* dd との間隔を調整 */
}

/*記事設定*/
#rev dd {
    flex-grow: 1; /* dd を残りのスペースに広げる */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-list {
    display: block; /* <dl> のデフォルト動作を維持 */
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.right-align {
    white-space: nowrap; /* 改行を防ぐ */
}
/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*質問と答えのボックス全体を囲むブロック*/
.faq {
	padding: 0 20px 10px;	/*上、左右、下へのボックス内余白*/
}
/*質問*/
.faq dt {
	font-weight: bold;	/*太字にする設定*/
	color: #e06565;		/*文字色*/
}
/*回答*/
.faq dd {
	padding-bottom: 10px;	/*下に空けるスペース*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;		/*文字色*/
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}
/*labelタグ*/
.ta1 label {
	display: inline-block;
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td label {
	float: left;
	display: inline-block;
	margin-right: 10px;
}
.ta1 td .specialbox img {
	vertical-align: middle;
}
.ta1 td .specialtext {
	float: left;
	width: 45%;
}


/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta2設定*/
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;		/*文字色*/
}
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta2の左側ボックス*/
.ta2 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}
/*labelタグ*/
.ta2 label {
	display: inline-block;
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta2 td label {
	float: left;
	display: inline-block;
	margin-right: 10px;
}
.ta2 td .specialbox img {
	vertical-align: middle;
}
.ta2 td .specialtext {
	float: left;
	width: 45%;
}

design01 {
 text-align: center;
 border-collapse: collapse;
 border-spacing: 0;
 word-wrap: break-word;
 table-layout: fixed;
}
.design01 th {
 padding: 10px;
 background: #e9faf9;
 border: solid 1px #778ca3;
}
.design01 th.width25 {
  width: 25%;
 }

.design01 th.width75 {
  width: 75%;
 }

.design01 th.width10 {
  width: 10%;
 }

.design01 th.width15 {
  width: 15%;
 }

.design01 th.width60 {
  width: 60%;
 }

.design01 th.width25 {
  width: 25%;
 }

.design01 td.width25 {
  width: 25%;
  background-color: #e9faf9;
 }

.design01 td.width75 {
  width: 75%;
 }


.design01 td {
 width: 2000px;
 padding: 10px;
 border: solid 1px #778ca3;
}

.design01 td.tdcol {
 background-color: #e9faf9;
}

.design01 td.tdcol2 {
 background-color: #e9faf9;
 text-align: center;	/*文字をセンタリング*/
}

.design01 td.tdcol3 {
 text-align: center;	/*文字をセンタリング*/
}

.design02 {
 text-align: left;
 border-collapse: collapse;
 border-spacing: 0;
 word-wrap: break-word;
 table-layout: fixed;
 margin-left: 2em;
}
.design02 th {
 padding: 10px;
 background: #e9faf9;
 border: solid 1px #778ca3;
}
.design02 th.width25 {
  width: 25%;
 }
.design02 th.width75 {
  width: 75%;
 }
.design02 th.width15 {
  width: 15%;
 }
.design02 th.width60 {
  width: 60%;
 }
.design02 th.width25 {
  width: 25%;
 }
.design02 td {
 width: 2000px;
 border: solid 1px #778ca3;
 padding-left: 0.5em;
}
.design02 td.tdcol {
 background-color: #e9faf9;
}
.design02 td.tdcol2 {
 background-color: #e9faf9;
 text-align: center;	/*文字をセンタリング*/
}
.design02 td.tdcol3 {
 text-align: center;	/*文字をセンタリング*/
}

.design03 {
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
  word-wrap: break-word;
  table-layout: fixed; /* テーブル幅を固定レイアウトに */
}

.design03 td {
  border: solid 1px #778ca3;
  padding: 10px;
  word-wrap: break-word; /* 長いテキストを折り返す */
  text-align: left; /* デフォルトを左揃え */
}

.design03 td:nth-child(1) { width: 10%; text-align: center; } /* 日付 */
.design03 td:nth-child(2) { width: 40%; } /* 花火名 */
.design03 td:nth-child(3) { width: 10%; text-align: center; } /* 時間 */
.design03 td:nth-child(4) { width: 10%; text-align: center; } /* URL */
.design03 td:nth-child(5) { width: 15%; } /* 場所 */
.design03 td:nth-child(6) { width: 15%; } /* メモ */

.design03 td.tdcol {
  background-color: #e9faf9;
}

.design03 td.tdcol3 {
  text-align: center;
}

.design04 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
  border: 1px solid #e6d8d8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin: 0 0 24px;
}

.design04 th,
.design04 td {
  border: 1px solid #d9caca;
  padding: 16px 14px;
  word-break: break-word;
  vertical-align: middle;
}

.design04 th {
  background: #f6e2e2;
  color: #444;
  font-weight: bold;
  text-align: center;
}

.design04 td {
  background: #fff;
  color: #333;
}

.design04 td.tdcol,
.design04 td.tdcol2 {
  background: #fcf7f7;
}

.design04 td.tdcol2,
.design04 td.tdcol3 {
  text-align: center;
}

.design04 .update-time {
  font-size: 1.05em;
  font-weight: bold;
  line-height: 1.7;
  color: #333;
}

.design04 .update-note {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3e1e1;
  color: #a14d4d;
  font-size: 0.92em;
  font-weight: bold;
  line-height: 1.4;
}

.design04 .update-order {
  font-weight: bold;
  font-size: 1.05em;
}

@media screen and (max-width: 600px) {
  .design04 th,
  .design04 td {
    padding: 12px 10px;
  }

  .design04 .update-time {
    font-size: 0.95em;
    line-height: 1.6;
  }

  .design04 .update-note {
    font-size: 0.85em;
    padding: 3px 8px;
  }
}

/* 個別画面下部　更新履歴テーブル */
.update-history-table {
  table-layout: fixed;
  width: 100%;
}

.update-history-table th,
.update-history-table td {
  vertical-align: top;
}

.update-history-table td:nth-child(2),
.update-history-table td:nth-child(3),
.update-history-table th:nth-child(2),
.update-history-table th:nth-child(3) {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.update-history-table time {
  display: inline-block;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .update-history-table th,
  .update-history-table td {
    font-size: 13px;
    padding: 8px 6px;
  }

  .update-history-table th.width15,
  .update-history-table td.tdcol2 {
    width: 56px;
    min-width: 56px;
    white-space: nowrap;
    text-align: center;
  }

  .update-history-table td.tdcol3 {
    line-height: 1.6;
  }
}

@media screen and (max-width: 480px) {
  .update-history-table th,
  .update-history-table td {
    font-size: 12px;
    padding: 7px 5px;
  }

  .update-history-table th.width15,
  .update-history-table td.tdcol2 {
    width: 44px;
    min-width: 44px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .update-history-table td:nth-child(2) {
    width: 38%;
  }

  .update-history-table td:nth-child(3) {
    width: auto;
  }

  .update-history-table time {
    line-height: 1.5;
  }
}

.button-row {
  display: flex;
  gap: 20px; /* ボタン間の余白 */
  justify-content: center;
  flex-wrap: wrap; /* 狭い画面で縦並びに自動切り替え */
}

.surveyf_dblbtn {
  flex: 1;
  max-width: 300px;
}


.surveyf {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.surveyt {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.surveyt th, .surveyt  td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.surveyt th {
    background: #0073e6;
    color: white;
    font-weight: bold;
}

.surveyt th.width10 {
  width: 10%;
 }

.surveyt th.width15 {
  width: 15%;
 }

.surveyt td.tdcolLeft {
    text-align: left;
 }


.surveyt tr:nth-child(even) {
    background: #f2f2f2;
}

.surveyt tr:hover {
    background: #d0ebff;
}

/* ドロップダウン全体のスタイル */
.surveys {
    width: 150px; /* 適宜調整 */
    text-align: center;
    text-align-last: center; /* 選択後の値をセンタリング */
    display: block;
    margin: 20px auto; /* 中央揃え */
    padding: 5px;
    font-size: 16px;
}

/* ドロップダウンリスト内の選択肢をセンタリング */
.surveys option {
    text-align: center;
}

.surveyi {
    width: 100%;
    height: 50px !important;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #0073e6 !important;
    color: white;
    font-size: 18px;
    cursor: pointer;
    appearance: none;           /* Safariのボタン装飾をリセット */
    transition: background 0.3s ease;
}

.surveyi:hover {
    background: #005bb5;
}

.surveyi_dblbtn {
  background: #2d7df7 !important;
  color: #fff !important;
  height: 50px !important;
  width: 100% !important;
  font-size: 16px !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.surveyi_dblbtn:hover {
    background: #005bb5;
}


/*ブロック内の見出し(h5)*/
h5g {
	color: #2e8b57;		/*緑*/
}
h5b {
	color: #000080;		/*青*/
}
h5gr {
	color: #A9A9A9;		/*灰*/
}
h5bk {
	color: #000000;		/*黒（標準色）*/
}


#main input[type="radio"].rad1 {
 	-webkit-appearance: auto;
}

#main input[type="checkbox"].dispStop {
 	-webkit-appearance: auto;
}

.actTbl table ,.actTbl td,.actTbl th {
	border: 1px solid #595959;
	border-collapse: collapse;
}
.actTbl td,.actTbl th {
	padding: 3px;
	width: 400px;
	height: 50px;
}
.actTbl th {
	background: #f0e6cc;
}

.actTbl th.width10 {
    width: 10%;
}

.actTbl th.width20 {
    width: 20%;
}

.actTbl th.width30 {
    width: 30%;
}

.actTbl th.width40 {
    width: 40%;
}


.actTbl.even {
	background: #fbf8f0;
}
.actTbl.odd {
	background: #fefcf9;
}
/*btn（inputタグ用）
---------------------------------------------------------------------------*/
#main input[type="submit"].btn,
#main input[type="button"].btn,
#main input[type="reset"].btn {
 	-webkit-appearance: none;
  	border-radius: 0;
  	padding: 2px 5px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 2px;		/*角丸のサイズ*/
	background: #b67560;		/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	width: 80px;		/*幅*/
	height: 22px;		/*幅*/
}
/*マウスオン時の設定*/
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #e59f85;		/*背景色*/
	font-size: 12px;	/*文字サイズ*/
}

input:matches([type="button"], [type="submit"], [type="reset"]), input[type="file"]::-webkit-file-upload-button, button {
  	padding: 2px 5px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 2px;		/*角丸のサイズ*/
	font-size: 12px;	/*文字サイズ*/
}

/*btn（inputタグ用）
---------------------------------------------------------------------------*/
#main input[type="submit"].btn2,
#main input[type="button"].btn2,
#main input[type="reset"].btn2 {
 	-webkit-appearance: none;
  	border-radius: 0;
  	padding: 2px 5px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 2px;		/*角丸のサイズ*/
	background: #2962c4;		/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	width: 30%;		/*幅*/
	height: 30px;		/*幅*/
	margin-bottom: 10px;
}
/*マウスオン時の設定*/
#main input[type="submit"].btn2:hover,
#main input[type="button"].btn2:hover,
#main input[type="reset"].btn2:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #e59f85;		/*背景色*/
	font-size: 12px;	/*文字サイズ*/
}


/*btn（inputタグ用）
---------------------------------------------------------------------------*/
#main input[type="submit"].btn2gray,
#main input[type="button"].btn2gray,
#main input[type="reset"].btn2gray {
 	-webkit-appearance: none;
  	border-radius: 0;
  	padding: 2px 5px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 2px;		/*角丸のサイズ*/
	background: #666666;		/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	width: 30%;		/*幅*/
	height: 30px;		/*幅*/
	margin-bottom: 10px;
}
/*マウスオン時の設定*/
#main input[type="submit"].btn2gray:hover,
#main input[type="button"].btn2gray:hover,
#main input[type="reset"].btn2gray:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #e59f85;		/*背景色*/
	font-size: 12px;	/*文字サイズ*/
}

/*btn（inputタグ用）
---------------------------------------------------------------------------*/
#main input[type="submit"].btn3,
#main input[type="button"].btn3,
#main input[type="reset"].btn3 {
 	-webkit-appearance: none;
  	border-radius: 0;
  	padding: 2px 5px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 2px;		/*角丸のサイズ*/
	background: #2962c4;		/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	width: 20%;		/*幅*/
	height: 30px;		/*幅*/
	margin-bottom: 10px;
}
/*マウスオン時の設定*/
#main input[type="submit"].btn3:hover,
#main input[type="button"].btn3:hover,
#main input[type="reset"].btn3:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #e59f85;		/*背景色*/
	font-size: 12px;	/*文字サイズ*/
}

#main input[type="submit"].inbtn7,
#main input[type="button"].inbtn7,
#main input[type="reset"].inbtn7 {
 	-webkit-appearance: none;
  	border-radius: 0;
  	padding: 2px 5px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 2px;		/*角丸のサイズ*/
	background: #70f785;		/*背景色*/
	background: linear-gradient(#e29399, #e29399);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;	/*角丸のサイズ*/
	font-size: 16px;	/*文字サイズ*/
	width: 20%;		/*幅*/
	height: 30px;		/*幅*/
}
/*マウスオン時の設定*/
#main input[type="submit"].inbtn7:hover,
#main input[type="button"].inbtn7:hover,
#main input[type="reset"].inbtn7:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

#main input[type="submit"].inbtn7glay,
#main input[type="button"].inbtn7glay,
#main input[type="reset"].inbtn7glay {
 	-webkit-appearance: none;
  	border-radius: 0;
  	padding: 2px 5px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 2px;		/*角丸のサイズ*/
	background: #70f785;		/*背景色*/
	background: linear-gradient(#c0c5c2, #7d7d7d);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;	/*角丸のサイズ*/
	font-size: 16px;	/*文字サイズ*/
	width: 20%;		/*幅*/
	height: 30px;		/*幅*/
}
/*マウスオン時の設定*/
#main input[type="submit"].inbtn7glay:hover,
#main input[type="button"].inbtn7glay:hover,
#main input[type="reset"].inbtn7glay:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

#main input[type="submit"].inbtn8,
#main input[type="button"].inbtn8,
#main input[type="reset"].inbtn8 {
 	-webkit-appearance: none;
  	border-radius: 0;
  	padding: 2px 5px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 2px;		/*角丸のサイズ*/
	background: #70f785;		/*背景色*/
	background: linear-gradient(#e29399, #e29399);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;	/*角丸のサイズ*/
	font-size: 16px;	/*文字サイズ*/
	width: 10%;		/*幅*/
	height: 30px;		/*幅*/
}
/*マウスオン時の設定*/
#main input[type="submit"].inbtn8:hover,
#main input[type="button"].inbtn8:hover,
#main input[type="reset"].inbtn8:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

#main input[type="submit"].inbtn8glay,
#main input[type="button"].inbtn8glay,
#main input[type="reset"].inbtn8glay {
 	-webkit-appearance: none;
  	border-radius: 0;
  	padding: 2px 5px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 2px;		/*角丸のサイズ*/
	background: #70f785;		/*背景色*/
	background: linear-gradient(#c0c5c2, #7d7d7d);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;	/*角丸のサイズ*/
	font-size: 16px;	/*文字サイズ*/
	width: 10%;		/*幅*/
	height: 30px;		/*幅*/
}
/*マウスオン時の設定*/
#main input[type="submit"].inbtn8glay:hover,
#main input[type="button"].inbtn8glay:hover,
#main input[type="reset"].inbtn8glay:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/*btn（赤い色の大きなボタン）
---------------------------------------------------------------------------*/
a.btn {
	display: block;text-decoration: none;
	background: #d90000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#d90000, #a70000);	/*グラデーション*/
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、ぼかし幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
	border: 1px solid #a70000;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
a:hover.btn {
	box-shadow: none;
	background: #fff;	/*背景色*/
	color: #a70000;		/*文字色*/
}

/*btn2（青い色のボタン）
---------------------------------------------------------------------------*/
a.btn2 {
	display: inline-block;text-decoration: none;
	background: #2e8bdb;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#51a9f3, #2e8bdb);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 2px;	/*角丸のサイズ*/
	font-size: 12px;	/*文字サイズ*/
	width: 60px;	/*文字サイズ*/
}
/*マウスオン時*/
a.btn2:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/*btn3（みどり色のボタン）
---------------------------------------------------------------------------*/
a.btn3 {
	display: inline-block;text-decoration: none;
	background: #70f785;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#70f785, #088a38);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 2px;	/*角丸のサイズ*/
	font-size: 12px;	/*文字サイズ*/
}
/*マウスオン時*/
a.btn3:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/*btn4（みどり色のボタン）
---------------------------------------------------------------------------*/
button.btn4 {
	display: inline-block;text-decoration: none;
	background: #70f785;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#70f785, #088a38);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 2px;	/*角丸のサイズ*/
	font-size: 12px;	/*文字サイズ*/
}
/*マウスオン時*/
button.btn4:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/*btn5（青色のリンクボタン）
---------------------------------------------------------------------------*/
a.btn5 {
	display: inline-block;text-decoration: none;
	background: #70f785;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#a0d8ef, #0068b7);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 2px;	/*角丸のサイズ*/
	font-size: 14px;	/*文字サイズ*/
	display:block;
}
/*マウスオン時*/
a.btn5:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/*btn6（有料観覧席のリンクボタン）
---------------------------------------------------------------------------*/
a.btn6 {
	display: inline-block;text-decoration: none;
	background: #70f785;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#e6afcf, #e4007f);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;	/*角丸のサイズ*/
	font-size: 16px;	/*文字サイズ*/
	display:block;
}
/*マウスオン時*/
a.btn6:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/*btn6（有料観覧席のリンクボタン）
---------------------------------------------------------------------------*/
a.btn6oth {
	display: inline-block;text-decoration: none;
	background: #70f785;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff8dc, #f0e68c);	/*グラデーション*/
	color: #000;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 2px;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;	/*角丸のサイズ*/
	font-size: 14px;	/*文字サイズ*/
	display:block;
}
/*マウスオン時*/
a.btn6oth:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/*btn7（年月タイトルのリンクボタン）
---------------------------------------------------------------------------*/
a.btn7 {
	display: inline-block;text-decoration: none;
	background: #70f785;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#e29399, #e29399);	/*グラデーション*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;	/*角丸のサイズ*/
	font-size: 16px;	/*文字サイズ*/
}
/*マウスオン時*/
a.btn7:hover {
	opacity: 0.7;	/*色が70%ついた状態*/
}

/* パンくずリストの基本スタイル */
.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.breadcrumb li {
  margin-right: 5px;
}
.breadcrumb li a {
  text-decoration: none;
  color: #0073e6;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb li:last-child span {
  font-weight: bold;
  color: #333;
}

/* 定期花火ナビの基本スタイル */
.cycleFireworks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* 各要素間に適切なスペースを確保 */
}

.cycleFireworks li {
    display: inline-block;
    margin-right: 5px;
    white-space: nowrap;
}

.cycleFireworks li:not(:last-child)::after {
    content: "、";
}

.cycleFireworks li a {
    text-decoration: none;
    color: #0073e6;
}

.cycleFireworks li a:hover {
    text-decoration: underline;
}

.canceled {
    color: red;
    font-weight: bold;
    margin-left: 4px;
}


/* 次開催花火ナビの基本スタイル */
.nextFireworks {
  display: flex;
  flex-wrap: wrap; /* 必要に応じて折り返し可能にする */
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.nextFireworks li {
  margin-right: 5px;
  white-space: nowrap; /* 子要素が折り返さないように設定 */
}
.nextFireworks li a {
  text-decoration: none;
  color: #0073e6;
  white-space: nowrap; /* 子要素が折り返さないように設定 */
}
.nextFireworks li a:hover {
  text-decoration: underline;
}
.nextFireworks li:last-child span {
  font-weight: bold;
  color: #333;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	bottom: 50px;		/*下から50pxの場所に配置*/
	right: 3%;			/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*NEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*UPアイコン
---------------------------------------------------------------------------*/
.upicon {
	background: #0072ff;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}
.list-compact .newicon,.list-compact .upicon,.list-sub .newicon,.list-sub .upicon {margin: 0;}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 45px;
}
ol {
	padding: 0 20px 20px 47px;
}

/*その他
---------------------------------------------------------------------------*/
.thumbnail {width: 80px;margin-bottom: 5px;}
.look {background: #eee;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb5 {margin-bottom: 5px !important;}
.mb2 {margin-bottom: 2px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #e06565 !important;}
.color2, .color2 a {color: #999 !important;}
.color3, .color3 a {color: #04011c!important;}
.red, .red a {color: #ff0000 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.mini2 {font-size: 16px;}
.mini3 {font-size: 17px;}
.sh {display: none;}
.logo_sh {display: none;}
.ofx {overflow-x: hidden;}
.panorama-img {width: 600px !important;height: 400px !important;}



/*画面幅1301px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1301px){

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: 1301px;	/*サイトの幅。この指定がないと上部メニューが一瞬段落ちする場合があります。*/
}

/*メインメニューとドロップダウンメニューの設定変更。
メニュー数が6個なので、1301÷7=185pxになります。
---------------------------------------------------------------------------*/
#menubar li, #menubar ul.ddmenu {
	width: 185px;
}

}



/*画面幅1300px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1300px){

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	margin: 0 1%;	/*上下、左右へのコンテンツの外側へ空けるスペース*/
}

}



/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*ログイン（ヘッダー右側のログイン）
---------------------------------------------------------------------------*/
header .login a {
	float: left;			/*ロゴの右に来るように再指定*/
	margin-left: 20px;		/*ロゴとの間にとるスペース*/
	background-image: none;	/*ブラウザ幅が狭くなるので、鍵マークを消す*/
	padding: 5px 30px;		/*上下、左右へのボタン内の余白*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu header,body.is-fixed header {margin-bottom: 0px;}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
  display: block;
  overflow: auto;     /* hidden → auto（長い時にスクロールできる） */
  z-index: 10001;     /* 10だと上に被さる物に負けることがある */
  position: fixed;    /* absolute → fixed（視界内に固定） */
  top: 0;             /* 180px → 0（画面上から表示） */
  left: 0;            /* 追加（固定配置に必要） */
  width: 100%;
  max-height: 100vh;  /* 追加（画面からはみ出さない） */

  animation-name: menu1;
  animation-duration: 0.5S;
  animation-fill-mode: both;
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #e06565;	/*背景色*/
	font-size: 20px;		/*文字サイズ*/
	color: #fff;		/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
    display: block;
    position: fixed;
    top: 100px;
    right: 3%;
    width: 56px;
    height: 56px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    z-index: 10002;
    overflow: hidden;
    padding: 0;
}

#menubar_hdr.close,
  #menubar_hdr.open {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-sizing: border-box;
}

#menubar_hdr.close {
    background: #e06565 url(../images/icon_menu.png) no-repeat center top/56px;
}

#menubar_hdr.open {
    background: #e06565 url(../images/icon_menu.png) no-repeat center bottom/56px;
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 0px 2% 20px;	/*上下、左右へのボックス内の余白*/
}

/*main,sub,side,contents-in
---------------------------------------------------------------------------*/
#main, #sub, #side, #contents-in {
	float: none;
	width: auto;
	overflow: hidden;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side {display: none;}
.sh {display:block;}
.pc {display:none;}
.logo_sh {display:block;}
.logo_pc {display:none;}

 .breadcrumb {
   font-size: 14px; /* フォントサイズを調整 */
   padding: 5px;
 }

 .breadcrumb li {
   margin-right: 5px; /* 項目間隔を調整 */
 }

 .breadcrumb li::after {
   margin-left: 5px; /* 区切りのスペースを縮小 */
 }

 .cycleFireworks {
   font-size: 14px; /* フォントサイズを調整 */
   padding: 5px;
 }

 .cycleFireworks li {
   margin-right: 5px; /* 項目間隔を調整 */
 }

 .cycleFireworks li::after {
   margin-left: 5px; /* 区切りのスペースを縮小 */
 }

 .nextFireworks {
   font-size: 14px; /* フォントサイズを調整 */
   padding: 5px;
 }

 .nextFireworks li {
   margin-right: 5px; /* 項目間隔を調整 */
 }

 .nextFireworks li::after {
   margin-left: 5px; /* 区切りのスペースを縮小 */
 }

}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
}
/*ロゴ画像*/
header #logo {
	float: none;
	margin: 0 auto;
	padding: 8px 0;
	width: 60%;
}

/*ログイン（ヘッダー右側のログイン）
---------------------------------------------------------------------------*/
header .login a {
	float: none;
	margin: 0;
}

/*その他
---------------------------------------------------------------------------*/
.panorama-img {width: 450px !important;height: 300px !important;}

.navigation {
	text-align: center;
  }
  .prev,
  .next {
    margin: 5px 0; /* 上下に余白を追加 */
  }

 .breadcrumb {
   font-size: 14px; /* フォントサイズを調整 */
   padding: 5px;
 }

 .breadcrumb li {
   margin-right: 5px; /* 項目間隔を調整 */
 }

 .breadcrumb li::after {
   margin-left: 5px; /* 区切りのスペースを縮小 */
 }


 .cycleFireworks {
   font-size: 14px; /* フォントサイズを調整 */
   padding: 5px;
 }

 .cycleFireworks li {
   margin-right: 5px; /* 項目間隔を調整 */
 }

 .cycleFireworks li::after {
   margin-left: 5px; /* 区切りのスペースを縮小 */
 }

 .nextFireworks {
   font-size: 14px; /* フォントサイズを調整 */
   padding: 5px;
 }

 .nextFireworks li {
   margin-right: 5px; /* 項目間隔を調整 */
 }

 .nextFireworks li::after {
   margin-left: 5px; /* 区切りのスペースを縮小 */
 }

}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	line-height: 1.5;	/*行間*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 10px;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

/*フッターメニュー
ウィンドウ幅が狭くなって見づらくなるので、１列にレイアウト変更。
---------------------------------------------------------------------------*/
#footermenu ul {
	float: none;
	width: auto;
}

/*こだわりアイコン
---------------------------------------------------------------------------*/
/*アイコン共通*/
.icon {
	font-size: 9px;		/*文字サイズ*/
}

/*一覧ページのボックス内の右上のマーク
（CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1〜option2、と、newアイコン共通*/
.option1,.option2,.new {
	font-size: 9px;		/*文字サイズ*/
	padding: 0 10px;	/*上下、左右へのアイコン内の余白*/
	line-height: 14px;	/*高さ*/
	right: 15px;		/*右から15pxの場所に配置*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;	/*ブロックの下(外側)に空ける余白*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*質問と答えのボックス全体を囲むブロック*/
.faq {
	padding: 0 10px 10px;	/*上、左右、下へのボックス内余白*/
}

/*btn（赤い色の大きなボタン）
---------------------------------------------------------------------------*/
a.btn {
	font-size: 16px;		/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔を標準に戻す*/
}

/*テーブル(ta1)
---------------------------------------------------------------------------*/
/*余白の上書き*/
.ta1 caption,.ta1 th,.ta1 td {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
}

/*テーブル(ta2)
---------------------------------------------------------------------------*/
/*余白の上書き*/
.ta2 caption,.ta2 th,.ta2 td {
	padding: 5px;
}
/*テーブル内の左側*/
.ta2 th {
	width: 100px;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 30px;
}
ol {
	padding: 0 20px 20px 30px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 18px;letter-spacing: normal;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}

.navigation {
    text-align: center;
  }
  .prev,
  .next {
    margin: 5px 0; /* 上下に余白を追加 */
  }

 .breadcrumb {
   font-size: 14px; /* フォントサイズを調整 */
   padding: 5px;
 }

 .breadcrumb li {
   margin-right: 5px; /* 項目間隔を調整 */
 }

 .breadcrumb li::after {
   margin-left: 5px; /* 区切りのスペースを縮小 */
 }

}




#map {
   width: 100%;
   height: 400px;
   background-color: grey;
 }

 * {
   -webkit-appearance: none;
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list3 {
	overflow: hidden;
	width: 26.4%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 0 20px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 2%;	/*ボックス内の余白*/
	border-radius: 3px;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
}
.list3 a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.list3のpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: url(../images/arrow1.png) no-repeat right bottom / 40px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.list3 a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h4（見出し）タグの設定*/
.list3 h4 {
	color: #eb2929;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.list3 p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 6em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list4-container {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.list4 {
	overflow: hidden;
	width: 31.333%;
	float: none;
	margin: 0 1% 20px 1%;
	border: 1px solid #ccc;
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);
	padding: 2%;
	border-radius: 3px;
	display: flex;
	box-sizing: border-box;
}

.list4 a {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	height: 100%;
	box-sizing: border-box;
	text-decoration: none;
	overflow: hidden;
	margin: -2%;
	padding: 2%;
	background: url(../images/arrow1.png) no-repeat right bottom / 40px;
}

/*マウスオン時の設定*/
.list4 a:hover {
	position: relative;
	left: 1px;
	top: 1px;
}

/*h4（見出し）タグの設定*/
.list4 h4 {
	color: #eb2929;
	font-size: 120%;
	line-height: 1.4;
	min-height: 4.2em;
	margin: 0 0 0.4em 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/*p（段落）タグの設定*/
.list4 p {
	padding: 0 !important;
	line-height: 1.5;
	font-size: 90%;
	text-align: center;
	color: #333;
	height: auto;
}

.list4 .event-date {
	padding: 0 !important;
	margin: 0 0 8px 0;
	line-height: 1.2;
	font-size: 90%;
	text-align: center;
	color: #333;
	height: auto;
	min-height: 2.4em;
}

.list4 .event-place {
	padding: 0 !important;
	margin: 0;
	line-height: 1.4;
	font-size: 90%;
	text-align: center;
	color: #333;
	height: auto;
	min-height: 1.4em;
}

.list4 .event-rank {
	margin: auto 0 4px 0;
	padding: 0 !important;
	text-align: center;
	line-height: 1;
	font-size: 90%;
	color: #666;
	min-height: 1.1em;
}

.list4 .stars {
	display: inline-block;
	font-size: 105%;
	letter-spacing: 1px;
	font-weight: bold;
	color: #f5a623;
	line-height: 1;
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list4half {
	overflow: hidden;
	width: 26.4%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 0 20px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 2%;	/*ボックス内の余白*/
	border-radius: 3px;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
}
.list4half a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.list3のpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: url(../images/arrow1.png) no-repeat right bottom / 40px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.list4half a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h4（見出し）タグの設定*/
.list4half h4 {
	color: #eb2929;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	height: 4em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.list4half p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	text-align: center;	/*文字をセンタリング*/
	color: #333;		/*文字色*/
	height: 2em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
}


/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.listFull {
	overflow: hidden;
	width: 91.5%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 0 20px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 2%;	/*ボックス内の余白*/
	border-radius: 3px;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
}
.listFull a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.list3のpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: url(../images/arrow1.png) no-repeat right bottom / 40px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.listFull a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h4（見出し）タグの設定*/
.listFull h4 {
	color: #ff9999;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.listFull p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 6em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.listFullHalf {
	overflow: hidden;
	width: 91.5%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 0 20px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 2%;	/*ボックス内の余白*/
	border-radius: 3px;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
}
.listFullHalf a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.list3のpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: url(../images/arrow1.png) no-repeat right bottom / 40px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.listFullHalf a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h4（見出し）タグの設定*/
.listFullHalf h4 {
	color: #ff9999;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.listFullHalf p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 2em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}


.pickup-list {
  margin: 16px 0
}

.pickup-list .pickup-title {
  padding: .5em;
  color: #fc6;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.pickup-list .pickup {
  margin-bottom: 2px;
  line-height: 1.4
}

.pickup-list .pickup b.warning {
  font-size: 1.5em
}

.pickup-list .pickup-body a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  padding: 8px;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  overflow: hidden;
  background-color: #FFF
}

.pickup-list .pickup p {
  margin: 8px 0
}

.pickup-list .pickup h3, .pickup-list .pickup h4 {
  padding-left: 0;
  border: none;
  margin: 4px 0
}

.pickup-list .pickup .thumb {
  float: left;
  width: 30%;
  margin: 4px 8px 8px 0;
  text-align: center
}

.pickup-list .pickup .details {
  margin-left: 33%
}

.card .pickup .thumb img {
  max-height: 80px
}

.boxCard li {
	text-indent: 0em;
	padding-left: 2em;
}

.enkadiv{
	width:100%;
}

.popup-overlay{
  /*Hides pop-up when there is no "active" class*/
  visibility:hidden;
  position:absolute;
  background:#ffffff;
  border:3px solid #666666;
  width:30%;
  left:15%;
}
.popup-overlay.active{
  /*displays pop-up when "active" class is present*/
  visibility:visible;
  text-align:left;
  padding-left: 2em;

}

.popup-content {
  /*Hides pop-up content when there is no "active" class */
 visibility:hidden;
}

.popup-content.active {
  /*Shows pop-up content when "active" class is present */
  visibility:visible;
}

button.open,.close {
        display: inline-block;text-decoration: none;
        background: #70f785;    /*背景色（古いブラウザ用）*/
        background: linear-gradient(#70f785, #088a38);  /*グラデーション*/
        color: #fff;            /*文字色*/
        text-align: center;     /*文字をセンタリング*/
        padding: 2px 10px;      /*上下、左右へのボタン内の余白*/
        border-radius: 2px;     /*角丸のサイズ*/
        font-size: 12px;        /*文字サイズ*/
}

button.open:hover{
        opacity: 0.7;   /*色が70%ついた状態*/
}

button.close:hover{
        opacity: 0.7;   /*色が70%ついた状態*/
}

.popup01 {
  z-index: 1000;
  display: none;
  height: 100vh;
  width: 100%;
  background: black;
  opacity: 1.0;
  position: fixed;
  top: 0;
  left: 0;
}
.content01 {
  overflow:auto;
  background: #fff;
  padding: 30px;
  width: 60%;
}
.show01 {
  display: flex;
  justify-content: center;
}

.share-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px;
}

.share-button li {
    display: block;
    width: 220px;
    height: 40px;
    border-radius: 5px;
    color: #fff;
    font-size: 22px;
    transition: .3s all;
}

.share-button li:hover {
    opacity: .6;
}

.share-button li a {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	color: #fff;		/*文字色*/
}

.share-button span {
    display: block;
    font-size: 12px;
    line-height: 1;
}

.share-button li.x {
    background-color: #000;
}

.share-button li.fb {
    background-color: #1877f2;
}

.share-button li.line {
    background-color: #00B900;
}

.share-button li.pocket {
    background-color: #d3505a;
}



.share-button-short {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.share-button-short li {
    width: 50px;
    height: 50px;
    display: block;
    color: #fff;
    font-size: 22px;
    transition: .3s all;
}
.share-button-short li:hover {
    opacity: .6;
}
.share-button-short li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.share-button-short li.x {
    background-color: #000;
}
.share-button-short li.fb {
    background-color: #1877f2;
}
.share-button-short li.line {
    background-color: #00B900;
}
.share-button-short li.pocket {
    background-color: #d3505a;
}

/* ナビゲーション全体 */
.navigation {
  display: flex;
  justify-content: space-between; /* 前日を左、翌日を右に配置 */
  align-items: center; /* 縦方向の中央揃え */
  background-color: #e29399; /* 背景色 */
  padding: 5px 20px; /* 内側の余白 */
  border-radius: 5px; /* 角を丸くする */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */
}

/* 共通のリンクスタイル */
.nav-link {
  text-decoration: none; /* 下線を削除 */
  color: #ffffff; /* 文字色を白に */
  font-size: 16px;
  font-weight: bold;
  padding: 8px 12px; /* ボタン風の余白 */
  border: 1px solid transparent; /* 初期状態でボーダーなし */
  border-radius: 5px; /* ボタンの角を丸くする */
  background-color: #d86c73; /* ボタン背景色 */
  transition: all 0.3s ease; /* ホバー時のスムーズな効果 */
}

/* ホバー時のリンクスタイル */
.nav-link:hover {
  background-color: #c3545d; /* ホバー時の濃い背景色 */
  border: 1px solid #c3545d; /* ボーダーも同色に */
  color: #ffffff; /* ホバー時も文字色は白 */
}

/* 無効化された前日・翌日のラベル */
.nav-label {
  display: inline-block;
  color: #7b4a4f; /* 無効化されたリンクの文字色（薄い赤系） */
  font-size: 16px;
  font-weight: bold;
  padding: 8px 12px; /* リンクと同じ余白 */
  background-color: #f5d0d3; /* 無効化時の背景色（薄いピンク） */
  border: 1px solid #e4a3a8; /* ボーダーも薄い赤系に */
  border-radius: 5px; /* 角を丸くする */
  cursor: default; /* カーソルを無効状態に */
  text-align: center; /* テキストを中央揃え */
}

/* 左側の前日リンクまたはラベル */
.prev {
  margin-right: auto; /* 左寄せ */
  text-align: left;
}

/* 右側の翌日リンクまたはラベル */
.next {
  margin-left: auto; /* 右寄せ */
  text-align: right;
}

/* 中央またはラベル */
.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block; /* または flex 子要素に応じて inline-block でもOK */
}

.small-font {
    font-size: 0.8em; /* 必要に応じて調整 */
}

/* ボタンのコンテナ */
.button-container {
    display: flex;
    justify-content: center; /* ボタンを中央揃え */
    gap: 15px; /* ボタン間のスペース */
    margin-top: 20px;
}

/* ボタンのデザイン */
.button-container input[type="submit"],
.button-container button {
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    background: #0073e6;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    min-width: 150px; /* 幅を統一 */
    text-align: center;
}

.button-container input[type="submit"]:hover,
.button-container button:hover {
    background: #005bb5;
}

/* スマホ向けレイアウト調整 */
@media screen and (max-width: 767px) {
    .button-container {
        flex-direction: column; /* スマホでは縦並び */
    }

    .button-container input[type="submit"],
    .button-container button {
        width: 100%; /* スマホではボタンを横幅いっぱいに */
    }
}

.review-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

.review-card:hover {
    transform: scale(1.02);
}

.review-user {
    font-weight: bold;
    color: #444;
}

.like-button {
    background: #ff4757;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.like-button:hover {
    background: #e84118;
}

.like-count {
    font-weight: bold;
    color: #ff4757;
    margin-right: 5px;
}

/* フォーム全体を囲むコンテナ */
.review-container {
    font-family: 'Noto Sans JP', sans-serif;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
    margin: 30px auto;
}

.review-container h2 {
    color: #333;
    margin-bottom: 15px;
}

/* 口コミフォーム専用のクラス */
.review-form .review-group {
    text-align: left;
    margin-bottom: 15px;
}

.review-form label {
    font-weight: bold;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: border 0.3s ease-in-out;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
}

.review-form textarea {
    resize: none;
    height: 100px;
}

/* 投稿ボタン */
.review-form .review-submit-btn {
    background: #007BFF;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.review-form .review-submit-btn:hover {
    background: #0056b3;
}


/* ユーザー名 & 投稿日を横並び */
.review-header {
    display: flex;
    justify-content: space-between; /* 左右配置 */
    align-items: center;
    margin-bottom: 8px;
}

/* ユーザー名 */
.review-user {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* 投稿日時 */
.review-date {
    font-size: 12px;
    color: #777;
    margin: 0;
    white-space: nowrap; /* 折り返し防止 */
}
/* レビュー本文 */
.review-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

/* ボタンエリア */
.review-actions {
    display: flex;
    justify-content: flex-end;  /* 右寄せ */
    gap: 6px;
}

/* いいね・あんまりボタン */
.like-button {
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 16px;
    padding: 6px 12px;  /* コンパクトに */
    font-size: 14px;  /* フォントサイズを小さく */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    min-width: 80px;
}



/* 共感したボタン (青) */
.empathize {
    background: #3498db;
    color: white;
}

.empathize:hover {
    background: #2980b9;
}

/* なるほどボタン (オレンジ) */
.understand {
    background: #f39c12;
    color: white;
}

.understand:hover {
    background: #e67e22;
}

/* うーんボタン (グレー) */
.unsure {
    background: #95a5a6;
    color: white;
}

.unsure:hover {
    background: #7f8c8d;
}
/* 数字部分 */
.like-button span {
    font-size: 13px;  /* 数字を小さく */
    font-weight: normal;
    color: white;
}

.small-text {
    font-size: 0.8em; /* 通常より小さく */
    color: #666; /* 文字色を少し薄く（任意） */
}

/* ポップアップ全体（背景） */
.popupw {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* スクロールを有効化 */
}

/* ポップアップの内容 */
.popupw-content {
  background: #fff;
  padding: 20px;
  max-width: 400px;
  width: 90%;
  max-height: 80vh; /* 縦の最大高さを設定 */
  overflow-y: auto; /* 内容が長い場合スクロール */
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* 各リンクのデザイン */
.popupw-content p {
  margin: 10px 0;
}

.popupw-content a {
  display: block;
  font-size: 18px;
  color: #d9534f;
  text-decoration: none;
  font-weight: bold;
}

.popupw-content .title {
  font-size: 22px;
  color: #333;
}

/* クローズボタン（常に見えるように固定） */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  background: white;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.hanabi-section {
	margin-bottom: 40px;
}

.hanabi-month {
	background-color: #d06c66;
	color: #ffffff;
	padding: 10px 16px;
	font-size: 1.2em;
	border-left: 5px solid #a5443f;
}

.hanabi-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.hanabi-item {
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 16px;
	margin: 20px 0;
	background-color: #fdfdfd;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hanabi-header {
	font-size: 1.05em;
	margin-bottom: 10px;
}

.hanabi-date {
	font-weight: bold;
	margin-right: 10px;
	color: #333333;
}

.hanabi-title {
	font-weight: bold;
	color: #222222;
}

.hanabi-details {
	padding-left: 20px; /* インデント */
}

.hanabi-details p {
	margin: 6px 0;
	line-height: 1.6;
	font-size: 1em;
}

.hanabi-details a {
	color: #0066cc;
	text-decoration: underline;
}

.hanabi-details a:hover {
	text-decoration: none;
}

.hanabi-content {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.hanabi-text {
	flex: 1;
}

.hanabi-image {
	flex-shrink: 0;
	width: 160px;
	height: 160px;
	overflow: hidden;
	border-radius: 8px;
	background-color: #eee;
	box-shadow: none;
	filter: none;
	background: none;
}

.hanabi-image a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.hanabi-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

@media ( max-width : 600px) {
	.hanabi-content {
		flex-direction: column;
	}
	.hanabi-image {
		width: 100%;
		height: auto;
		aspect-ratio: 1/1; /* 正方形を保つ */
	}
	.hanabi-image img {
		width: 100%;
		height: 100%;
	}
}

.prefmenu-block {
  margin-bottom: 20px;
  border: 1px solid #999;
  max-width: 400px;
}

.prefmenu-block h2 {
  background-color: #999077;
  color: white;
  margin: 0;
  padding: 8px;
  font-size: 16px;
}

.prefmenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 10px;
  list-style: none;
  margin: 0;
  gap: 10px;
}

.prefmenu li {
  width: calc(50% - 10px); /* 常に2列 */
  border: 1px solid #ccc;
  box-sizing: border-box;
  text-align: center;
}

.prefmenu li:only-child {
  width: 100%; /* 1件のときだけ中央に広げる */
}

.prefmenu a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 8px 4px;
}

/* =========================================================
   天気予報バッジ統一デザイン
   天気・気温・風速・風向き・降水確率を同じ形にそろえる
========================================================= */

.weather-badge,
.weather-display,
.circle-display,
.weather-probability,
.wind-direction {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	height: 36px;
	padding: 0 12px;
	border-radius: 9999px;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.2;
	color: #111;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
	white-space: nowrap;
}

.weather-badge span,
.weather-display span,
.circle-display span,
.weather-probability span,
.wind-direction span {
	display: inline-block;
	color: #111 !important;
	line-height: 1.2;
	white-space: nowrap;
}

/* スマホ時は少しだけ詰める */
@media screen and (max-width: 600px) {
	.weather-badge,
	.weather-display,
	.circle-display,
	.weather-probability,
	.wind-direction {
		min-width: 68px;
		height: 34px;
		padding: 0 10px;
		font-size: 13px;
	}
}

/* -------------------------
   降水確率・風速の色
------------------------- */
.probability-0 {
	background-color: #8bc34a;
}

.probability-10 {
	background-color: #d4b17e;
}

.probability-30 {
	background-color: #ffa726;
}

.probability-50 {
	background-color: #ff7043;
}

.probability-70 {
	background-color: #ef5350;
}

/* -------------------------
   気温の色
------------------------- */
.temperature-freezing {
	background-color: #00bfff;
}

.temperature-cold {
	background-color: #87cefa;
}

.temperature-comfortable {
	background-color: #32cd32;
}

.temperature-warm {
	background-color: #ffa500;
}

.temperature-hot {
	background-color: #ff4500;
}

/* -------------------------
   天候の色
------------------------- */
.weather-clear {
	background-color: #32cd32;
}

.weather-cloudy {
	background-color: #87ceeb;
}

.weather-thick-cloud {
	background-color: #4682b4;
}

.weather-light-rain {
	background-color: #ffa07a;
}

.weather-heavy-rain {
	background-color: #dc143c;
}

.weather-snow {
	background-color: #add8e6;
}

.weather-fog {
	background-color: #d3d3d3;
}

.weather-mixed {
	background-color: #b0c4de;
}

/* -------------------------
   風向きの色
------------------------- */
.wind-none {
	background-color: #e0e0e0;
	color: #333;
}

.wind-safe {
	background-color: #32cd32;
}

.wind-warning {
	background-color: #ffa500;
}

.wind-danger {
	background-color: #dc143c;
}
/* 天候詳細リンク */
.weather-detail-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 108px;
	height: 36px;
	padding: 0 12px;
	border-radius: 9999px;
	background: #eef5ff;
	border: 1px solid #bfd3ee;
	box-sizing: border-box;
	text-decoration: none !important;
	color: #1f5ea8 !important;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	transition: all 0.2s ease;
}

.weather-detail-link:hover {
	background: #dfeeff;
	border-color: #97b8e3;
	color: #184c8c !important;
	text-decoration: none !important;
	transform: translateY(-1px);
}

.weather-detail-label {
	display: inline-block;
	line-height: 1;
}

.weather-detail-arrow {
	display: inline-block;
	line-height: 1;
	font-size: 16px;
	margin-top: -1px;
}

.weather-detail-empty {
	display: inline-block;
	min-width: 24px;
	text-align: center;
	color: #888;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
}

@media screen and (max-width: 600px) {
	.weather-detail-link {
		min-width: 96px;
		height: 34px;
		padding: 0 10px;
		font-size: 13px;
	}
}

.weather-section {
        display: flex;
        gap: 8px;
        margin-bottom: 5px;
    }

.weather-item {
    padding: 8px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.main-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  max-width: 100%;
}

.main-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.photo-credit {
  font-size: 0.85em;
  color: #666;
  font-style: italic;
  margin-top: 6px;
  text-align: center;
}

.notice-past-events {
  background-color: #fff8dc;
  border-left: 5px solid #ff9800;
  padding: 14px 20px;
  margin: 20px auto;
  border-radius: 6px;
  font-size: 1em;
  color: #333;
  line-height: 1.6;
}

.notice-past-events a {
  color: #0066cc;
  text-decoration: underline;
  margin-right: 10px;
  white-space: nowrap;
}

.notice-past-events strong {
  color: #c0392b;
}

.page-summary {
  background-color: #f9f9f9;      /* わずかにグレーで区切り感を出す */
  border-left: 4px solid #4caf50; /* 落ち着いたグリーンで信頼感 */
  padding: 12px 18px;
  margin: 20px 0;
  border-radius: 4px;
  font-size: 1em;
  line-height: 1.7;
  color: #333;
}

.todays-hanabi-summary {
  background-color: #e8f5e9;            /* 少し濃いめのグリーン系背景 */
  border-left: 5px solid #43a047;       /* 落ち着いた緑で信頼感 */
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 8px;
  font-size: 1.05em;
  line-height: 1.75;
  color: #2c3e50;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.todays-hanabi-summary::before {
  content: "📢 今日の花火情報";
  display: block;
  font-weight: bold;
  color: #1b5e20;
  font-size: 1.15em;
  margin-bottom: 10px;
  padding-left: 4px;
}

@media screen and (max-width:900px){

  /* 繝｡繝九Η繝ｼ譛ｬ菴難ｼ壼ｰ代＠譏弱ｋ縺上�霆ｽ縺� */
  #menubar-s {
    top: 0;
    left: auto;
    right: 0;
    width: 86%;
    max-width: 340px;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: #e58a8a;
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
    border-left: 1px solid rgba(255,255,255,0.32);
    -webkit-overflow-scrolling: touch;
  }

  /* 繧ｰ繝ｫ繝ｼ繝苓ｦ句�縺暦ｼ壼ｸｯ繧定埋縺上＠縺ｦ譁�ｭ励ｒ蟆代＠豼�￥ */
  #menubar-s .menu-group-title {
    padding: 11px 22px 9px;
    font-size: 12px;
    line-height: 1.4;
    font-weight: bold;
    color: rgba(255,255,255,0.96);
    letter-spacing: 0.08em;
    background: rgba(190, 86, 86, 0.55);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }

  /* 蜷�Γ繝九Η繝ｼ陦鯉ｼ夊レ譎ｯ繧帝城℃縺ｫ縺励※蝨ｧ霑ｫ諢溘ｒ荳九￡繧� */
  #menubar-s li a {
    display: block;
    padding: 18px 22px 16px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: normal;
    color: #fff;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.28);
    letter-spacing: 0;
  }

  /* 闍ｱ隱櫁｡ｨ險倥�謗ｧ縺医ａ */
  #menubar-s li a span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.35;
    opacity: 0.90;
    letter-spacing: 0.04em;
  }

  /* hover / tap */
  #menubar-s li a:hover,
  #menubar-s li a:active {
    background: rgba(255,255,255,0.10);
  }

  /* 髢峨§繧九�繧ｿ繝ｳ */
  #menubar_hdr {
    top: 108px;
    right: 14px;
    width: 54px;
    height: 54px;
    border-width: 2px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  }

  #menubar_hdr.close,
  #menubar_hdr.open {
    width: 54px;
    height: 54px;
    background-size: 54px;
  }
}

/* =========================================================
   leftMenu 調整
   ---------------------------------------------------------
   ・左メニューを少しやわらかく見せる
   ・「花火を探す」だけ少し強調
   ・ hover時の反応を追加
========================================================= */

/* 左メニューの各navブロック間隔 */
#sub nav {
	margin-bottom: 28px;
}

/* 見出し全体 */
#sub h2 {
	padding: 12px 14px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0.02em;
	border-radius: 2px 2px 0 0;
}

/* 最初の見出しだけ少し強調 */
#sub nav:first-of-type h2 {
	background: linear-gradient(#a8a287, #938d71);
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* サブメニュー全体 */
#sub .submenu {
	margin-bottom: 0;
	border-top: 1px solid #8c876c;
	background: #fff;
}

/* 各リンク */
#sub .submenu li a {
	position: relative;
	padding: 12px 14px;
	line-height: 1.45;
	font-size: 16px;
	background: #fff;
	border: 1px solid #8c876c;
	border-top: none;
	transition: background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

/* hover時 */
#sub .submenu li a:hover {
	background: #f7f5ee;
	color: #7d3f3f;
	padding-left: 18px;
	text-decoration: none;
}

/* 「花火を探す」の上位3項目を少し強調 */
#sub nav:first-of-type .submenu li:nth-child(-n+5) a {
	font-weight: bold;
	background: #fcfbf7;
}

/* 左にアクセント */
#sub nav:first-of-type .submenu li:nth-child(-n+5) a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: #d86d6d;
}

/* 下位3項目は少し軽め */
#sub nav:first-of-type .submenu li:nth-child(n+6) a {
	color: #444;
}

/* バナー上の余白を少し整える */
#sub p {
	margin-top: 8px;
}

/* スマホ時は詰まりすぎないよう調整 */
@media screen and (max-width: 900px) {
	#sub nav {
		margin-bottom: 22px;
	}

	#sub h2 {
		font-size: 17px;
		padding: 11px 12px;
	}

	#sub .submenu li a {
		padding: 11px 12px;
		font-size: 15px;
	}
}

/* =========================================================
   leftMenu / rightMenu 調整
   ---------------------------------------------------------
   ・#sub と #side を分離して調整
   ・既存HTML構造を前提に、干渉しない形で追記
   ・leftMenu は導線性を少し強化
   ・rightMenu は一覧性を重視して整理
========================================================= */


/* ---------------------------------------------------------
   leftMenu（#sub）
--------------------------------------------------------- */

/* 左メニューの各nav間隔 */
#sub nav {
	margin-bottom: 28px;
}

/* 左メニュー見出し */
#sub h2 {
	padding: 12px 14px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0.02em;
	border-radius: 2px 2px 0 0;
}

/* 最初の見出しだけ少し強調 */
#sub nav:first-of-type h2 {
	background: linear-gradient(#a8a287, #938d71);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* 左メニュー全体 */
#sub .submenu {
	margin-bottom: 0;
	border-top: 1px solid #8c876c;
	background: #fff;
}

/* 左メニュー各リンク */
#sub .submenu li a {
	position: relative;
	padding: 12px 14px;
	line-height: 1.45;
	font-size: 16px;
	background: #fff;
	border: 1px solid #8c876c;
	border-top: none;
	transition: background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

/* 左メニュー hover */
#sub .submenu li a:hover {
	background: #f7f5ee;
	color: #7d3f3f;
	padding-left: 18px;
	text-decoration: none;
}

/* 「花火を探す」の上位3項目を少し強調 */
#sub nav:first-of-type .submenu li:nth-child(-n+5) a {
	font-weight: bold;
	background: #fcfbf7;
}

/* 左にアクセント */
#sub nav:first-of-type .submenu li:nth-child(-n+5) a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: #d86d6d;
}

/* 下位項目は少し軽め */
#sub nav:first-of-type .submenu li:nth-child(n+6) a {
	color: #444;
}

/* 左下アプリバナーを枠いっぱいに表示 */
#sub > p:last-child {
	margin: 8px 0 0 0;
	padding: 0;
	line-height: 0;
}

#sub > p:last-child a {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

#sub > p:last-child img {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

/* 既存のPC/SP切替を維持 */
.sh {display: none;}

/* ---------------------------------------------------------
   rightMenu（#side）
   ※ h2内に a.org がある構造専用
--------------------------------------------------------- */

/* 右メニューの各nav間隔 */
#side nav {
	margin-bottom: 26px;
}

/* 見出し枠 */
#side h2 {
	padding: 0;
	border-radius: 2px 2px 0 0;
	overflow: hidden;
}

/* h2内リンク本体 */
#side h2 a.org {
	display: block;
	padding: 10px 12px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
}

/* 地方見出し hover */
#side h2 a.org:hover {
	background: linear-gradient(#a9a387, #979173);
	color: #fff;
}

/* 県リンク全体 */
#side .submenu {
	margin-bottom: 0;
	border-top: 1px solid #8c876c;
	background: #fff;
}

/* 県リンク */
#side .submenu li a {
	display: block;
	padding: 10px 12px;
	line-height: 1.35;
	font-size: 15px;
	background: #fff;
	border: 1px solid #8c876c;
	border-top: none;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

/* 県リンク hover */
#side .submenu li a:hover {
	background: #f7f5ee;
	color: #7d3f3f;
	padding-left: 16px;
}

/* 項目数が多いので少し引き締める */
#side .submenu li {
	line-height: 1.2;
}

/* 空sectionがあっても崩れにくく */
#side section {
	margin-top: 10px;
}


/* ---------------------------------------------------------
   レスポンシブ
--------------------------------------------------------- */
@media screen and (max-width: 900px) {
	#sub nav {
		margin-bottom: 22px;
	}

	#sub h2 {
		font-size: 17px;
		padding: 11px 12px;
	}

	#sub .submenu li a {
		padding: 11px 12px;
		font-size: 15px;
	}

	#side nav {
		margin-bottom: 22px;
	}

	#side h2 a.org {
		padding: 9px 10px;
		font-size: 14px;
	}

	#side .submenu li a {
		padding: 9px 10px;
		font-size: 14px;
	}

	.sh {display:block;}
	.pc {display:none;}
}

@media screen and (max-width: 900px) {
	#sub {
		display: block;
	}

	#side {
		display: block;
		width: auto;
		float: none;
		margin-top: 24px;
		clear: both;
	}
}

.author-box {
  margin: 32px 0;
  padding: 20px;
  border: 1px solid #e3e8ef;
  border-radius: 10px;
  background: #fafcff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.author-label {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 6px;
}

.author-name {
  font-weight: bold;
  font-size: 1.05em;
  margin-bottom: 10px;
  line-height: 1.5;
}

.author-desc {
  font-size: 0.95em;
  line-height: 1.7;
  margin-bottom: 12px;
}

.author-links {
  font-size: 0.9em;
}

.author-links a {
  color: #007acc;
  text-decoration: none;
}

.author-links a:hover {
  text-decoration: underline;
}

.sep {
  margin: 0 6px;
  color: #aaa;
}

@media (max-width: 600px) {
  .author-box {
    padding: 16px;
  }
}

@media (max-width: 600px) {
  #headMain .inner > p,
  #headMain .todays-hanabi-summary {
    text-align: left;
  }
}

/* =========================================================
   アプリ導線
   ---------------------------------------------------------
   ・全ページ共通で使う想定の汎用バナー
   ・HTML側は day-app-banner 系ではなく app-banner 系を使用
========================================================= */

.app-banner-wrap {
  margin: 14px 0;
}

.app-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff7e8;
  border: 1px solid #e5d3a0;
  border-radius: 10px;
  padding: 12px;
  text-decoration: none;
  box-sizing: border-box;
}

.app-banner:hover {
  opacity: 0.92;
  text-decoration: none;
}

.app-banner img {
  width: 52px;
  height: 52px;
  max-width: none;
  border-radius: 10px;
  flex: 0 0 52px;
  object-fit: cover;
}

.app-banner-text {
  min-width: 0;
  flex: 1;
}

.app-banner-title {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}

.app-banner-desc {
  display: block;
  margin-top: 2px;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.45;
}

@media screen and (max-width: 480px) {
  .app-banner {
    padding: 10px;
    gap: 8px;
  }

  .app-banner img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .app-banner-title {
    font-size: 0.94rem;
  }

  .app-banner-desc {
    font-size: 0.82rem;
  }
}

.new-fireworks-links {
  margin: 0;
  padding: 8px 10px;
  line-height: 2.0;
  word-break: break-word;
}

.new-fireworks-links a {
  color: #00f;
  text-decoration: none;
}

.new-fireworks-links a:hover {
  text-decoration: underline;
}

/* ========================================
   差し込み広告（全ページ共通）
======================================== */
.hanabi-ad-container {
  display: block;
  width: 100%;
  min-height: 280px;
  margin: 16px 0;
  text-align: center;
}

@media screen and (min-width: 901px) {
  .hanabi-ad-container {
    min-height: 280px;
  }
}

