@charset "utf-8";
/* CSS Document */
.cate_list_wrap{
	height: 150px;
	background: linear-gradient(-90deg,#BA02D5 , #0623FD);
	position: relative;
}
.cate_list{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: flex-end;
}
.cate_list li.active a{
	color: #fff;
	background: #d600fc;
	line-height: 4em;
}
.cate_list li a{
	width: 200px;
	background: #fff;
	line-height: 3em;
	border-radius: 10px 10px 0px 0px;
}
.tab_content{
	display: none;
}
.tab_content:first-of-type{
	display: block;
}

.filter {
    background: #f8f2fc;
    padding: 30px;
    box-sizing: border-box;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 0px 0px 8px 8px;
}

.filter a {
    display: inline-block;
    background: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    -webkit-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.tags li{
	margin: 3px;
}

.filter a:hover{
	background: #d600fc;
	color: #fff;
}
.filter a i{
	color: #d600fc;
    -webkit-transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.filter a:hover i{
	color: #fff;
}
.filter a {
  position: relative;
}

.filter a.active:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-color: #d600fc transparent transparent transparent;
}

.is-animated {
  animation: .6s zoom-in;
}

@keyframes zoom-in {
  0% {
   transform: scale(.1);
  } 
  100% {
    transform: none;
  }
}
.cate-title .en{
	letter-spacing: 2.6px;
}

.all_box_wrap{
	align-items: stretch;
	justify-content: flex-start;
}
.all_box_wrap .cate_box_wrap{
	border-radius: 10px;
	overflow: hidden;
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 20px;
	background: #f8f2fc;
	    transition: all .2s ease-in-out;
	cursor: pointer;
}
.all_box_wrap .cate_box_wrap:nth-of-type(3n){
	margin-right: 0px;
}
.all_box_wrap .cate_box_wrap .cate_box{
	background: #f8f2fc;
	position: relative;
}
.all_box_wrap .cate_box_wrap:hover{
	box-shadow: 0 5px 10px rgba(0,0,0,.05), 0 5px 10px rgba(0,0,0,.10);	
}

.all_box_wrap .cate_box:nth-of-type(3n){

}
.all_box_wrap .cate_box::after{
	content: "";
	width: 30px;
	height: 30px;
	background-image: url("../img/arrow.png");
	background-size: contain;
	position: absolute;
	bottom: 20px;
	right: 20px;
}
.sub_cate_wrap{
	max-width: 1400px;
	width: 90%;
	margin: 100px auto ;
}
.cate_box .txt_wrap{
	padding: 20px 20px 50px 20px;
	}
.cate_box .tag{
	background: #d600fc;
	color: #fff;
	display: inline-block;
	border-radius: 20px;
	padding: 5px 10px;
	font-size: 12px;
	margin-bottom: 4px;
}


/*modal*/
#modal .cate_box_item{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	max-width: 900px;
	z-index: 999;
	overflow:auto;
	max-height:100%;
	height: 50vh;
	padding: 5%;
	background: #fff;
	border-radius: 40px;
}
#modal .modal_bg{
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(45deg, #2c00ff,#e400ff);
	z-index: 99;
	pointer-events: none;
}
#modal .cate_box_item .close span,#modal .cate_box{cursor: pointer;}
.close span{
	border: #ddd 2px solid;
	border-radius: 50px;
	color: #2b2170;
	background: #fff;
	padding: 10px 0px;
	display: block;
	width: 150px;
	text-align: center;
	margin: 50px auto 0px;
}
.hamburger{z-index:9997;}


/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
	.all_box_wrap .cate_box_wrap{
	width: 49%;
	margin-right: 2%;
}
.all_box_wrap .cate_box_wrap:nth-of-type(3n){
	margin-right: 2%;
}
.all_box_wrap .cate_box_wrap:nth-of-type(2n){
	margin-right: 0px;
}

}
/* ---------- スマホ ---------- */
@media screen and (max-width: 667px){
	.content-wrap-inner{border: none;}
	.all_box_wrap .cate_box_wrap{
	width: 100%;
	margin-right: 0px;
}
.all_box_wrap .cate_box_wrap:nth-of-type(3n){
	margin-right: 0px;
}
	.cate_list li a{width: 140px;}
	.filter a{margin-bottom: 5px;}
}

