@charset "utf-8";

/*-----------------------------------------------------------
カタログ（カテゴリ）
-----------------------------------------------------------*/

.cateBlock > section {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 15px 5%;
}

.cateBlock {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.cateLink {
    max-width: 320px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 2%;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #3C3C3C;
    background: #fff;
    border-radius: 10px;
    transition: all .5s;
    font-weight: 400;
    box-shadow: 0.1px 0.1px 10px 0 rgba(0, 0, 0, 0.16);
    margin: auto;
}

.cateLink:hover {
    color: #3C3C3C;
    transform: translateY(-10px);
}

/*-----------------------------------------------------------
カタログ（一覧）
-----------------------------------------------------------*/

.catalogBlock {
    margin: 40px auto 0;
}

.catalogBlock > section {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px 2%;
}

.catalogItem {
    background: #fff;
    border-radius: 10px;
    padding: 20px 015px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.16);
}

.catalogItem > .cate {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.05em;
    background: #E6A4A9;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 0 15px;
}

.catalogItem > .tit {
    font-size: 12px;
    font-weight: normal;
    margin: 0 0 15px;
    padding: 0 0 10px;
    border-bottom: solid 1px #DDC9A3;
}

.content {
    font-size: 12px;
}

.catalogItem > .imgControl {
    background: #eee;
    margin: 0 0 15px;
}

.catalogItem > .imgControl > a {
    display: block;
    position: relative;
    padding: 0 0 75%;
    transition: .3s;
}

.catalogItem > .imgControl > a:hover {
    opacity: 0.6;
}

.catalogItem > .imgControl > a > img {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.catalogItem > .imgControl > a + .noImg {
    display: none;
}

.catalogTable {
    width: 100%;
    font-size: 11px;
}

.catalogTable th, .catalogTable td {
    display: block;
    border: solid 1px #E6A4A9;
    border-bottom: none;
    padding: 10px;
}

.catalogTable tr:last-child td {
    border-bottom: solid 1px #E6A4A9;
}

.catalogTable th {
    background: #fdf8f9;
    color: #E6A4A9;
}

.catalogTable td {
    text-align: right;
}

.catalogItem > .pdfBtn {
    max-width: 208px;
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #3C3C3C;
    background: #fff;
    position: relative;
    border-radius: 24px;
    transition: all .5s;
    font-weight: 400;
    box-shadow: 0.1px 0.1px 10px 0 rgba(0, 0, 0, 0.16);
    margin: 30px auto 0;
}

.catalogItem > .pdfBtn:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    right: 16px;
    margin: auto;
    background: url(/system_panel/uploads/images/in_arrow_icon.svg)no-repeat;
    background-size: 100%;
    transition: all .5s;
}

.catalogItem > .pdfBtn:hover {
    color: #3C3C3C;
}

.catalogItem > .pdfBtn:hover:before {
    transform: translate(7px, 0px);
    transition: all .5s;
}

/*-----------------------------------------------------------
カタログ（ページャー）
-----------------------------------------------------------*/

.webgene-pagination {
	width: 100%;
	grid-column: 1 / 3;
}

.webgene-pagination > ul{
padding: 0;
display: flex;
justify-content: center;
}

.webgene-pagination > ul > li{
display: flex;
}

.webgene-pagination > ul > li{
margin: 40px 10px 0;
height: 48px;
width:100%;
max-width: 48px;
font-size: 16px;
font-weight: 500;
line-height: 1em;
list-style: none;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}

.webgene-pagination > ul > li.selected > a{
color: #fff;
background: #E6A4A9;
cursor: inherit;
}

.webgene-pagination > ul > li.selected > a:hover {
	color: #fff;
	background-color: #3C3C3C;
}

.webgene-pagination > ul > li > a{
width: 100%;
height: 40px;
width: 40px;
color: #3D3732;
font-weight: 900;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
}
.webgene-pagination > ul > li > a:hover{
color: #fff;
background-color: #3C3C3C;
text-decoration: none;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	position: relative;
	height: 40px;
	width: 40px;
}

.webgene-pagination>ul>.prev>a:hover,
.webgene-pagination>ul>.next>a:hover {
	opacity: .5;
	background-color: initial;
}


.webgene-pagination>ul>.prev>a::before,
.webgene-pagination>ul>.next>a::before {
	content: "";
	display: block;
	transition: all .3s;
}

.webgene-pagination>ul>.prev>a::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 16px 10px 0;
	border-color: transparent #E6A4A9 transparent transparent;
}

.webgene-pagination>ul>.next>a::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #E6A4A9;
}

.dtlPager {
	display: flex;
	justify-content: space-between;
	margin: 80px 0 0;
}

.webgene-item-aroundPageLink {
	color: #333;
	font-size: 14px;
}

/*-----------------------------------------------------------
サイズ展開について
-----------------------------------------------------------*/

.catalogSizeTr {
    border-bottom: solid 1px #ccc;
}

.catalogSizeTh:not(:first-child) {
    border-left: solid 1px #ccc;
}

.catalogSizeTh02:not(:first-child) {
    border-left: solid 1px #3C3C3C;
}

.catalogSizeTd:not(:first-child) {
    border-left: solid 1px #ddd;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 670px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */ 

/*-----------------------------------------------------------
カタログ（一覧）
-----------------------------------------------------------*/

.catalogBlock > section {
    grid-template-columns: repeat(2,1fr);
}

.catalogItem > .cate {
    font-size: 12px;
}

.catalogItem > .tit {
    font-size: 16px;
}

.catalogTable {
    font-size: 14px;
}

.content {
    font-size: 16px;
}

.catalogTable th, .catalogTable td {
    display: table-cell;
    border: solid 1px #E6A4A9;
    border-bottom: solid 1px #E6A4A9;;
    padding: 10px;
}

/*-----------------------------------------------------------
カタログ（ページャー）
-----------------------------------------------------------*/

.webgene-pagination {
	grid-column: 1/3;
}
    
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
} /* min-width: 670px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 768px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */ 

/*-----------------------------------------------------------
カタログ（カテゴリ）
-----------------------------------------------------------*/

.cateBlock > section {
    grid-template-columns: repeat(2,1fr);
}
    
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
} /* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 1024px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */ 

/*-----------------------------------------------------------
カタログ（カテゴリ）
-----------------------------------------------------------*/

.cateBlock > section {
    grid-template-columns: repeat(3,1fr);
    gap: 30px 5%;
}

.cateLink {
    font-size: 14px;
    padding: 20px 2%;
}

/*-----------------------------------------------------------
カタログ（一覧）
-----------------------------------------------------------*/

.catalogBlock {
    margin: 80px auto 0;
}

.catalogBlock > section {
    grid-template-columns: repeat(3,1fr);
    gap: 40px 2%;
}

.catalogItem {
    padding: 30px 6%;
}

.catalogItem > .cate {
    font-size: 14px;
    margin: 0 0 25px;
}

.catalogItem > .tit {
    font-size: 20px;
    margin: 0 0 25px;
}

/*-----------------------------------------------------------
カタログ（ページャー）
-----------------------------------------------------------*/

.webgene-pagination {
	grid-column: 1/4;
}
    
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
} /* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */