@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: 300px;
	background: #fff;
	line-height: 3em;
	border-radius: 10px 10px 0px 0px;
}
.tab_content{
	display: none;
}
.tab_content:first-of-type{
	display: block;
}


/* 大事なポイント
   ----------------------------------------------------------------- */
.title-wrap{
	
}
.point .box_wrap{
	background: #f8f2fc;
	border-radius: 20px;
	padding: 40px;
	box-sizing: border-box;
}
.point .box_wrap .box{
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	width:90%;
	margin: 0 auto 50px;
	box-sizing: border-box;
}
.point .box_wrap .box ul li{position: relative; padding-left: 20px;}
.point .box_wrap .box ul li::before{
	content: "";
	background: #d600fc;
	width: 5px;
	height: 5px;
	border-radius: 10px;
	position: absolute;
	top: 12px;
	left: 0px;
}
.point .title{
	font-size: 26px;
    margin-top: -5px;
}


/* 制作の流れ
   ----------------------------------------------------------------- */
.flow-wrap{
	background: #f8f2fc;
	border-radius: 20px;
	padding: 40px;
	box-sizing: border-box;
	position: relative;
}
.flow-wrap::after{
    content: "";
    height: 105%;
    width: 5px;
    top: -40px;
    left: 70px;
    position: absolute;
    background-image: url(../img/dot.png);
    background-repeat: repeat-y;
    background-size: contain;
}
.flow-wrap .step{
    padding-left: 107px;
    margin-bottom: 15px;
    position: relative;
}
.flow-wrap .step::before{
    content: "";
    position: absolute;
    top: 14px;
    left: 26px;
    width: 15px;
    height: 15px;
    border-radius: 30px;
    background: #5532E4;
    z-index: 1;
}
.flow-wrap .txt-wrap{
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	width:90%;
	margin: 0px 0px 50px 90px;
	box-sizing: border-box;
}
.flow-wrap a{
	background: #5532e4;
	text-align: center;
	color: #fff;
	display: inline-block;
	width: 200px;
	padding: 10px 0px;
	border-radius: 100px;
}
.flow-wrap a:hover{
	background: #4527c1;
}

/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
.cate_list li a{
	width: 200px;
}
.point .box_wrap .box{width: 100%;}
.flow-wrap .txt-wrap{width: 80%;}
}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){

.cate_list_wrap{
	background: none;
	height: auto;
	margin-top: 30px;
	}
.cate_list{position: static;}
.cate_list li.active a{
	line-height: 2.5em;
}
.cate_list li a{
	border: 2px solid #d600fc;
	display: block;
	width: 80%;
	line-height: 2.5em;
	border-radius: 60px;
	box-sizing: border-box;
	margin: 10px auto 10px;
}
.point .box_wrap{padding: 40px 20px 10px;}
.point .box_wrap .box{padding: 25px;}
.point .title{font-size: 18px;}
.flow-wrap{padding: 20px;}
.flow-wrap .txt-wrap{
	width: 100%;
	padding: 25px;
	margin: 0 auto;
}
.flow-wrap .step{padding-left: 60px;}
.flow-wrap::after {
   display: none;
}
.flow-wrap .step::before {
    top: 17px;
    left: 31px;
}
}