@charset "utf-8";

/* =============================================
	デジタルパンフレット
============================================= */
.ttl_lv1{ clear: both; }
#pamphCont{
	margin: 20px 0 0;
	overflow: hidden;
}
.pamphlet_list{
	margin: 10px 0 0 0;
	letter-spacing:-0.4em;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pamphlet_list li{
  padding: 15px;
	letter-spacing:normal;
	vertical-align: top;
  background-color: var(--bg-color-light2);
}

.thum_pamph{
	margin: 0 5px;
	padding: 5px 0;
	text-align: center;
}
.pamphlet_list li .thum_pamph a{
	margin: 0 auto;
	width: 100%;
	display: block;
	text-align: center;

}
.pamphlet_list li .thum_pamph .thim_img{
	border: 1px solid #e5e5e5;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	width: 100%;
	height: auto;
}
.pamphlet_list li .thum_pamph a span{
	margin: 5px 0 0;
	display: block;
	line-height: 1.3;
}
.pamphlet_list li .thum_pamph a:hover{
	background: url(../img/ico_pamphlet.png) no-repeat center center;
}

.pamphlet_list .pamph_info{
	margin-top: 0;
	padding: 7px 0 10px;
	font-size: 1.3rem;
	line-height: 1.4;
}
.cousename{
	margin: 17px 0 0;
	padding: 15px 0;
	text-align: center;
	font-weight: bold;
	border-top: 1px solid var(--line-dark2);
	border-bottom: 1px dotted var(--line-dark2);
	color: var(--font-dark);
  font-size: 1.6rem;
}

.pamphlet_list .pamph_info dl{ margin: 5px 0 0; }
.pamphlet_list .pamph_info dt{
	margin: 10px 0 3px;
	padding-left: 5px;
	font-size: 1.4rem;
	border-left: 5px solid #ddd;
	color: #717171;
}
.pamphlet_list .pamph_info dd{
	padding-left: 10px;
	background: url(/nikken/img/gray_arrow.png) no-repeat left 0.26em;
	font-size: 1.4rem;
}
#pamphCont h2{
	padding-left: 10px;
	font-size: 1.2rem;
	border-left: 5px solid #ccc;
	color: #506571;
}
#pamphCont .pamphlet_list li .categoryname{
	margin-right: 3px;
	padding: 3px 5px 2px;
	font-size: 0.8em;
	border: 1px solid #ccc;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	color: #7c7056;
}

#pamphCont .pamphlet_list li .cousename{
	margin: 5px 0 5px;
	padding-bottom: 5px;
	line-height: 1.3;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	font-size: 1.1em;
	color: #7c7056;
}
#pamphCont .pamphlet_list li .couseinfo{
	margin: 5px 0 0;
	padding: 0;
	text-align: right;
	font-size: 0.95em;
	border-top: 1px solid #efefef;
}


/* ===========================================
	MediaQueries
=========================================== */
/* PC----------------------------- */
@media screen and (min-width: 768px){
  .pamphlet_list li .thum_pamph a{
    max-width: 100px;
    width: 100%;
    height: 142px;
  }
}

/* スマホ----------------------------- */
@media screen and (max-width: 767px){
	.pamphlet_list {
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pamphlet_list li .thum_pamph .thim_img{
    width: 100px;
    height: auto;
  }
  .pamphlet_list li .thum_pamph a:hover{
    background: url(../img/ico_pamphlet.png) no-repeat top center;
    background-size: 100px 142px;
  }
}