@charset "UTF-8";

/* single-takaokadiary.css */
/* 高岡店店舗日誌 記事表示に適用 */

/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */

/* 2カラム上下表示 */
#column_wrap{
	display:flex;
	flex-flow:column;
}

/* 2カラム上下表示（上：メインコンテンツ） */
#maincontents{
	padding:10px;
	border:solid 1px #A9A9A9;
	flex-basis:100%;
}

/* 2カラム上下表示（下：サイドバー） */
#sidebar{
	margin-top:10px;
	padding:10px;
	flex-basis:100%;
	border:solid 1px #A9A9A9;
	background-color:#f8f8f8;
}

/* 記事一覧 縦表示*/
.post_list{
	flex-direction:column;
}

/* 記事個別 表示 */
.post_box{
	margin-top:20px;
	margin-bottom:20px;
	padding:10px;
	border:solid 1px #A9A9A9;
	flex-basis:100%;
}

/* 画像の縦横比を維持 */
.contents figure{
	max-width:100%;
	height:auto;
	border-radius:5px;
}

/* 画像の縦横比を維持 */
.contents img{
	max-width:100%;
	height:auto;
	border-radius:5px;
	border:1px solid #d7d7d7;
}

/* 見出し(ページタイトル) */
h2{
	font-size:14px;
	font-weight:normal;
	margin:0px;
	padding:5px;
	padding:0.4em 0.5em;			/* 文字の上下 左右の余白 */
	color:#494949;				/* 文字色 */
	background:#f4f4f4;			/* 背景色 */
	border-left:solid 5px #5BB431;		/* 左線 */
	border-bottom:solid 3px #d7d7d7;	/* 下線 */
	margin-bottom:10px;
	
	/* ジャギー対策 */
	transform: rotate(0.03deg);
	-moz-transform: rotate(0.03deg);
	-ms-transform: rotate(0.03deg);
	-o-transform: rotate(0.03deg);
	-webkit-transform: rotate(0.03deg);
}

/* 記事本文 */
.article_content{
	padding:5px;
}

/* ログインユーザーのみ表示 Start */
.page_info{
	margin-top:20px;
	margin-bottom:20px;
	padding:5px;
	background-color:#e6e6fa;
	border:1px solid #b0c4de;
}

/* 抜粋未入力 */
.excerpt_empty{
	color:red;
}
/* ログインユーザーのみ表示 End */


/* 投稿日時・記事カテゴリ */
.post_info{
	font-size:14px;
	color:#555555;
}

.post_info p{
	margin:0;
	padding:0;
}

/* 掲載日時 */
.post_date{
	text-align:right;
	font-size:12px;
}

/* 記事カテゴリ */
.post_category{
	text-align:right;
	font-size:12px;
}

/* 記事閲覧数 */
.post_views{
	text-align:right;
	font-size:12px;
}

/* 投稿者名 */
.autohername{
	text-align:right;
	font-size:12px;
}

/* カテゴリー名表示 リンク色 Start */

.post_category a {
	font-weight:bold;
	text-decoration:none;
}

.post_category a:link {
	color:#004d25;
}

.post_category a:visited {
	color:#004d25;
}

.post_category a:hover {
	color:#FF7F00;
}

.post_category a:active {
	color:#FF7F00;
}

/* カテゴリー名表示 リンク色 End */


/* 前後の記事 リンク */
.post_links{
	margin-top:20px;
	font-size:10px;
	font-weight:bold;
	width:100%;
}

/* より前の記事 */
.post_prev{
	text-align:center;
	border:solid 1px #A9A9A9;
	padding:3px;
	display:flex;
	justify-content:space-between;
	align-items:center;
}

/* より新しい記事 */
.post_next{
	text-align:center;
	border:solid 1px #A9A9A9;
	padding:3px;
	margin-top:5px;
	display:flex;
	justify-content:space-between;
	flex-direction: row-reverse;
	align-items:center;
}

/* 画像の縦横比を維持 */
.attachment-post-thumbnail{
	width:100%;
	height:100%;
	object-fit:cover;
	top:0;
	left:0;
}

/* より前の記事 アイキャッチ画像*/
.next_thumb{
	flex-basis:30%;
}

/* より新しい記事 タイトル */
.next_title{
	padding:3px;
	flex-basis:70%;
	text-align:right;
}

/* より前の記事 アイキャッチ画像*/
.prev_thumb{
	flex-basis:30%;
}

/* より新しい記事 タイトル*/
.prev_title{
	padding:3px;
	flex-basis:70%;
	text-align:left;
}

.next_thumb{
	display:block;
	width:100%;
	height:100px;
	object-fit:contain;
}

.prev_thumb{
	display:block;
	width:100%;
	height:100px;
	object-fit:contain;
}

/* より前の記事 アイキャッチ画像 オンマウスでアニメーション */
.prev_thumb img{
	transition:1s all;
}
.prev_thumb img:hover{
	transform:scale(1.02,1.02);
	transition:0.5s all;
}

/* より新しい記事 アイキャッチ画像 オンマウスでアニメーション */
.next_thumb img{
	transition:1s all;
}
.next_thumb img:hover{
	transform:scale(1.02,1.02);
	transition:0.5s all;
}

/* 前後の記事 リンク色 Start */

.post_links a {
	text-decoration:none;
}

.post_links a:link {
	color:#004d25;
}

.post_links a:visited {
	color:#004d25;
}

.post_links a:hover {
	color:#FF7F00;
}

.post_links a:active {
	color:#FF7F00;
}

/* 前後の記事 リンク色 End */

/* 区切り線 */
hr{
	border-top:1px dashed #bbb;
	margin:0;
	margin-top:12px;
	margin-bottom:5px;
	padding:0;
}

/* 記事のテーブル */
.article_content th,td{
	border:solid 1px;		/* 枠線指定 */
	padding:3px;
}

.article_content table {
	border-collapse:collapse;	/* セルの線を重ねる */
	table-layout: fixed;
	width: 100%;
	margin-top:5px;
	margin-bottom:5px;
}

/* サイドバーに適用 おすすめ記事 */
#sidebar li{
	list-style-type: none;
}

/* お知らせ アイコンの色 */
aside .fa-bell{
	color:#5BB431;
}

/* お知らせ */
.sidebar_title{
	padding:0.5em;				/* 文字周りの余白 */
	color:#494949;				/* 文字色 */
	background:#F4F4F4;			/* 背景色 */
	border-left:solid 5px #5BB431;		/* 左線（実線 太さ 色） */
	margin:0;
	font-size:14px;
	font-weight:bold;
}

/* 記事なし */
.notfound{
	min-height:300px;
}

/* アイキャッチ画像 */
.thumbnail{
	width:30%;
	padding:5px;
}

/* 画像の縦横比を維持 */
.articleimage{
	display:block;
	width:100%;
	height:100px;
	object-fit:contain;
}

/* 記事内容 概要 */
.overview{
	width:70%;
	padding:5px;
	margin-left:5px;
}

/* アイキャッチ画像・テキスト 段組表示 */
.post_columns{
	display: flex;
	justify-content:flex-start;
	flex-direction:row;
	align-items:flex-start;
}

/* サイドバーに適用 */
#sidebar li{
	list-style-type: none;
}

/* 店舗外観 */
.shop_exterior{
	max-width:100%;
	height:auto;
}

/* お知らせ アイコンの色 */
aside .fa-bell{
	color:#5BB431;
}

/* お知らせ */
.sidebar_title{
	padding:0.5em;				/* 文字周りの余白 */
	color:#494949;				/* 文字色 */
	background:#F4F4F4;			/* 背景色 */
	border-left:solid 5px #5BB431;		/* 左線（実線 太さ 色） */
	margin:0;
	font-size:14px;
}

/* 店舗情報  */
.shop_information{
	margin-top:10px;
	padding-left:0px;
}

/* 店舗所情報 リスト */
.shop_information ul{
	font-size:12px;
}

.exterior_box{
	margin-top:5px;
}

/* 店舗サービス 段組表示 */
.service_list{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

.service_l{
	flex-basis:49%;
}

.service_r{
	flex-basis:49%;
}

.twitter_box{
	margin-top:5px;
}

/* サイドバーに適用 End */

/* for mobile design END */

/* ------------------------------------ */
/* ▼タブレット用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media print, screen and (min-width: 600px) {

/* 見出し */
h2{
	font-size:16px;
}

/* 2カラム左右表示（左：メインコンテンツ） */
#maincontents{
	flex-basis:74%;
	margin:0;
}

/* 2カラム左右表示（右：サイドバー） */
#sidebar{
	flex-basis:25%;
	margin:0;
}

/* お知らせ タイトル */
.widgettitle{
	font-size:15px;
}

/* 記事本文 */
.article_content{
	padding:10px;
}

/* 画像 */
.contents figure{
	border-radius:10px;
}

/* 画像 */
.contents img{
	border-radius:10px;
}

/* ログインユーザーのみ表示 Start */
.page_info{
	display:flex;
	flex-direction:row;
	align-items:flex-start;
}

/* アイキャッチ画像 */
.page_thumbnai{
	padding:5px;
	flex-basis:30%;
}

/* 抜粋 */
.excerpt{
	padding:5px;
	flex-basis:70%;
}
/* ログインユーザーのみ表示 End */

/* 前後の記事 リンク */
.post_links{
	display: flex;
	justify-content: space-between;
}

/* より前の記事 */
.post_prev{
	flex-basis:49%;
}

/* より新しい記事 */
.post_next{
	flex-basis:49%;
	margin-top:0px;
}

/* サイドバーの内容 Start */

/* お知らせ 見出し */
.sidebar_title{
	font-size:16px;
}

/* 店舗情報 2列表示 */
.shop_information{
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
}

/* 店舗外観画像 */
.exterior{
	flex-basis:100%;
}

.exterior_box{
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
	align-items:center;
}

/* 店舗外観画像 */
.shop_image{
	flex-basis:49%;
}

/* 店舗所在地 */
.shop_address{
	flex-basis:49%;
}

/* サービス一覧 */
.service{
	flex-basis:49%;
}

/* 店舗所在地 */
.twitter{
	flex-basis:49%;
}

/* サイドバーの内容 End */


}/* for Tablet design END */

/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media print, screen and (min-width: 1024px) {

/* 見出し */
h2{
	font-size:18px;
}

/* 2カラム 左右表示 */
#column_wrap{
	max-width:1280px;
	margin-left:auto;			/* 左側マージンを自動的に空ける */
	margin-right:auto;			/* 右側マージンを自動的に空ける */
	text-align:left;			/* 中身を左側表示に戻す */
	display:flex;
	flex-flow:wrap;
	justify-content:space-between;
}

/* 2カラム左右表示（左：メインコンテンツ） */
#contents{
	flex-basis:74%;
	margin:0;
}

/* 2カラム左右表示（右：サイドバー） */
#sidebar{
	flex-basis:25%;
	margin:0;
}

/* 画像 */
.contents figure{
	border-radius:15px;
}

/* 画像 */
.contents img{
	border-radius:15px;
}

/* サイドバーの内容 Start */

/* 店舗外観画像 */
.exterior{
	flex-basis:100%;
}

/* 垂直表示 */
.exterior_box{
	flex-direction:column;
}

/* 店舗外観画像 */
.shop_image{
	flex-basis:100%;
}

/* 店舗所在地 */
.shop_address{
	flex-basis:100%;
}

/* サービス一覧 */
.service{
	flex-basis:100%;
}

/* Twitter */
.twitter{
	flex-basis:100%;
}

/* サイドバーの内容 End */

}

/* ------------------------------------------------ */
/* ▼PC用として付け足すデザイン（ワイドモニタ対応） */
/* ------------------------------------------------ */
@media print, screen and (min-width:1366px){

}/* for PC design END */