@charset "utf-8";
#banner {
	position: relative;
	margin-top: 100px;
	width: 100%;
	height: 600px;
	overflow: hidden;
}
#banner:empty {
	height: 0;
}
#banner>* {
	position: absolute;
	z-index: 1;
}
#banner>div {
	z-index: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: left .3s;
	display: none;
}
#banner>div:not(:empty):after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,.75) 5%, rgba(0,0,0,0) 95%);
}
#banner .wrap {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	align-items: center;
}
#banner .b_s {
	max-width: 60%;
	color: #fff;
}
#banner .b_s>h1 {
	font-size: 30px;
	line-height: 40px;
	max-height: 120px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#banner .b_s>h1+div {
	margin: 10px 0;
	height: 3px;
	border-radius: 2px;
    background: linear-gradient(to right, rgba(255,204,0,1) 10%, rgba(255,204,0,0));
}
#banner .b_s>p {
	max-height: 72px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#banner .b_s>*+a {
	margin-top: 20px;
}
#banner>ul {
	left: 20px;
	right: 20px;
	bottom: 0;
	display: flex;
	justify-content: center;
	overflow-x: auto;
	overflow-y: hidden;
}
#banner>ul li {
	flex: 0 2 auto;
	position: relative;
	display: inline-block;
	margin: 0 5px 20px;
	width: 128px;
	height: 72px;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	transition: all .3s;
}
#banner>ul li:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 5px;
	border-radius: 3px;
    transition: all .3s;
}
#banner>ul li:hover:after {background-color: #fff;}
#banner>ul .s {
	flex: 0 1 auto;
	cursor: default;
}
#banner>ul .s:after {
	background-color: #fc0 !important;
}
#banner>ul .s:hover {box-shadow: none}
#banner .p_p, #banner .n_p {
	position: absolute;
	top: 50%;
	margin-top: -40px;
	width: 40px;
	height: 80px;
	cursor: pointer;
	background-color: rgba(127,127,127,.5);
	opacity: 0;
	transition: opacity .3s;
}
#banner .n_p {right: 0}
#banner .p_p:before, #banner .n_p:before {
	content: '';
	position: absolute;
	top: 22px;
	width: 35px;
	height: 35px;
	border: 1px solid #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-moz-transform: rotate(45deg);	
	transform: rotate(45deg);
}
#banner .p_p:before {
	left: 13px;
	border-top: none;
	border-right: none;
}
#banner .n_p:before {
	right: 13px;
	border-left: none;
	border-bottom: none;
}
#banner:hover .p_p, #banner:hover .n_p {opacity: .5}
#banner .p_p:hover, #banner .n_p:hover {opacity: 1}
.gap1 {
	height: 100px;
}
.container {
	display: flex;
	flex-wrap: wrap;
}
.container>div {
	flex: 0 0 50%;
}
.container .t_w {
	box-sizing: border-box;
	padding: 60px;
	background-color: #fff;
}
.container .t_w h2 {
	font-size: 21px;
	padding-bottom: 15px;
	position: relative;
}
.container .t_w h2:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	border-radius: 2px;
    background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
}
.container .t_w p {
	padding: 15px 0;
}
.container .t_w>a {
	float: left;
}
.container.c_1 .t_w>a {
	float: right;
}
.container .t_w a:hover {
	background-color: #fd0;
}
.container .i_w {
	position: relative;
}
.container .i_w figure {
	position: absolute;
	width: 100%;
	height: 100%;
}
.col_3 {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: min(2vw, 25px);
}
.col_3>div {
	flex: 0 0 calc((100% - min(2vw, 25px) * 2) / 3);
	margin-bottom: 30px;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.25);
}

.col_3 figure {
	width: 100%;
	aspect-ratio: 16/9;
	border-bottom: 4px solid #fc0;
}
.col_3 h2 {
	font-size: 26px;
	padding: 25px 30px 10px;
}
.col_3 h3 {
	font-size: 22px;
	padding: 25px 30px 10px;
}
.col_3 p {
	font-size: 16px;
	line-height: 22px;
	padding: 0 30px;
}
.col_3 h2+p {
	padding-bottom: 20px;
}
.col_3 h3+p {
	max-height: 72px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.col_3 span {
	float: left;
	color: #999;
	margin: 10px 0 20px 30px;
}
.col_3 a {
	float: right;
	font-weight: bold;
	margin: 10px 30px 20px 0;
}
.col_3 a:after {
	content: "\e006";
	margin-left: 5px;
	font-family: ico;
}
.sBanner {
	height: 300px;
	background: url(../upload/b_1.jpg) center no-repeat rgba(0,0,0,.5);
	background-size: cover;
	background-blend-mode: multiply;
}
.sBanner .wrap {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
}
.sBanner .wrap h2 {
	padding: 10px 0;
	font-size: 26px;
}
.sBanner .wrap p {
	padding: 10px 0;
	font-size: 16px;
}
#social {
	background-image: url(../upload/b_2.jpg);
}
#social .wrap p {
	max-width: 620px;
}
.s_title {
	font-size: 26px;
	padding-bottom: 40px;
	text-align: center;
}
.s_foot {
	text-align: center;
}
.p_list {
	display: flex;
	margin: 0 auto 30px;
	justify-content: center;
	flex-wrap: wrap;
	gap: min(2vw, 25px);
}
.p_list>a {
	flex: 0 0 calc((100% - min(2vw, 25px) * 3) / 4);
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.p_list>a figure {
	width: 100%;
	aspect-ratio: 4/3;
	border-bottom: 1px solid #ccc;
}
.p_list>a h3 {
	margin: 10px;
	max-height: 50px;
	font-size: 15px;
	line-height: 25px;
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media screen and (max-width:991px){
	#banner {
		margin-top: 0;
	}
	#banner {
		background-color: #000;
	}
	#banner>div {
		height: 488px;
	}
	#banner>div:not(:empty):after {
		background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 95%);
	}
	#banner .wrap {
		align-items: flex-end;
	}
	#banner .b_s {
		max-width: none;
		width: 100%;
	}
	#banner .btn {
		display: block;
		text-align: center;
	}
	.container.c_1 {
		margin-bottom: 30px;
		order: -1;
	}
	.container.c_1 .i_w {
		order: -1;
	}
	.container>div {
		flex: 0 0 100%;
	}
	.container .i_w {
		height: 300px;
	}
	.container .t_w {
		padding: 5%;
	}
	.container .t_w>a {
		float: none!important;
		display: block;
		text-align: center;
	}
	.col_3>div {
		flex: 0 0 100%;
	}
	.col_3 figure {
		height: 300px;
		aspect-ratio: initial;
	}
	.gap1 {
		height: 50px;
	}
	.p_list>a {
		flex: 0 0 calc((100% - 2vw * 2) / 3);
	}
	.p_list>a:nth-child(n+10) {
		display: none;
	}
}
@media screen and (max-width:600px){
	.p_list>a {
		flex: 0 0 calc((100% - 2vw) / 2);
	}
	.p_list>a:nth-child(n+7) {
		display: none;
	}
}
@media screen and (max-width:350px){
	.sBanner .wrap h2 {
		padding: 6px 0;
		font-size: 22px;
	}
	.sBanner .wrap p {
		padding: 6px 0;
		font-size: 14px;
	}
}