@charset "utf-8";
/* CSS Document */

/*
==============================================================================*/
:root {
	--color-accentColor: black;
	--color-accentBorder: #e8eaeb;
}

@media screen and (max-width: 767px) {:root {/* // Mobile // */
	--thumbnail-aspectRatio: 1;
}}
@media screen and (min-width: 768px) {:root {/* // PC // */
	--thumbnail-aspectRatio: 0.8;/* 540x675px (AspectRatio = 4:5 ≒ 0.8) */
}}




/*============================================================================*/


section.GeneralList.GeneralList_listPage {}




section.GeneralList.GeneralList_listPage .GeneralList_categoryList {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.7rem;
	margin-bottom: 1.8rem;
	font-size: 1.6rem;
}
section.GeneralList.GeneralList_listPage .GeneralList_categoryList > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--color-accentBorder);
	border-radius: 2rem;
	transition: .3s ease;
	transition-property: color, border;
	padding: 0.32rem 1.6rem;
	color: var(--color-accentColor);
}
section.GeneralList.GeneralList_listPage .GeneralList_categoryList > li.active > a {
	color: white;
	border-color: var(--color-accentColor);
	background-color: var(--color-accentColor);
	font-weight: bold;
}





section.GeneralList.GeneralList_listPage > .GeneralList_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 6rem 3rem;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li {
	position: relative;
	z-index: 1;
	display: flex;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a {border-bottom: solid 1px #e0e0e0;}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .bgImage {
	border-radius: 1rem;
	aspect-ratio: var(--thumbnail-aspectRatio);
	overflow: hidden;
	border: solid 1px #e0e0e0;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .bgImage > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .3s ease;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a:hover > .bgImage > img {
	transform: scale(1.1);
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .category {
	position: absolute;
	top: .7rem;
	right: .7rem;
	background: white;
	color: var(--color-accentColor);
	border-radius: 1.5em;
	padding: .4em 1.5em;
	border: 1px solid var(--color-accentBorder);
	width: fit-content;
	font-size: 1.4rem;
	line-height: 1.1;
	text-align: center;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .title {font-weight: bold;}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .date {}

section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	bottom: 2.5rem;
	aspect-ratio: 1;
	width: 1.8rem;
	background-image: url(/-/media/Project/globeride/daiwa_com_jp/top/arrow_normal_s_bf98141f.svg);
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: white;
	font-size: 0;
	filter: invert(1);
	border-radius: .6rem;
}


/* ページネーション */
section.GeneralList.GeneralList_listPage > .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 2rem;
	margin-top: 4rem;
	margin-bottom: 6rem;
	flex-wrap: wrap;
}
section.GeneralList.GeneralList_listPage > .pagination a,
section.GeneralList.GeneralList_listPage > .pagination span.prev,
section.GeneralList.GeneralList_listPage > .pagination span.next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6rem;
	height: 6rem;
	/* font-family: var(--ff-en); */
	font-size: 1.8rem;
	font-weight: bold;
	border: 1px solid var(--color-accentColor);
	border-radius: 100%;
	color: var(--color-accentColor);
}
section.GeneralList.GeneralList_listPage > .pagination .arrow.noArrow {opacity: 0;}
section.GeneralList.GeneralList_listPage > .pagination .arrow > a,
section.GeneralList.GeneralList_listPage > .pagination .arrow > span.prev,
section.GeneralList.GeneralList_listPage > .pagination .arrow > span.next {
	font-size: 2.7rem;
	border: none;
	font-weight: normal;
	padding-bottom: 0.2em;
}
section.GeneralList.GeneralList_listPage > .pagination > li.arrow {
	margin-right: -1em;
	margin-left: -1em;
}
section.GeneralList.GeneralList_listPage > .pagination .is-current a {
	color: #fff;
	border-color: var(--color-accentColor);
	background: var(--color-accentColor);
}


/*============================================================================*/
/* Unique ID/Class */

/*============================================================================*/




/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 767px) {/* // Mobile // */
/*============================================================================*/


section.GeneralList.GeneralList_listPage {
	margin-top: 5rem;
	margin-left: 1.95rem;
	margin-right: 1.95rem;
}


section.GeneralList.GeneralList_listPage > .GeneralList_list {
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 2rem;
}

section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a {
	display: grid;
	grid-template-columns: 17.6rem 1fr;
	grid-template-rows: repeat(2, auto) 1fr;
	grid-gap: .6rem 1.4rem;
	padding-bottom: 0rem;
	border-bottom: none;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a::after {
	opacity: 0;
	bottom: 2.2rem;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .bgImage {
	grid-area: 1 / 1 / 4 / 2;
	border-radius: 1.2rem;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .category {
	position: static;
	grid-area: 1 / 2 / 2 / 3;
	font-size: 1.1rem;
	padding: 0.1em 1.5em;
	min-width: 9rem;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .title {
	grid-area: 2 / 2 / 3 / 3;
	font-size: 1.4rem;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .title:last-child {/* .date がない場合 */
	/* margin-bottom: 1.5rem; */
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .date {
	grid-area: 3 / 2 / 4 / 3;
	font-size: 1.4rem;
	/* align-self: end; */
}




section.GeneralList.GeneralList_listPage .GeneralList_categoryList {
	gap: 1rem;
	margin-bottom: 4rem;
	justify-content: flex-start;
}
section.GeneralList.GeneralList_listPage .GeneralList_categoryList > li {
	width: calc( calc( 100% - 1rem * 1 ) / 2 );
}
section.GeneralList.GeneralList_listPage .GeneralList_categoryList > li > a {}


/*============================================================================*/
/* Unique ID/Class */

/*============================================================================*/
}




/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (min-width: 768px) {/* // PC // */
/*============================================================================*/


section.GeneralList.GeneralList_listPage {
	margin-top: 7rem;
	margin-left: 10rem;
	margin-right: 10rem;
}


section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a {
	display: flex;
	flex-direction: column;
	padding-bottom: 2rem;
	width: 100%;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .category {
	min-width: 10rem;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .title {
	flex: 1;
	margin-top: 3rem;
	font-size: 1.8rem;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .title:last-child {/* .date がない場合 */
	margin-bottom: 4rem;
}
section.GeneralList.GeneralList_listPage > .GeneralList_list > li > a > .date {
	margin-top: 2rem;
	font-size: 1.8rem;
	min-height: 1em;
}

/*============================================================================*/
/* Unique ID/Class */

/*============================================================================*/
}




/* - - - - - - - - - - - - - - - - - - -
https://---/general_list_base.css
ID = {}
- - - - - - - - - - - - - - - - - - - */