/*
Theme Name: Twenty Seventeen Child
Theme URI: https://wordpress.org/themes/twentyseventeen/
Template: twentyseventeen
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
Tags: one-column,two-columns,right-sidebar,flexible-header,accessibility-ready,custom-colors,custom-header,custom-menu,custom-logo,editor-style,featured-images,footer-widgets,post-formats,rtl-language-support,sticky-post,theme-options,threaded-comments,translation-ready
Version: 2.4.1604017474
Updated: 2020-10-30 09:24:34

*/

/* タイトル色　指定*/
.entry-title a{
color: #999999;
}
と
.single-post .entry-title{
color: #999999;
}



/* 中心寄せ*/
.parent {
  display: flex;
  justify-content: center;
  align-items: center;
}
.blockpart {
  display: block;
}

/* 固定ページ　タイトル非表示*/
.page .entry-title {
    display: none;
}

/* 固定ページ　上下間隔ゼロ*/
@media screen and (min-width: 48em) {
.site-content {
     padding: 0;
}
.site-footer {
    margin-top: -2em; 
}
}

/* 横幅変更 */
@media screen and (min-width: 48em) {
	.wrap, .navigation-top .wrap {
		max-width: 1200px;
	}
}

/* 横幅 カラム比率変更 */
.has-sidebar:not(.error404) #primary {
    width: 64%;
}
.has-sidebar #secondary {
    width: 30%;
}


/* ヘッダ画像高さ　変更 */
.has-header-image.twentyseventeen-front-page .custom-header,
.has-header-video.twentyseventeen-front-page .custom-header,
.has-header-image.home.blog .custom-header,
.has-header-video.home.blog .custom-header {
	height: 75vh;
}
@media screen and (min-width: 48em) {
	.admin-bar.twentyseventeen-front-page.has-header-image .custom-header-media,
	.admin-bar.twentyseventeen-front-page.has-header-video .custom-header-media,
	.admin-bar.home.blog.has-header-image .custom-header-media,
	.admin-bar.home.blog.has-header-video .custom-header-media {
		height: calc(75vh - 32px);
	}
	.twentyseventeen-front-page.has-header-image .custom-header-media,
	.twentyseventeen-front-page.has-header-video .custom-header-media,
	.home.blog.has-header-image .custom-header-media,
	.home.blog.has-header-video .custom-header-media {
		height: 75vh;
	}
}

/* メニュー内にある「↓」も不要 */
.site-header .menu-scroll-down {
	display: none;
}


/* スマホでもメニューを画面上部に固定する */
.site-navigation-fixed.navigation-top {
	bottom: auto;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 7;
}


/*** 「次の投稿」「前の投稿」を非表示 ***/
.nav-links {
display: none;
}
