/*----------------------------------------------------------------- */
/* ヘッダー
/*----------------------------------------------------------------- */

/* メニューを縦に並べる(タイトルの下にメニュー) */
.site-header--layout--nav-float .site-header-container{
	display: block;
}

/* タイトルを中央寄せ */
.site-header--layout--nav-float .site-header-logo a{
	margin: 0 auto;
}

/* メニューを中央寄せ */
.global-nav--layout--float-right .global-nav-list {
	margin-left: auto;
	margin-right: auto;
}

/*----------------------------------------------------------------- */
/* リンク
/*----------------------------------------------------------------- */

/* リンクのテキストを分かりやすく青色などにする。*/

/* リンク (青) */
.entry-body p a,
.entry-body li a,
.entry-body td a,
.entry-body th a{
	color: var(--ltg-c-link-normal-color);
	text-decoration: underline;
}

/* リンク フォバー （太字） */
.entry-body p a:hover,
.entry-body li a:hover,
.entry-body td a:hover,
.entry-body th a:hover{
	font-weight: bold;
}

/* リンク 訪問済み（紫） */
.entry-body p a:visited,
.entry-body li a:visited,
.entry-body td a:visited,
.entry-body th a:visited{
	color: var(--ltg-c-link-visited-color);
}

/*----------------------------------------------------------------------------------- */
/* 投稿日・最終更新日・投稿者 の非表示（投稿ページ・固定ページ・一覧ページ）
/*----------------------------------------------------------------------------------- */

/* 記事の更新日＆投稿者名を非表示（投稿日は表示のまま） */
body.single .entry-meta-item-updated, body.single .entry-meta-item-author{
	display: none;
}

/* 製品のページでは投稿日も非表示 */
body.single-item .entry-meta-item-date{
	display: none;
}

/* 各種一覧ページの投稿日を非表示にする（すべての投稿・カテゴリー一覧等・検索結果）*/
body.blog .published,
body.archive .published,
body.search .published{
	display: none;
}

/*----------------------------------------------------------------- */
/* 「次の投稿」「前の投稿」を非表示
/*----------------------------------------------------------------- */

/* 画像が大きく表示され必要以上に目立つため非表示にする */ 
.vk_posts.next-prev{
	display:none;
}

/*----------------------------------------------------------------- */
/* トップページ
/*----------------------------------------------------------------- */

/* h2（メインビジュアルの「川崎市ふれあい製品」）｜トップページ */
body.home h2.main-visual-heading {
	width: fit-content;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	padding: 20px 40px;
	background: white;
    font-family: "Nunito Sans", "Kiwi Maru", sans-serif;
	font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.1rem;
	box-shadow: 0px 0px 0px 15px white;
	border: 5px dashed var(--ltg-c-dashed-line-color);
	border-radius: 10px;
}

/* h2 メインビジュアル：タブレット */
@media (max-width: 991px) {
	body.home h2.main-visual-heading{
		padding: 10px 20px;
		font-size: 36px;
    }
}

/* h2 メインビジュアル：スマホ */
@media (max-width: 575px) {
	body.home h2.main-visual-heading{
		font-size: 28px;
		padding: 5px 15px;
    }
}