.top-news-area p {
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
}

/*特集設置*/
.top-special-area .spOnly{
	display: none;
}
.top-special-area .top-special-area-in{
	padding: 0;
}
.top-special-area img:hover {
	opacity: 0.75;
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.top-special-area img.no-hover_img:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}
.top-special-area li:nth-child(1){
	padding-left: 0;
}
.top-special-area li:nth-child(2){
	padding-right: 0.5%;
	padding-left: 0.5%;
}
.top-special-area li:nth-child(3){
	padding-right: 0;
}

@media screen and (max-width:768px){
	.top-special-area .spOnly{
		display: block;
	}
	.top-special-area li{
		width: 50%;
	}
	.top-special-area li:nth-child(1){
		padding-right: 1.1%;
	}
	.top-special-area li:nth-child(2){
		padding-right: 0;
		padding-left: 1%;
	}
	.top-special-area li:nth-child(3){
		padding-right: 1%;
		padding-left: 0;
	}
	.top-special-area li:nth-child(4){
		padding-right: 0;
	}
}
/*特集設置*/

/*インフォメーションエリア*/
.top-info-area h2{
	margin: 0;
	padding: 10px 20px;
	font-size: 100%;
	background: #15244B;
	color: #fff;
}
.top-info-area ul{
	margin: 0;
	padding: 15px 20px;
}
.top-info-area li{
	display: flex;
	align-items: center;
	letter-spacing: 1px;
}
.top-info-area p.info-area_date{
	flex: 0.2;
	margin: 0;
}
.top-info-area p.info-area_con{
	flex: 1;
	margin: 0;
}
.info-bor_1_custom{
	border: 1px solid #15244B;
}
@media screen and (max-width:768px){
	.top-info-area{
		margin: 40px 0 40px !important;
	}
	.top-info-area h2{
		padding: 5px 15px;
		font-size: 81.25% !important;
	}
	.top-info-area ul {
		padding: 10px 15px;
	}
	.top-info-area li{
		display: block;
		font-size: 75%;
	}
    .top-info-area p.info-area_date{
      margin: 0 0 3px;
 	 }
}
@media screen and (max-width:540px){
	.top-info-area li{
		font-size: 68.75%;
	}
}
/*インフォメーションエリア*/

/*商品カテゴリーリンクエリア*/
.top-category-link_area {
    margin-bottom: 50px;
    width: 100%;
}
.top-category-link_area ul.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.top-category-link_area .category-grid li {
	flex: 0 1 calc((100% - (15px * 5)) / 6); 
    min-width: 0;
    aspect-ratio: 1 / 1;
}
@media (max-width: 768px) {
    .top-category-link_area .category-grid li {
        flex: 0 1 calc((100% - (15px * 2)) / 3);
    }
}
.top-category-link_area .category-grid li a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid #EAEAEA;
    border-radius: 50%;
    background-color: #FFFFFF;
    text-decoration: none;
    overflow: hidden;
    box-sizing: border-box;
}
.top-category-link_area .content-default {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.top-category-link_area .content-default img {
    height: 55%;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
}
.top-category-link_area .category-name {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #000000;
	letter-spacing: 0;
    white-space: nowrap;
}
.top-category-link_area .mask {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #15244B;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
    padding: 15px;
    box-sizing: border-box;
}
.top-category-link_area li a:hover {
    border-color: #15244B;
}
.top-category-link_area li a:hover .content-default {
    transform: scale(0.95);
}
.top-category-link_area li a:hover .mask {
    opacity: 0.8;
}
.top-category-link_area .mask-action {
    color: #FFFFFF;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
	letter-spacing: 0;
}
@media (max-width: 768px) {
    .top-category-link_area .mask {
        display: none !important;
    }
    .top-category-link_area li a:hover .content-default {
        opacity: 1 !important;
        transform: none !important;
    }
    .top-category-link_area li a:hover {
        border-color: #EAEAEA !important;
    }
}
/*商品カテゴリーリンクエリア*/