@charset "utf-8";

/*-------------------------------------------------*/

/* tabs */

/*-------------------------------------------------*/



/*タブ切り替え全体のスタイル*/
.generic_items .lutabs {
	margin: 0 auto;
	padding: 0 0 4em;
	background-color: #fff;
	width: 100%;
}

/*タブのスタイル*/
.generic_items .lutab_item {
	width: calc(100% / 10);
	border-bottom: 1px solid #999;
	background-color: #eee;
	line-height: 1.4;
	text-align: center;
	display: block;
	float: left;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
	padding: 0.7em;
	box-sizing: border-box;
}

.generic_items .lutab_item:hover {
	opacity: 0.75;
}

.generic_items .lutab_item span {
	font-size: 0.8em;
}

/*選択されているタブのスタイルを変える*/
.generic_items input:checked +.lutab_item {
	background-color: #fff;
	border: 1px solid #999;
	border-bottom-style: none;
}

/*ラジオボタンを全て消す*/
.generic_items input[name="lutab_item"] {
	display: none;
}

/*タブ切り替えの中身のスタイル*/
.generic_items .lutab_content {
	display: none;
	padding: 4em 0;
	clear: both;
	overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/

.generic_items #inch13:checked ~ #inch13_content,
.generic_items #inch14:checked ~ #inch14_content,
.generic_items #inch15:checked ~ #inch15_content,
.generic_items #inch16:checked ~ #inch16_content,
.generic_items #inch17:checked ~ #inch17_content,
.generic_items #inch18:checked ~ #inch18_content,
.generic_items #inch19:checked ~ #inch19_content,
.generic_items #inch20:checked ~ #inch20_content,
.generic_items #inch21:checked ~ #inch21_content,
.generic_items #inch22:checked ~ #inch22_content {
	display: block !important;
}

.generic_items .single {
	margin: 0 auto 4em;
}



.generic_items .lutab_content ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}

.generic_items .lutab_content ul li {
	margin: 1px;
	padding: 0;
	list-style-type: none;
	width: calc((100% / 7) - 2px);
}

.generic_items .lutab_content ul li a {
	display: block;
	padding: 0.5em;
	text-align: center;
	background: linear-gradient(to top, #ddd, #f5f5f5);
	font-size: 0.9em;
	border-radius: 3px;
}

.generic_items .lutab_content ul li a:hover {
	background: linear-gradient(to bottom, #ddd, #f5f5f5);
}

@media screen and (max-width: 768px) {
	
	.generic_items .lutab_item {
		padding: 0.5em 0.2em;
	}
	
	.generic_items .lutab_item span {
		font-size: 0.6em;
		display: block;
	}
	
	.generic_items .lutab_content ul li {
		width: calc((100% / 3) - 2px);
	}
	
	.generic_items .lutab_content {
		padding: 2em 0;
	}
	
}










/*-------------------------------------------------*/

/* blog */

/*-------------------------------------------------*/

.blog {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 0;
}

.blog a:hover {
	color: #c00;
}

.blog_wrapper {
	width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
}

.blog_colum {
	width: 80%;
	text-align: left;
	line-height: 1.6;
}

.blog_sidebar {
	width: 20%;
	padding: 0 0 0 2em;
	box-sizing: border-box;
	text-align: left;
	font-size: 0.9em;
}



@media screen and (max-width: 425px) {
	
	.blog_wrapper {
		width: 100%;
		display: block;
	}
	
	.blog_colum {
		width: 100%;
	}
	
	.blog_sidebar {
		width: 100%;
	}
	
}



.blog_sidebar h3 {
	font-size: 1em;
}

.blog_sidebar h3 a {
	display: block;
	padding: 1em 0.5em;
	text-decoration: none;
	background-color: #004da1;
	color: #fff;
	text-decoration: none;
}

.blog_sidebar ul.entrylist {
	margin: 2em 0 2em 0;
	padding: 0;
	list-style-type: none;
}

.blog_sidebar ul.entrylist li {
	margin: 0 auto 1em;
	line-height: 1.5;
}

.blog_sidebar ul.entrylist li.bloghome {
	font-weight: 900;
}

.blog_sidebar ul.entrylist li a {
	display: block;
	text-decoration: none;
	padding: 0.5em 0.5em 0.5em 1em;
	box-sizing: border-box;
	background-color: #fff;
	border-left: 2px solid #fff799;
	border-bottom: 1px solid #eee;
}

.blog_sidebar ul.entrylist li.bloghome a {
	border-left: 2px solid #004da1;
}

.blog_sidebar ul.entrylist li a:hover {
	color: #004da1;
	background-color: #f5f5f5;
}



.blog .blog_header {
	width: 100%;
	margin: 0 auto;
}

.blog .blog_header h1 {
	font-size: 1.8em;
	margin: 1em auto;
	font-weight: 900;
}



@media screen and (max-width: 425px) {
	
	.blog .blog_header h1 {
		font-size: 1.4em;
	}
	
}



.blog .blog_header h1 span {
	display: block;
}

@media screen and (max-width: 425px) {
	
	.blog .blog_header {
		width: 98%;
	}
	
}

.blog .blog_contents {
	width: 100%;
	margin: 0 auto;
	text-align: left;
	line-height: 1.6em;
}



.blog .blog_contents .entrylist {
	list-style-type: none;
	margin: 2em 0;
	padding: 0;
}

.blog .blog_contents .entrylist li {
	display: flex;
	flex-wrap: nowrap;
	justify-content: start;
	align-items: stretch;
	margin: 0 0 1em 0;
	padding: 0 0 1em;
	border-bottom: 1px dashed #ccc;
}

.blog .blog_contents .entrylist li .entry_thumb {
	width: 20%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.blog .blog_contents .entrylist li .entry_title {
	width: 80%;
	margin: 0;
	padding: 0 0 0 1.5em;
	box-sizing: border-box;
}

.blog .blog_contents .entrylist li .entry_title a {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0;
	position: relative;
}

.blog .blog_contents .entrylist li .entry_title a span {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(0%, -50%);
}



.blog .blog_contents .contents_list {
	width: 70%;
	margin: 1em auto 3em;
	padding: 1em;
	border: 1px solid #ccc;
	background-color: #f5f5f5;
}



@media screen and (max-width: 425px) {
	
	.blog .blog_contents .contents_list {
		width: 85%;
	}
	
}

.blog .blog_colum .blog_contents .contents_list p.list_head a {
	text-decoration: none !important;
}

.blog .blog_contents section {
	width: 100%;
	margin: 1em auto 3em;
}

.blog .blog_contents p.hint {
	min-height: 1em;
	background-image: url(../images/icon_hint.png);
	background-repeat: no-repeat;
	background-osition: left center;
	background-size: contain;
	padding-left: 2em;
	margin: 3em 0;
	font-size: 0.8em;
	font-weight: bold;
}



@media screen and (max-width: 425px) {
	
	.blog .blog_contents p.hint a {
		display: block;
		box-sizing: border-box;
		text-decoration: none;
		padding: 1em 1em 1em 3em;
		border-radius: 10px;
		border: 3px solid #eee;
		border-left-style: none;
	}
	
}



.blog .blog_contents .subimg {
	width: 100%;
}

.blog .blog_contents #writer {
	font-size: 0.8em;
	margin: 5em 0;
	border-top: 1px dashed #000;
	padding-top: 2em;
}




