@charset "utf-8";

/*--------------------------------------
  PCでの表示
--------------------------------------*/

/* font-family */
/* ----------------------------------------------------- */
body{
  font-family:'Lucida Grande',
  'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3',
  Meiryo, メイリオ, sans-serif;
}

/* link */
a:link{
	color:inherit;
	text-decoration:none;
}
a:visited{
	color:inherit;
	text-decoration:none;
}
a:hover{
	color:inherit;
	text-decoration:none;
}

/* 簡便のために全要素のマージンとパディングを0に */
* {
margin:0;
padding:0;
}

p,dt,dd,li,th,td,textarea{
  vertical-align:middle;
  line-height:1.5;
}

/* 画像をサイズ幅に合わせる */	
* img{
	max-width:100%;
	height:auto;
}

/* padding と border を要素の幅と高さに含める */
div,dl,dt,dd,ul,ol,li{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}

/* トップに戻るボタン フローティング */
#toPageTop{
	height:70px;
	width:70px;
	position:fixed;
	bottom:20px;
	right:100px;
	z-index:1;
}
#toPageTop img{
	max-width:100%;
	max-height:auto;
}
#toPageTop img a:hover{
	opacity:0.7;
	-webkit-opacity:0.7;
	-moz-opacity:0.7;
}

/* スマホの時だけ非表示 */
.no-sp{
	display: block !important;
}
/* パソコンの時だけ非表示 */
.no-pc{
	display: none !important;
}

/* コンテンツ */
#contents {
	width:100%;
	margin:0 auto 35px;
	background:inherit;
}
.category {
	width:960px;
	display:block;
	margin:auto;
	background-color:#ffffff;
	padding: 40px;
}
.about{
	border: 2px solid #000000;
	padding: 10px;
}
p.lead{
	font-size: 16px;
	padding: 20px;
}

h2.title {
	width:100%;
	color:#000000;
	font-size:24px;
	text-align:center;
	display:block;
	margin-top: 25px;
}
h3.sub {
	width:100%;
	color:#000000;
	font-size:20px;
	display:block;
	margin: 40px auto 15px;
	border-bottom: 2px solid #222222;
	padding-bottom: 5px;
}

/* 新着 */
.recently-list{
	display: flex;
	flex-direction: row;
	font-size: 16px;
}
.recently-list h4{
	padding: 10px;
}
.recently-list ul{
	border-left: 1px solid #222222;
}
.recently-list ul li{
	padding: 10px;
}

/* 過去 */	
.accordion {
margin: 0px auto 10px;
}
.toggle {
display: none;
}
.option {
	position: relative;
}
.btn-tit,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.btn-tit {
	margin: 25px auto;
	display: block;
	padding: 10px;
	background-color: rgba(34,34,34,0.8);
	color: #ffffff;
	text-align: center;
	font-size: 16px;
}
.btn-tit:hover {
	background-color: rgba(34,34,34,1);
}
.btn-tit::after {
	content: "";
	position: absolute;
	right: 30px;
	top: 15px;
	width: 10px;
	height: 10px;
	border: 2px solid #ffffff;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-25%) rotate(135deg);	
	transition: all 0.3s;
}
.content {
	max-height: 0;
	overflow: hidden;
}
.toggle:checked + .content {
	max-height: 20000px;
	transition: all 1.5s;
}
.toggle:checked + .content + .btn-tit::after {
	transform: rotate(315deg);
}

dl.old-list {
	padding: 7px;
	font-size: 14px;
	display: flex;
}
dl.old-list dt {
	padding-right: 10px;
}
dl.old-list dd a:hover {
	color: #197DAA;
}

/* footer */
/* ----------------------------------------------------- */
#footer{
}
#footer div.inner{
  position:relative;
  width:960px;
  margin:0 auto;
  text-align:left;
}
/* copy-wrap */
#footer div.copy-wrap{
}
#footer div.copy-wrap p.catch{
  float:left;
}
#footer div.copy-wrap p.copy{
  float:right;
}

/* float clear */
/* ----------------------------------------------------- */
/* modern borwser */
.clx:after
{
  content:'';
  display:block;
  clear:both;
  height:0;
}

/*--------------------------------------
  スマホでの表示
--------------------------------------*/

/*media Queries 599px以下
----------------------------------------------------*/
@media (max-width: 599px){
body {
	background:#FFFFFF;
}	

/* 戻るボタン フローティング　スマホ */
#toPageTop{
	height:55px;
	width:55px;
	bottom:15px;
	right:15px;
}
	
/* スマホの時だけ非表示 */
.no-sp{
	display: none !important;
}
/* パソコンの時だけ非表示 */
.no-pc{
	display: block !important;
}	

/* コンテンツ */
#contents {
	width:100%;
	background:#FFFFFF;
}
.category {
	width:100%;
	padding: 20px;
}
p.lead{
	font-size: 12px;
	padding: 15px 5px;
	text-align: justify;
}
h2.title {
	font-size:16px;
}
h3.sub {
	font-size:14px;
	text-align: center;
}	
	
/* 新着 */
.recently-list{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	font-size: 12px;
}
.recently-list h4{
	padding: 10px 10px 5px;
}
.recently-list ul{
	border-left: none;
	border-top: 1px solid #222222;	
}

/* 過去 */
.btn-tit {
	margin: 15px auto;
	font-size: 14px;
	height: 40px;
}
.btn-tit::after {
	right: 50%;
	top: 35px;
	width: 7px;
	height: 7px;
}	
dl.old-list {
	padding: 7px;
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #222222;	
}	
}