/*
Theme Name: テーマの名前（ファイルを格納しているフォルダー名）
Theme URI: テーマを紹介しているページアドレス
Description: テーマの説明
Version: バージョン
Author: テーマを作った人の名前
Author URI: テーマを作った人のURL
License: ライセンス
License URI: ライセンスを確認できるURL
Tags: タグ
*/

/* 全体枠 */
/*==============================*/
div.blog_wrap{
	display: flex; display: -webkit-flex; /* Safari */
	flex-direction: row; -webkit-flex-direction: row; /* Safari */
	flex-wrap: nowrap; -webkit-flex-wrap: nowrap; /* Safari */
}
div.blog_wrap_side{
	width: 260px;
	margin-right: 40px;
}
div.blog_wrap_contents{
	width: calc( 100% - 300px);
}
div.blog_wrap section{
	padding: 0;
	margin-bottom: 40px;
}

/* ======= SP =======*/
@media (max-width: 767px) {
	div.blog_wrap{
		flex-direction: column-reverse; -webkit-flex-direction: column-reverse;
	}
	div.blog_wrap_side,
	div.blog_wrap_contents{
		width: 100%;
	}
}

/* アーカイブリスト */
/*==============================*/
ul.archive_list{
	display: flex; display: -webkit-flex; /* Safari */
	flex-direction: row; -webkit-flex-direction: row; /* Safari */
	flex-wrap: nowrap; -webkit-flex-wrap: nowrap; /* Safari */
}
ul.archive_list li:not(:first-child) {
	margin-left: 24px;
}
ul.archive_list li a{
	width: 100%;
	display: block;
	border: 1px solid #ccc;
	padding: 8px 16px;
	margin-bottom: 8px;
}
ul.archive_list li a:hover{
	background: #dfdfdf;
}

/* サイドタイトル */
/*==============================*/
.sidebar-title{
	font-family: 'Roboto', sans-serif; letter-spacing: 0.01em;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}
div.blog_wrap_side h3{
	font-family: 'Roboto', sans-serif; letter-spacing: 0.01em;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}
div.blog_wrap_side ul{
	list-style: none!important;
}
div.blog_wrap_side ul li a{
	width: 100%;
	display: block;
	border: 1px solid #ccc;
	padding: 8px 16px;
	margin-bottom: 8px;
}
div.blog_wrap_side ul li a:hover{
	background: #dfdfdf;
}
div.blog_wrap_side ul li ul{
	margin-left: 16px;	
}

/* メインタイトル */
/*==============================*/
.Title{
	font-family: 'Roboto', sans-serif; letter-spacing: 0.01em;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 8px;
}

/* 日付 */
/*==============================*/
.date{
	margin-bottom: 24px;
}

/* 本文コンテンツ */
/*==============================*/
div.knowledge_note{
	border-top: 1px solid #ccc;
	padding-top: 24px;
	margin-bottom: 24px;
}

/* 各種表明した企業 */
/*==============================*/
div.inadequacy_list{
	margin-bottom: 24px;
}
div.inadequacy_list dl{
	display: flex; display: -webkit-flex;
	flex-direction: row; -webkit-flex-direction: row;
	flex-wrap: nowrap; -webkit-flex-wrap: nowrap;
	margin-bottom: 8px;
}
 /* ======= TB以上 =======*/
@media (min-width: 768px) {
	div.inadequacy_list dl dt{
		min-width: 400px;
		padding: 4px 16px;
		border: 1px solid #ccc;
	}
	div.inadequacy_list dl dd{
		min-width: 80px;
		padding: 4px 16px;
		border: 1px solid #ccc;
		margin-left: 16px;
		text-align: center;
	}
}
 /* ======= SP以下 =======*/
@media (max-width: 767px) {
	div.inadequacy_list dl{
		flex-direction: column; -webkit-flex-direction: column;
	}
	div.inadequacy_list dl dd{
		text-align: center;
		padding: 3px;
		border: 1px solid #ccc;
	}
}

/* Table */
/*==============================*/
div.knowledge_table_wrap{
	margin-bottom: 24px;
}
table.knowledge_table,
table.knowledge_table th,
table.knowledge_table td{
	border: 1px solid #ccc;
	padding: 8px 16px;
}
table.knowledge_table th{
	background: #dfdfdf;
}

/* サブタイトル */
/*==============================*/
.sabTitle{
	font-family: 'Roboto', sans-serif; letter-spacing: 0.01em;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
}

/* フォーム */
/*==============================*/
.contact_form{
	width: 800px;
	margin: 0 auto;
}
.contact_form dl{
	display: flex; display: -webkit-flex;
	flex-direction: row; -webkit-flex-direction: row;
	flex-wrap: nowrap; -webkit-flex-wrap: nowrap;
	border-top: 1px solid #ccc;
	margin-bottom: 2px;
}
.contact_form dl dt{
	width: 300px;
	padding: 16px 16px;
}
.contact_form dl dt span{
	background: #45A9D3;
	color: #fff;
	padding: 0 4px;
	font-size: 13px;
	border-radius: 3px;
	margin-right: 16px;
}
.contact_form dl dd{
	width: 100%;
	padding: 16px;
	margin-left: 2px;
}
.contact_form dl dd input[type="text"],
.contact_form dl dd input[type="email"],
.contact_form dl dd textarea{
	padding: 0 16px;
	line-height: 40px;
	border-radius: 5px;
	background: #eeeeee;
	border: 1px solid #ddd;
}
.contact_form input[type="submit"]{
	display: block;
	margin:  0 auto;
	padding: 8px 48px;
	border-radius: 5px;
	background: #45A9D3;
	color: #fff;
}

p.down_comment{
	text-align: center;
}
