@charset "utf-8";
/* CSS Document */

/* ----- ページごとメニュースタイル ----- */
.header .head_nav > .ul > .li:nth-of-type(3) .en{
	background-color: #EF8200;
	color: #fff;
}
.header .head_nav > .ul > .li:nth-of-type(3) > a:hover > .jp{
	opacity: 0;
	top: 50%;
}


.catelinks{
	justify-content: flex-start;
	align-items: stretch;
	padding: 0 2px;
}
.catelinks .catelink_bt{
	width: calc(100% / 4);
	font-family: "Jersey 25", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	font-size: clamp(22px,2.4vw,34px);
	font-weight: 400;
	padding: 15px;
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
	border: 2px solid #1A1A1A;
	outline: 2px solid #1A1A1A;
	cursor: pointer;
	transition: ease 0.3s;
}
.catelinks .catelink_bt.active{
	pointer-events: none;
	background-color: #1A1A1A;
	color: #fff;
}
.catelinks .catelink_bt:not(.active):hover{
	background-color: #E4E4E4;
}

.main-wrap .contents .boxwrap{
	gap: 80px;
	align-items: flex-start;
	justify-content: flex-start;
}
.main-wrap .contents .boxwrap .box{
	width: calc(100% / 2 - 80px / 2);
}
.main-wrap .contents .boxwrap .box .imgbox{
	position: relative;
	overflow: hidden;
	aspect-ratio: 1.6 / 1;
	border-radius: 40px;
}
.main-wrap .contents .boxwrap .box .imgbox .cate{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px 20px;
	background-color: #1A1A1A;
	color: #fff;
	border-top-right-radius: 40px;
	min-width: 80px;
	text-align: center;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.main-wrap .contents .boxwrap{
		gap: 60px;
	}
	.main-wrap .contents .boxwrap .box{
		width: calc(100% / 2 - 60px / 2);
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.main-wrap .contents .boxwrap{
		gap: 60px 50px;
	}
	.main-wrap .contents .boxwrap .box{
		width: calc(100% / 2 - 50px / 2);
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.catelinks .catelink_bt{
		width: calc(100% / 3);
		padding: 10px;
	}
	
	.main-wrap .contents .boxwrap{
		gap: 60px 30px;
	}
	.main-wrap .contents .boxwrap .box{
		width: calc(100% / 2 - 30px / 2);
	}
	.main-wrap .contents .boxwrap .box .imgbox{
		border-radius: 20px;
	}
	.main-wrap .contents .boxwrap .box .imgbox .cate{
		padding: 10px 20px;
		border-top-right-radius: 20px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.catelinks{
		padding: 0 22px;
	}
	.catelinks .catelink_bt{
		width: calc(100% / 2);
		padding: 5px 10px;
	}
	
	.main-wrap .contents .boxwrap{
		gap: 60px;
	}
	.main-wrap .contents .boxwrap .box{
		width: 100%;
	}
	.main-wrap .contents .boxwrap .box .imgbox{
		border-radius: 20px;
	}
	.main-wrap .contents .boxwrap .box .imgbox .cate{
		padding: 6px 15px;
		border-top-right-radius: 20px;
	}
	.main-wrap .contents .boxwrap .box h2{
		margin-bottom: 15px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

