
/*================================================
 *  ワードプレス共通
 ================================================*/


/* 大きい画面用の設定-------------- */
@media (min-width:768px){
.wp_flex_wrap{
	display: flex;
    justify-content: space-between;
}
	
.wp_main_area{
    width: 70%;
	}

.wp_side_area{
     width: 26%;
	}
}
/* -------------end------------- */
/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.wp_main_area{
	/*margin-bottom: 20px;*/
	}
}
/* -------------end------------- */



/*================================================
 *  ワードプレス一覧
 ================================================*/


/* 大きい画面用の設定-------------- */
@media (min-width:768px){
.wp_info_flex_wrap{
	display: flex;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #cccccc;
    justify-content: space-between;
}

.wp_info_flex_wrap:last-child{
	border-bottom:none;
}
.wp_info_img{width: 30%;
	order:1;
}
    

.wp_info_txt{width: 68%;
	order:2;}
.wp_info_txt_day{font-size: 88%;}
    
.wp_info_txt_title{font-size: 113%;
color: #E09696;
margin-bottom: 10px;
font-weight: 700;}
	}
/* -------------end------------- */
/* 小さい画面用の設定-------------- */
@media (max-width:767px){
.wp_info_flex_wrap{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #CCCCCC;
}

.wp_info_flex_wrap:last-child{
	border-bottom:none;
}
.wp_info_img img{width: 100%;
	height: auto;
}
.wp_info_txt{padding-left: 0px;
	margin-bottom: 5px;}
.wp_info_txt_day{font-size: 90%;}
.wp_info_txt_title{font-size: 120%;
margin-bottom: 5px;
font-weight: 600;}
	}
/* -------------end------------- */




/* 投稿記事 ------*/
.post_box{
margin-bottom: 30px;}

.post_info{
	text-align: right;
	font-size: 88%;
    margin-bottom: 10px;
	}
.post_txt_box{text-align: justify;}


/* サイドバー */

.widgettitle{
	cursor: pointer;
	display: inline-block;
	width: 100%;
	margin-bottom: 7px;
    background-color: var(--palegray);
    
    color: var(--text-color);
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 10px;
	padding-bottom: 5px;
	box-sizing: border-box;
    font-size: 88%;
}





.wp_side_area li li	{
	margin-bottom: 7px;
	padding-bottom: 7px;
	border-bottom: 1px dotted #cccccc;}

.wp_side_area li li a	{text-decoration: none;
position: relative;
padding-left: 1em;
display: block;
font-size: 88%;
color: var(--text-color);}

.wp_side_area li li a:before {
font-family: "Font Awesome 6 Free";
content:'\f054';
font-weight: 700;
position: absolute;
top: 50%;
left: 0px;
margin-top: -12px;
color: rgba(87,46,18,0.50);
}	

/* 大きい画面用の設定-------------- */
@media (min-width:768px){
	.wp_side_area ul li.widget	{margin-bottom: 50px}
	}
/* -------------end------------- */
/* 小さい画面用の設定-------------- */
@media (max-width:767px){
	.wp_side_area ul li.widget	{margin-bottom: 20px}
	
	}
/* -------------end------------- */



/* 記事内の画像 */
.aligncenter	{display: block;
	margin-left: auto;
	margin-right: auto;}

div.post_box img{border: none;
width: 100%;
height: auto;}

.alignleft	{float: left;
	margin-right: 10px;
	margin-bottom: 10px}

.alignright	{float: right;
	margin-left: 10px;
	margin-bottom: 10px}

.wp-caption	{border: solid 1px #aaaaaa;
	text-align: center;
	padding-top: 5px}
	
	.breadcrumbs{font-size: 12px;
	color: #212121;
	}

.size-large{width: 100% !important;
height: auto;}

.size-medium{
	width: 50% !important;
height: auto;}

.size-thumbnail{width: 25% !important;
height: auto;}
/* ページ番号リンク */

.pagenum{display: flex;
justify-content: center;
}

.pagenum  a,
.pagenum span
	{
	display: block;
	padding: 5px;
	text-decoration: none;
	
	width: 1.5em;
	line-height: 1.5em;
	border-radius: 50%;
	text-align: center;
    background-color:  var(--blue);
color:#ffffff;
margin-left: 5px;
margin-right: 5px;
font-weight: 700;
box-sizing: content-box;}



.pagenum span{background-color:var(--navy);
box-sizing: content-box;
color: #ffffff;
}



/* アーカイブセレクトボタン ---------------------*/
/* ---------------------------------------------------- */
/* セレクトボックス本体 */
#archives-dropdown-2 {
    width: 100%; /* 横幅100%で親要素に合わせる */
    max-width: 300px; /* 最大幅を設定 */
    padding: 10px 15px; /* 内側の余白 */
    font-size: 16px; /* 文字サイズ */
    color: #333; /* 文字色 */
    background-color: #f5f5f5; /* 背景色 */
    border: 1px solid var(--navy); /* 枠線 */
    border-radius: 8px; /* 角丸 */
    appearance: none; /* デフォルトの矢印を消す */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease; /* ホバー時のアニメーション */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6H0z' fill='%23004499'/%3E%3C/svg%3E"); /* 下向き矢印 */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 6px;
}

/* ホバー時 */
#archives-dropdown-2:hover {
    border-color: #0077cc;
    background-color: #eaeaea;
}

/* フォーカス時 */
#archives-dropdown-2:focus {
    outline: none;
    border-color: #ff6600;
    background-color: #ffffff;
}

/* 選択肢のデザイン */
#archives-dropdown-2 option {
    padding: 10px;
    background-color: #ffffff;
    color: #333;
}

/* 投稿内の画像の下でfloatを解除 ---------------------*/
/* ---------------------------------------------------- */
.post_txt_box::after {
  content: "";
  display: table;
  clear: both;
}
