/*///////////////////////////////////////////////
Common
///////////////////////////////////////////////*/

/*
Default settingss
-----------------------------------------------*/
html,body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 	'游ゴシック体',
					Yu Gothic,
					YuGothic, 
					Helvetica Neue, 
					Helvetica, 
					'ヒラギノ角ゴ ProN W3', 
					Hiragino Kaku Gothic ProN, 
					Arial, 
					'メイリオ', 
					Meiryo, 
					sans-serif;
    font-size: 14px;
    z-index: 1;
}
p {
    margin: 0.5em 0;
    padding: 0;
    line-height: 1.45em;
}
a, a:link {
    text-decoration: none;
    color: #6783be;
    -webkit-tap-highlight-color: rgba(0,0,0,0.15);
}
a:visited {
    color: #8183ab;
}
a:hover {
    text-decoration: underline;
    color: #3363fc;
}
a:active {
    text-decoration: underline;
    color: #222;
}
ul, ol {
    margin: 0;
    padding: 0;
    text-indent: none;
}
ul li, ol li {
    list-style: none;
}
bquote {
}

/*
Clearfix
-----------------------------------------------*/
.cf:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: "";
}
/* for Win IE5.5-7 */
.cf {
	zoom: 1;
}

/* no display
----------------------------------------------- */
.nodisp,
#wrapper .nodisp {
    display: none;
}

/*///////////////////////////////////////////////
Header
///////////////////////////////////////////////*/
/*
header
-----------------------------------------------*/
.header {
	display: flex;
	align-items:baseline;
	width: 100%;
	margin: 0;
	padding: 4px 0 4px;
	line-height: 1;
}
/* Header | Index page */
#page .header {
	position: fixed;
	top: 0;
	background-color: rgba(255,255,255,0.0);
	transition: 0.1s linear 0.1s;
}
#page .header:hover {
	background-color: rgba(255,255,255,0.94);
}
/* Header | Tag or Search or Permalink page */
#page_tag .header,
#page_search .header,
#page_permalink .header {
	position: relative;
	top: auto;
	background-color: rgba(0,0,0,0.0);
}
/* flex | layouts */
.header .logo {
	margin: 10px 0 0 10px;
}
.header .site_navigation {
	margin-right: auto;
	margin-left: 14px;
}
.header .link_btn {
	margin-right: 10px;
}
@media only screen and (max-width: 400px) {
	.header .link_btn {
		margin-right: 8px;
	}
}
/* block */
.header .logo,
.header .logo a,
.header .site_navigation,
.header .site_navigation ul,
.header .site_navigation li,
.header .site_navigation a,
.header .link_btn,
.header .link_btn a {
	display: block;
	line-height: 1;
}
.header .logo a,
.header .site_navigation a,
.header .link_btn a {
	opacity: 0.3;
	color: #2a2a2a;
}
/* Header Logo */
.header .logo,
.header .logo a {
    font-family: Georgia;
	font-size: 11px;	
}
.header .logo a:hover {
	text-decoration: none;
	color: #444;
}
/* Site global navigation */
.header .site_navigation {
}
.header .site_navigation ul {
	display: flex;	
	align-items: baseline;
}
.header .site_navigation a {
	padding: 2px 5px 1px;
	line-height: 10px;
	font-size: 10px;
}
.header .site_navigation a:hover {
	text-decoration: underline;
}
/* archive link button */
.header .link_btn a {
	padding: 2px;
	border: 1px solid #2d2d2d;
	border-radius: 3px;
	font-size: 10px;
	transition: 0.1s linear 0.1s;
}
.header .link_btn a:hover {
	opacity: 0.95;
	border: 1px solid #768290;
	text-decoration: none;
	color: #768290;	
	background-color: #fff;
	background-color: rgba(255,255,255,0.9);
}

/*///////////////////////////////////////////////
Comment
///////////////////////////////////////////////*/
#comment {
	padding-top: 30px;
	text-align: center;
}
#comment p {
	margin: 40px auto;
	font-size: 11px;
	color: #555;
}
#comment .sx {
	color: #111;
}
#comment .sx.b {
	margin: 0 8px;
}

/*///////////////////////////////////////////////
Contents|common
///////////////////////////////////////////////*/
/*
Defaults
-----------------------------------------------*/
#content {}
/*
Link button
-----------------------------------------------*/
#content .link_btn {
	padding: 4px 8px;
	border: 1px solid #555;
	border-radius: 3px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	font-size: 12px;
	color: #2a2a2a;
	background-color: rgba(255,255,255,0.75);
	transition: 0.1s linear 0.02s;
}

/*///////////////////////////////////////////////
Contents|Slider
///////////////////////////////////////////////*/
/*
Cards | Index Page
-----------------------------------------------*/
/*
Slide pagenation
-----------------------------------------------*/
.pagination {
	position: fixed;
	right: 0;
	bottom: 0;
	display: inline-block;
	width: auto;
	margin: 0 10px 10px 0;
	padding: 0;
	line-height: 1;
}
.pagination .inner_box {
	padding: 4px 8px;
}
.pagination .current_page,
.pagination .previous,
.pagination .next,
.pagination .current_page,
.pagination .jump_page {
	opacity: 0.75;
	margin: 0 2px;
	padding: 4px 6px;
	font-size: 12px;
	color: #222;
}
.pagination .current_page {
	opacity: 0.5;
}
@media only screen and (max-width:340px) {
	.pagination .current_page,
	.pagination .previous,
	.pagination .next,
	.pagination .current_page,
	.pagination .jump_page {
		padding: 4px 4px;
	}
}
/* Tag | search page pagenation */
#page .pagination,
#page_tag .pagination,
#page_search .pagination {
	position: fixed;
	top: auto;
	right: 0;
	bottom: 40px;
	left: 0;
	display: block;
	width: auto;
	margin: 0 auto;
	padding: 0;
	line-height: 1;
	text-align: center;
}
@media only screen and (max-width:920px) {
	#page .pagination,
	#page_tag .pagination,
	#page_search .pagination {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		display: block;
		width: auto;
		margin: 0 10px 100px;
		padding: 0;
		line-height: 1;
		text-align: center;
	}
}
@media only screen and (max-height:840px) {
	#page .pagination,
	#page_tag .pagination,
	#page_search .pagination {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		display: block;
		width: auto;
		margin: 0 10px 100px;
		padding: 0;
		line-height: 1;
		text-align: center;
	}
}
/*///////////////////////////////////////////////
Contents | List
///////////////////////////////////////////////*/
#page .slide_box,
#page_tag .slide_box,
#page_search .slide_box {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	min-height: 100vh;
}
@media only screen and (max-width:920px) {
	#page .slide_box,
	#page_tag .slide_box,
	#page_search .slide_box {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		display: block;
		align-items: flex-start;
		min-height: 0;
		padding-bottom: 80px;
	}
}
@media only screen and (max-height:840px) {
	#page .slide_box,
	#page_tag .slide_box,
	#page_search .slide_box {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		display: block;
		align-items: flex-start;
		min-height: 0;
		padding-bottom: 80px;
	}
}
/*
Cards list | Search or tag Page
-----------------------------------------------*/
#page .slide_cards_list,
#page_tag .slide_cards_list,
#page_search .slide_cards_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    max-width: 1240px;
    margin: 0 auto;
}
#page .card,
#page_tag .card,
#page_search .card{
	position: relative;
}
#page .card,
#page_tag .card,
#page_search .card,
#page .card_link,
#page_tag .card_link,
#page_search .card_link {
	width: 300px;
	height: 200px;
	margin: 2px;
}
@media only screen and (max-width:600px) {
	#page .card,
	#page_tag .card,
	#page_search .card,
	#page .card_link,
	#page_tag .card_link,
	#page_search .card_link {
		margin-bottom: 10px;
	}
}
/* Photo image thumnbnail */
#page .img_wrap,
#page_tag .img_wrap,
#page_search .img_wrap,
#page .thumb_high_res,
#page_tag .thumb_high_res,
#page_search .thumb_high_res {
	width: 100%;
	height: 100%;
}
#page .thumb_high_res,
#page_tag .thumb_high_res,
#page_search .thumb_high_res {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
#page .card:nth-child(odd) .thumb_high_res,
#page_tag .card:nth-child(odd) .thumb_high_res,
#page_search .card:nth-child(odd) .thumb_high_res {
	background-color: #DFECF1;
}
#page .card:nth-child(even) .thumb_high_res,
#page_tag .card:nth-child(even) .thumb_high_res,
#page_search .card:nth-child(even) .thumb_high_res {
	background-color: #DBE6E4;
}
/* Image info */
#page .img_info,
#page_tag .img_info,
#page_search .img_info {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
#page .img_info .link_btn,
#page_tag .img_info .link_btn,
#page_search .img_info .link_btn {
	display: block;
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0 auto;
	border-radius: 0;
	line-height: 200px;
}
#page .img_info>.link_btn:hover,
#page_tag .img_info>.link_btn:hover,
#page_search .img_info>.link_btn:hover {
	opacity: 0.75;
	border-color: #3363fc;
	color: #3363fc;
}

/*///////////////////////////////////////////////
Contents | Permalink page
///////////////////////////////////////////////*/
/*
Layouts
-----------------------------------------------*/
#page_permalink .img_wrap,
#page_permalink .img_caption,
#page_permalink .img_info {
	width: auto;
	max-width: 1000px;
	height: auto;
	margin: 10px auto;
	padding: 0 10px;
}
#page_permalink .img_wrap {
	margin: 50px auto 20px;
	padding: 10px;
}
#page_permalink .img_caption {
	margin-bottom: 40px;
}
#page_permalink .img_info {
	padding-bottom: 80px;
}
#page_permalink .img_wrap .thumb_high_res {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
#page_permalink .img_caption p {
	margin: 0 0 10px;
	line-height: 1.92;
	font-size: 10px;
	color: #3a3a3a;
}
#page_permalink .img_info {
	font-size: 10px;
	color: #999;
}
#page_permalink .img_info date,
#page_permalink .img_info .notecount {
	margin-right: 6px;
}
#page_permalink .img_info .tag {
	max-width: 300px;
}
#page_permalink .img_info .tag>a {
	float: left;
	display: block;
	margin-right: 8px;
	padding: 1px 2px;
	white-space: nowrap;
}
#page_permalink .img_info .download_link {
	margin: 10px 0;
}
#page_permalink .img_info .download_link a {
	margin: 0;
	padding: 4px 8px;
	border-radius: 2px;
	line-height: 1;
	text-decoration: none;
	font-size: 10px;
	color: #fff;
	background-color: #3972bb;
}
#page_permalink .img_info .download_link a:hover {
	background-color: #5276c1;
}
#page_permalink .img_info .download_link a:active {
	vertical-align: bottom;
	background-color: #47639c;
}
/*
Layouts | Textpost
-----------------------------------------------*/
#page_permalink #content article.textpost {
	width: auto;
	max-width: 500px;
	margin: 10px auto;
	padding: 0 10px;
}
#page_permalink #content article.textpost h1 {
	margin: 1.2em 0;
}
#page_permalink #content article.textpost h2 {
	margin: 1.4em 0;
}
#page_permalink #content article.textpost h3 {
	margin: 1.8em 0;
}
#page_permalink #content article.textpost h4 {
	margin: 1.4em 0;
}
#page_permalink #content article.textpost p {
	margin: 0.6em 0;
	line-height: 1.88;
}
#page_permalink #content article.textpost p>del {
	font-size: 0.5em;
	color: #aaa;
}

/*///////////////////////////////////////////////
bottom cover
///////////////////////////////////////////////*/
/*
bottom cover|Default(fix layout)
-----------------------------------------------*/
.bottomCoverWhite {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 46px;
	background-color: rgba(255,255,255,0.0);
	transition: 0.1s linear 0.1s;	
}
.bottomCoverWhite:hover {
	background-color: rgba(255,255,255,0.94);
}
/* Tag page */
@media only screen and (max-width:920px) {
	#page_tag .bottomCoverWhite,
	#page_search .bottomCoverWhite {
		position: relative;
	}
}
@media only screen and (max-height:840px) {
	#page_tag .bottomCoverWhite,
	#page_search .bottomCoverWhite {
		position: relative;
	}
}
/*
bottom cover|Permalink page(relative layout)
-----------------------------------------------*/
#page_permalink .bottomCoverWhite,
#page_permalink .bottomCoverWhite:hover {
	position: relative;
	bottom: auto;
	width: auto;
	max-width: 1000px;
	height: auto;
	margin: 0 auto;
	background-color: transparent;
	transition: none;
}

/*///////////////////////////////////////////////
Footer
///////////////////////////////////////////////*/
/*
footer|Default(fix layout)
-----------------------------------------------*/
.footer {
	position: fixed;
	bottom: 0;
}
.footer address {
	margin-left: 8px;
	font-style: normal;
}
.footer address a {
	opacity: 0.5;
	padding: 2px 4px;
	font-size: 10px;
	color: #777;
}
/* Tag page */
@media only screen and (max-width:920px) {
	#page .footer,
	#page_tag .footer,
	#page_search .footer {
		position: relative;
	}
}
@media only screen and (max-height:840px) {
	#page .footer,
	#page_tag .footer,
	#page_search .footer {
		position: relative;
	}
}
/*
footer|Permalink page(relative layout)
-----------------------------------------------*/
#page_permalink .footer {
	position: relative;
	bottom: auto;
	width: auto;
	max-width: 1000px;
	height: auto;
	margin: 0 auto 2px;
	padding: 0 10px;
}
#page_permalink .footer address {
	margin-left: 0;
}

/*///////////////////////////////////////////////
z-index controll
///////////////////////////////////////////////*/
/*
↑Weak
-----------------------------------------------*/
/* html and body -> z-index: 1 */
.footer 					{ z-index: 10; }
.header 					{ z-index: 10; }
.pagination 				{ z-index: 20; }
#page .img_info 			{ z-index: 30; }
#page_tag .img_info 		{ z-index: 30; }
#page_search .img_info 		{ z-index: 30; }
/*
↓Strong
-----------------------------------------------*/
