@charset "utf-8";
/* CSS Document */

/*
Theme Name: 矢ノ倉の独り言 テーマ
Theme URI: https://blog.yanokura.jp/
Author: Hiroto.Yanokura.
Version: 1.0.0
Description: 矢ノ倉の独り言ブログコンテンツ用オリジナルテーマ。
*/

/* --------------------------------- */
/* ↓詳細設定ここから */
/* --------------------------------- */	
/* ↓ヘッダーここから */
#header {
    display: flex;
    align-items: center;
	position: fixed;
	background: #000000;
	width: 100%;
	height: auto;
	border-bottom: 1px solid #c1ab05;
	z-index: 9999;
    box-shadow: 0px 10px 10px -5px #999999;
}
.header_logo {
	width: 25%;
	height: auto;
	margin: 20px auto;
	padding: 0;
}
.header_logo img{
	width: 100%;
	height: auto;
}
/* ↑ヘッダーここまで */

/* 表示 */
#wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
	width: 1080px;
	height: auto;
    margin: 0 auto 50px;
}
/* 表示 */

/* トップページ */
#main {
	width: 820px;
	height: auto;
    margin: 0 10px 50px 0;
}
/* トップページ */

/* トップページコメント */
.main-text {
    width: 100%;
    height: auto;
    font-size: 16px;
    text-align: center;
    margin: 0 0 25px;
}
/* トップページコメント */

/* 投稿一覧 */
.main-contents {
    width: 100%;
    height: auto;
    border: 1px solid #c1ab05;
    text-align: left;
    margin: 0 0 10px;
    padding: 10px 0;
}
.main-contents a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; 
}
.main-contents-in {
    width: 480px;
    height: auto;
    margin: 0 10px;
}
.main-contents-in h2{
    width: 100%;
    height: auto;
    font-size: 24px;
    font-family: "UD新ゴ コンデンス90 M";
	font-weight:bold;
    border-bottom: 1px solid #c1ab05;
    border-left: 5px solid #c1ab05;
    margin: 0 0 10px;
    padding: 5px 10px;
}
.main-contents-in p{
    width: 100%;
    height: auto;
    font-size: 18px;
    font-family: "UD新ゴ コンデンス90 L";
	font-weight: normal;
    margin: 0 0 10px;
    padding: 5px 10px;
}
.main-contents-img {
    width: 300px;
    height: auto;
    margin: 0 10px;
    flex-shrink: 0;
}
.main-contents-img img{
    width: 100%;
    height: auto;
}
/* 投稿一覧 */

/* パンくず */
.breadcrumbs {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #666;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

/* 階層の間の区切り文字（>） */
.breadcrumbs li:not(:last-child)::after {
    content: ">";
    margin: 0 10px;
    font-family: "UD新ゴ コンデンス90 L";
}

.breadcrumbs li a {
    color: #333;
    text-decoration: none;
}

.breadcrumbs li a:hover {
    text-decoration: underline;
    color: #c1ab05;
}

/* 現在いるページ（最後の要素）はクリックできないので色を少し薄く */
.breadcrumbs li:last-child span {
    color: #888;
    font-weight: bold;
}
/* パンくず */

/* 投稿ページ画像 */
.entry-thumbnail {
    width: 750px;
    height: auto;
    margin: 0 auto 20px;
}
.entry-thumbnail img{
    width: 100%;
    height: auto;
}

.wp-block-image {
    width: 500px;
    height: auto;
    margin: 0 auto 20px;
}
.entry-thumbnail img{
    width: 100%;
    height: auto;
}
/* 投稿ページ画像 */

/* サイドメニュー */
#side {
    background: #dcdcdc;
	width: 220px;
	height: auto;
    margin: 0 0 50px 10px;
}
#side h3{
    background: #000000;
    width: 100%;
    height: auto;
    color: #ffffff;
    font-size: 20px;
    font-family: "UD新ゴ コンデンス90 M";
    border-top: 2px solid #c1ab05;
    border-bottom: 2px solid #c1ab05;
    text-align: center;
    margin: 0 0 10px;
    padding: 5px 10px;
}
#side ul{
    width: 100%;
    height: auto;
    font-size: 0;
    text-align: left;
    margin: 0 0 25px;
    padding: 5px 10px;
}
#side ul li{
    width: 100%;
    height: auto;
    font-size: 16px;
    margin: 5px 0;
}
/* 天気予報 */
#weather-box {
    width: 100%;
    height: auto;
    text-align: left;
    margin: 0 0 25px;
    padding: 5px 10px;
}
#weather-text {
    font-size: 16px;
}
/* 天気予報 */
/* サイドメニュー */

/* フッター */
#footer {
	background: #c1ab05;
	width: 100%;
	height: auto;
}
.footer_in {
	width: 100%;
	height: auto;
	padding: 25px 50px;
}

.footer_nav {
	width: 90%;
	height: auto;
	margin: 25px auto;
}
.footer_nav ul{
	width: 100%;
	height: auto;
	font-size: 0;
}
.footer_nav ul li{
	display: inline-block;
	width: 25%;
	height: auto;
	font-size: 18px;
	text-align: center;
	margin: 0 auto;
}
.footer_nav ul li a{
	display: block;
	padding: 10px 15px;
}
.footer_nav ul li a:hover{
	color: #000000;
	text-decoration: none;
	opacity: 0.5;
	transition: .3s;
}

.footer_logo {
	width: 50%;
	height: auto;
	margin: 25px auto;
	padding: 0;
}
.footer_logo img{
	width: 100%;
	height: auto;
}

.footer_copyright {
	color: #000000;
	font-size: 18px;
	text-align: center;
	margin: 0 auto;
	padding: 50px 0;
}
/* フッター */

.pagetop-yajirushi {
	font-size: 25px;
	position: relative;
	width: 30px;
	height: 30px;
	border-bottom: 0.2em solid #333333;
	border-right: 0.2em solid #333333;
	margin:0px auto 0px auto;
	padding:0px 0px 0px 0px;
	bottom: 5px;
    right: 10px;
	transform: rotate(225deg);
}
/*---------------------------------------------------------------------------------
pagetop
---------------------------------------------------------------------------------*/
#pagetop_wrapper{
	position:relative;
	}

#pagetop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 77%;
    z-index: 1000;
	}

	#pagetop a {
		text-decoration: none;
		/* color: #b1afaf; */
		width: 30px;
		text-align: center;
		display: block;
		}

	#pagetop a:hover {
        opacity: 0.5;
        -webkit-transition: .3s;
        transition: .3s;		
		}

	#pagetop a i{font-size: 300%;}
/* ↑フッターここまで */
/* ↑コンテンツここまで */
/* --------------------------------- */
/* ↑詳細設定ここまで */
/* --------------------------------- */

/* --------------------------------- */
/* ↑パソコンサイト設定ここまで */
/* --------------------------------- */