
@charset "utf-8";




/* ====================================

	0.General

==================================== */

html {
	/* 最小フォントサイズ : 16px */
	font-size: 62.5%;
	margin: 0;
	padding: 0;
	overflow-y: scroll;
}


body {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.6rem;/* 16px */
	font-family:  "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	line-height: 140%;
	word-break : break-all;
	position: relative;
	 -webkit-text-size-adjust: 100%;
	 background-color: #faf8f8;
}


a {
	color: #5C8BB3;
	text-decoration: underline;
}

	a:link {
		color: #5C8BB3;
		text-decoration: underline;
	}

	a:visited {
		color: #5C8BB3;
		text-decoration: underline;
	}

	a:hover {
		color: #5C8BB3;
		text-decoration: none;
	}


img {
	border: none;
	line-height: 0;
	vertical-align: bottom;
}




/* ====================================

	1.Header

==================================== */

header{
	height: 65px;
	border-top: 5px solid #5C8BB3;
}

#top-head {
	position: fixed;
	width: 100%;
	margin: 0 auto;
	z-index: 2;
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0 2px 16px -5px rgba(0,0,0,.3);
}

/* transition */
#top-head,
#top-head:after,
#top-head .logo,
#global-nav ul li,
#global-nav ul li a {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

/* Fixed */
#top-head.fixed {
	height: 65px;
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0 2px 16px -5px rgba(0,0,0,.3);
}

#header_box {
	width: 1160px;
	margin: 0 auto;
	overflow: hidden;
	clear: both;
	box-sizing: border-box;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 1179px) {
		#header_box {
			width: 100%;
			padding: 0 20px;
		}
	}


header > div > p {
	float: left;
	width: 285px;
	height: 65px;
	margin-left:15px;
	text-indent: -9999px;
	white-space: nowrap;
	overflow: hidden;
	background-image:url(/web/20191209003534im_/https://toba-archive.jp/img/title.png);
	background-position: left center;
	background-repeat:no-repeat;
	box-sizing: border-box;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 780px) {
		header > div > p {
			display: block;
			margin-left: 0;
			width: 100%;
			background-size: 55% auto;
			background-position: center center;
		}
	}
	@media (max-width: 480px) {
		header > div > p {
			width: 100%;
			background-size: 60% auto;
		}
	}
	@media (max-width: 480px) {
		header > div > p {
			width: 100%;
			background-size: 60% auto;
		}
	}




/* ====================================

	2.Main

==================================== */

main {
	padding-top: 70px;
}


a.bt,
a.bt:link,
a.bt:visited {
	width: 320px;
	margin: 0 auto;
	padding: 17px 0 15px 0;
	display: block;
	font-size: 2.0rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	text-indent: 0.2em;
	letter-spacing: 0.2em;
	line-height: 100%;
	color: #FFF;
	background-color: #5C8BB3;
	border: 2px solid #5C8BB3;
	border-radius: 27px;
	box-sizing: border-box;
//	position: relative;
}

a.bt:hover {
	color: #5C8BB3;
	background-color: #FFF;
}

a.bt.gray,
a.bt.gray:link,
a.bt.gray:visited {
	background-color: #999;
	border: 2px solid #999;
}

a.bt.gray:hover {
	color: #999;
	background-color: #FFF;
}

/*
a.bt::after {
	display: block;
	content: '';
	position: absolute;
	top: 42%;
	right: 20px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
*/

#pankuzu{
	width: 100%;
	margin: 0 auto 30px auto;
	letter-spacing: 0.15em;
}

#pankuzu ul{
	overflow:hidden;
	clear:both;
}

#pankuzu ul li{
	float:left;
	position: relative;
	margin:0 10px 5px 0;
	padding-left: 20px;
	font-size: 1.4rem;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 1079px) {
		#pankuzu{
			width: 100%;
			margin: 0 auto 30px auto;
			padding: 0;
			box-sizing: border-box;
		}
		
		#pankuzu ul li{
			font-size: 1.2rem;
		}
	}


#pankuzu ul li::after {
	display: block;
	content: '';
	position: absolute;
	top: .40em;
	left: 0;
	width: 6px;
	height: 6px;
	border-right: 2px solid #999;
	border-bottom: 2px solid #999;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#pankuzu ul li.first {
	padding-left: 0;
}

#pankuzu ul li.first::after {
	display: none;
}



/*
 	2.1 Content
==================================== */

#content {
	max-width: 1160px;
	margin: 0 auto;
	padding: 60px 0;
	box-sizing: border-box;
	position: relative;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 1179px) {
		#content {
			width: 100%;
			padding: 40px 20px 60px 20px;
		}
	}

h1 {
	position: relative;
	margin-bottom: 40px;
	padding: .75em 1em;
	font-size: 2.4rem;
	text-align: center;
	text-indent: 0.2em;
	letter-spacing: 0.2em;
	color: #FFF;
	background-color: #5C8BB3;
}

h1::before,
h1::after {
	content: '';
	position: absolute;
	top: 100%;
	border-style: solid;
	border-color: transparent;
}

h1::before {
	left: 0;
	border-width: 0 15px 15px 0;
	border-right-color: #ccc;
}

h1::after {
	right: 0;
	border-style: solid;
	border-width: 15px 15px 0 0;
	border-top-color: #ccc;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 640px) {
		h1 {
			font-size: 2.0rem;
			margin-bottom: 40px;
			line-height: 140%;
		}
	}


h3 {
	margin-bottom: 20px;
	padding-bottom: 15px;
	font-size: 2.0rem;
	font-weight: bold;
	text-align: left;
	letter-spacing: 0.2em;
	color: #5C8BB3;
	border-bottom: 2px solid #ccc;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 640px) {
		h3 {
			font-size: 1.8rem;
		}
	}

h4 {
	margin-bottom: 15px;
	padding-left: 15px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: left;
	letter-spacing: 0.2em;
	color: #5C8BB3;
	border-left: 6px solid #5C8BB3;
}

.text {
	font-size: 1.6rem;
	letter-spacing: 0.15em;
	line-height: 170%;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 640px) {
		.text {
			font-size: 1.4rem;
		}
	}

.content_box {
	letter-spacing: -.4em;
	width: 100%;
	box-sizing: border-box;
}

.content_box li {
	display: inline-block;
	width: 22%;
	margin-right: 4%;
	margin-bottom: 40px;
	text-align: left;
	vertical-align: top;
	position: relative;
	box-sizing: border-box;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 1179px) {
		.content_box li {
			width: 22%;
		}
	}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 640px) {
		.content_box li {
			width: 46%;
		}
	}

.content_box li a:hover img {
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}


.content_box li:nth-child(4n){
	margin-right: 0;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 640px) {
		.content_box li:nth-child(5n){
			margin: 0 2% 30px 2%;
		}
		.content_box li {
			margin: 0 2% 30px 2%;
		}
	}


.content_img {
	width: 100%;
	height: 100%;
	max-width: 255px;
	position: relative;
}

.content_img::before {
	content: "";
	display: block;
	padding-top: 65%;
}

.content_img a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.content_img img {
	width: 100%;
	height: auto;
	line-height: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}


.content_box li span {
	display: block;
	width: 32px;
	height: 28px;
	margin: 0 auto 15px auto;
	text-indent: -9999px;
}

.content_box li.rank_1,
.content_box li.rank_2,
.content_box li.rank_3,
.content_box li.rank_4,
.content_box li.rank_5 {
	padding-top: 40px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 32px auto;
}

.content_box li.rank_1 {
	background-image:url(/web/20191209003534im_/https://toba-archive.jp/img/rank_1.png);
}
.content_box li.rank_2 {
	background-image:url(/web/20191209003534im_/https://toba-archive.jp/img/rank_2.png);
}
.content_box li.rank_3 {
	background-image:url(/web/20191209003534im_/https://toba-archive.jp/img/rank_3.png);
}
.content_box li.rank_4 {
	background-image:url(/web/20191209003534im_/https://toba-archive.jp/img/rank_4.png);
}
.content_box li.rank_5 {
	background-image:url(/web/20191209003534im_/https://toba-archive.jp/img/rank_5.png);
}

.content_box .area {
	margin-top: 10px;
	margin-bottom: 5px;
	font-size: 1.3rem;
	letter-spacing: 0.1em;
}

.content_box .title {
	margin-top: 10px;
	margin-bottom: 8px;
	padding-bottom: 5px;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #5C8BB3;
	border-bottom: 1px solid #CCC;
}

.content_box .cate {
	display: inline-block;
	margin-top: 15px;
	padding: 2px 5px 0 5px;
	font-size: 1.3rem;
	color: #FFF;
	letter-spacing: 0.1em;
	background-color: #5C8BB3;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 360px) {
		.content_box .cate {
			display: none;
		}
	}

.content_box .tag {
	letter-spacing: -.4em;
	padding-left: 30px;
	background-image:url(/web/20191209003534im_/https://toba-archive.jp/img/tag.png);
	background-position: left 0.1em;
	background-repeat: no-repeat;
	background-size: 20px auto;
}

.content_box .tag a {
	display: inline-block;
	margin-right: 10px;
	font-size: 1.3rem;
	letter-spacing: 0.1em;
	color: #444;
}


/* 詳細ページ */

#detail {
	overflow: hidden;
	padding: 40px;
	background-color: #FFF;
	box-sizing: border-box;
}

#detail .detail_img {
	float: left;
	width: 40%;
}

#detail .detail_img img {
	width: 100%;
}

#detail .detail_img iframe {
	width: 100% !important;
	height: 300px !important;
}

#detail .detail_text {
	float: right;
	width: 56%;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 1080px) {
		#detail .detail_img iframe {
			width: 100% !important;
			height: 200px !important;
		}
	}
	@media (max-width: 780px) {
		#detail {
			padding: 20px;
		}
		#detail .detail_img {
			float: none;
			width: 100%;
			margin-bottom: 40px;
		}
		#detail .detail_img iframe {
			height: 400px !important;
		}
		#detail .detail_text {
			float: none;
			width: 100%;
		}
	}
	@media (max-width: 640px) {
		#detail .detail_img iframe {
			height: 300px !important;
		}
	}
	@media (max-width: 480px) {
		#detail .detail_img iframe {
			height: 200px !important;
		}
	}


#detail #title {
	margin-bottom: 30px;
	padding-bottom: 10px;
	font-size: 2.0rem;
	font-weight: bold;
	letter-spacing: 0.15em;
	color: #5C8BB3;
	border-bottom: 3px double #CCC;
}

#detail #text {
	margin-bottom: 40px;
	font-size: 1.5rem;
	letter-spacing: 0.15em;
	line-height: 180%;
	color: #666;
}

#detail dl {
	letter-spacing: -.4em;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #CCC;
}

#detail dl dt,
#detail dl dd {
	display: inline-block;
	letter-spacing: 0.15em;
	vertical-align: top;
}

#detail dl dt {
	width: 140px;
	font-size: 1.4rem;
	font-weight: bold;
	color: #5C8BB3;
}

#detail dl dd {
	width: calc(100% - 140px);
	font-size: 1.4rem;
	color: #444;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 480px) {
		#detail dl dt {
			width: 100%;
			margin-bottom: 5px;
		}

		#detail dl dd {
			width: 100%;
		}
	}


/* ページリンク */

#page_link{
	max-width: 100%;
	margin: 60px auto;
}


#all_news{
	margin:0 0 8px 5px;
	letter-spacing: 0.1em;
}

#next_prev{
	margin: 0;
	overflow: hidden;
	clear: both;
}

#next_prev #num_top{
	float: left;
	width: 18px;
	height: 18px;
	margin: 0 5px;
	padding: 8px 5px 3px 5px;
	display: block;
	line-height: 100%;
	text-decoration: none;
	text-align: center;
	border: 1px solid #5C8BB3;
}


#next_prev a{
	float: left;
	width: 18px;
	height: 18px;
	margin: 0 5px;
	padding: 8px 5px 3px 5px;
	display: block;
	line-height: 100%;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	background-color: #5C8BB3;
	border: 1px solid #5C8BB3;
}



#search_box {
	width: 1160px;
	margin: 0 auto 60px auto;
	padding: 20px 20px;
	background-color: #FFF;
	border: 3px double #5C8BB3;
	box-sizing: border-box;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 1179px) {
		#search {
			margin: 0 auto 80px auto;
			padding: 40px 40px 80px 40px;
		}
		#search_box {
			width: 100%;
		}
	}
	@media (max-width: 780px) {
		#search {
			margin: 0 auto 80px auto;
			padding: 20px 20px 40px 20px;
		}
		#search_box {
			padding: 20px;
		}
	}

#search_box h2 {
	padding: 10px 0 10px 48px;
	font-size: 2.0rem;
	font-weight: bold;
	letter-spacing: 0.15em;
	color: #5C8BB3;
	position: relative;
	background-image:url(/web/20191209003534im_/https://toba-archive.jp/img/search.png);
	background-size: 32px auto;
	background-position: left center;
	background-repeat:no-repeat;
}

#search_box h2:before {
	position: absolute;
	content: '';
	width: 12px;
	height: 12px;
	top: 40%;
	right: 10px;
	bottom:0;
	margin-top: -4px;
	border: 0px;
	border-top: solid 2px #5C8BB3;
	border-right: solid 2px #5C8BB3;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

#search_box h2.open:before {
	top:50%;
	-ms-transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}

#search_box h2:hover {
	cursor: pointer;
}

#search_box > div {
	display: none;
	margin-top: 15px;
	padding: 30px 0 20px 0;
	border-top: 2px solid #CCC;
}

#search_box dl {
	overflow: hidden;
	clear: both;
	font-size: 1.6rem;
	letter-spacing: 0.15em;
	box-sizing: border-box;
}

#search_box dl dt {
	float: left;
	width: 140px;
	margin-bottom: 15px;
	padding: 14px 0 12px 0;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.15em;
	color: #FFF;
	background-color: #5C8BB3;
	clear: both;
}

#search_box dl dd {
	float: right;
	width: calc(100% - 160px);
	margin-bottom: 15px;
	text-align: left;
	letter-spacing: 0.12em;
	line-height: 46px;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 1179px) {
		#search_box dl dt {
			float: none;
			width: 100%;
		}
		#search_box dl dd {
			float: none;
			width: 100%;
			margin-bottom: 30px;
		}
	}


#search_box dl dd label {
	display: inline-block;
	min-width: 100px;
	margin-right: 15px;
}

.search_cate{
	float: left;
	width: 165px;
	margin-bottom: 10px;
	padding-left: 10px;
	line-height: 2.4em;
	font-weight: bold;
	color: #5C8BB3;
	vertical-align: top;
	border-bottom: 1px dashed #CCC;
}

.search_cate label {
	margin-right: 0;
}

.search_check{
	float: right;
	width: 720px;
	min-height: 46px;
	margin-bottom: 10px;
	padding-top: 2px;
	padding-left: 20px;
	font-size: 1.4rem;
	line-height: 2.4em;
	vertical-align: top;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 1179px) {
		.search_cate{
			float: none;
			width: 100%;
			margin-bottom: 15px;
			border-bottom: 1px double #CCC;
		}
		.search_check{
			float: none;
			width: 100%;
			margin-bottom: 15px;
			padding-left: 10px;
		}
	}

.clear {
	clear: both;
}

input[type="checkbox"],
input[type="radio"] {
	margin: 8px 12px 8px 0;
	-webkit-transform: scale(2.0);
	transform: scale(2.0);
}

input[type="text"] {
	width: 400px;
	margin: 0 30px 2px 0;
	padding: 8px;
	letter-spacing: 1px;
	line-height: 100%;
	box-sizing: border-box;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 780px) {
		input[type="text"] {
			display: block;
			width: 95%;
		}
	}

#search_box select {
	margin: 2px 10px 5px 0;
	padding: 6px 5px;
	line-height: 100%;
	height: 46px;
	letter-spacing: 1px;
}


br.sp_only {
	display: none;
}

	/* === ▽ スマートフォン ▽ === */
	@media (max-width: 780px) {
		br.sp_only {
			display: block;
		}
	}

a.loupe{
	display: inline-block;
	width: 36px;
	height: 36px;
	margin: -5px 0 2px 5px;
	overflow:hidden;
	text-indent: -9999px;
	vertical-align: middle;
	border-radius: 5px;
	background-color:#2980b9;
	background-image:url('/web/20191209003534im_/https://toba-archive.jp/admin/img/search.png');
	background-size: 20px 20px;
	background-position:center;
	background-repeat:no-repeat;
}

input[type=text].year,
input[type=number].year {
	max-width: 80px !important;
	margin-right: 5px !important;
}

input[type=text].year_w,
input[type=number].year_w {
	max-width: 50px !important;
	margin-right: 5px !important;
}

select.cal {
	margin-right: 5px !important;
}



/* About */

.information {
	display: inline-block;
	padding: 15px 20px;
	font-size: 1.4rem;
	letter-spacing: 0.15em;
	line-height: 200%;
	border: 3px double #2980b9;
}

.information p {
	margin-bottom: 10px;
	padding-bottom: 5px;
	font-size: 1.6rem;
	color: #666;
	border-bottom: 1px dashed #BBB;
}

.information span {
	font-size: 1.8rem;
	font-weight: bold;
	color: #2980b9;
}



/* ====================================

	3.Footer

==================================== */

footer {
	width: 100%;
	margin: 0 auto;
	padding: 40px 0 15px 0;
	font-size: 1.3rem;
	text-align: center;
	letter-spacing: 0.2em;
	color: #FFF;
	background-color: #5C8BB3;
	box-sizing: border-box;
	position: relative;
}

footer a,
footer a:link,
footer a:visited {
	color: #FFF;
}

footer ul li {
	margin-bottom: 30px;
}

footer ul li {
	margin-left: 20px;
	display: inline-block;
	line-height: 100%;
	position: relative;
}

footer ul li::after {
	display: block;
	content: '';
	position: absolute;
	top: 0%;
	left: -15px;
	width: 1px;
	height: 16px;
	border-left: 2px solid #FFF;
}

footer ul li:first-child::after {
	display: none;
}

footer ul li a,
footer ul li a:link,
footer ul li a:visited {
	font-size: 1.5rem;
	text-decoration: none;
	line-height: 100%;
	letter-spacing: 0.15em;
	color: #FFF;
	box-sizing: border-box;
}

footer ul li a:hover {
	text-decoration: underline;
	color: #FFF;
}




/*
 	3.1 Go top
==================================== */

.go_top{
	position: fixed;
	right: 20px;
	margin-bottom: 20px;
}

.go_top a{
	display: block;
	width: 60px;
	height: 60px;
	color: #FFF;
	text-indent: -9999px;
	background-color: #5C8BB3;
	position: relative;
	border: 2px solid #FFF;
	border-radius: 30px;
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
	box-sizing: border-box;
}

.go_top a::after {
	display: block;
	content: '';
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	width: 12px;
	height: 12px;
	margin: auto;
	border-right: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}



/*
     FILE ARCHIVED ON 00:35:34 Dec 09, 2019 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 01:31:02 Mar 10, 2021.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  exclusion.robots.policy: 0.304
  CDXLines.iter: 30.25 (3)
  load_resource: 236.267
  captures_list: 166.277
  PetaboxLoader3.datanode: 137.746 (4)
  RedisCDXSource: 3.338
  PetaboxLoader3.resolve: 215.532
  LoadShardBlock: 127.06 (3)
  esindex: 0.023
  exclusion.robots: 0.327
*/