@charset "utf-8";

.ttlBox figure.ttl {
	margin-bottom: 10px;
	overflow: hidden;
	position: relative;
}

.ttlBox figure.ttl img {
	transform: scale(1);
	transition: .2s ease-in-out;
}

.ttlBox figure.ttl:hover img {
  transform: scale(1.04);
}

.ttlBox p.cap {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.ttlBox p.cap span {
	color: #FFF;
	padding: 3px;
	margin-right: 5px;
}

.ttlBox p.cap span.box01 {
	background: #a3a3a3;
}

.ttlBox p.cap span.box02 {
	background: #e60012;
}

.ttlBox figure.ttl span.new {
	position: absolute;
	top: 12px;
	left: 0;
	z-index: 100;
	background: url(../img/ico_new.png) no-repeat;
	line-height: 0;
}

.ttlBox figure.ttl span.new img {
	animation:blink .5s ease-in-out infinite alternate;	
	transform: scale(1);
}

@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

.scrollBox {
	overflow-y: scroll;
	max-height: auto;
}

html.sp .scrollBox {
    overflow-y: unset; 
}

.sp-scrollBox{
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;  
   height: calc(100vh - 50px);
} 

.scrollBox::-webkit-scrollbar {
    width: 10px;
}

.scrollBox::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #e6f5ff;
}

.scrollBox::-webkit-scrollbar-thumb {
 border-radius: 10px;
 background: #585858;
}

.ttlBox .col-lg-3,.ttlBox .col-4,.ttlBox .col-12 {
	padding-left: 10px;
	padding-right: 10px;
}

@media (min-width: 768px) /*　中デバイス（タブレット, 768px 以上）　*/
{
    
    #sp-menu .container {
        height: 90%;
        overflow: hidden;
    }
    .scrollBox {
        height: 100%;
        padding-bottom: 90px;
    }

}

@media (min-width: 992px) /*　大デバイス（デスクトップ, 992px 以上）　*/
{

.scrollBox {
	overflow-y: scroll;
	max-height: 580px;
}
    
    #sp-menu .container {
        height: auto;
    }

}

@media (min-width: 1200px) /*　特大デバイス（ワイド・デスクトップ, 1200px 以上）　*/
{


}