main::after {
	background-color: #ebeff2;
}
.page-title {
	background-image: url("../images/works/mv.webp");
}
.section {
	padding: 140px 0;
}
.section:nth-child(odd) {
	background-color: #fff;
}
.section .ttl {
	margin-bottom: 20px;
}
.section .desc {
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	.section {
		padding: 60px 0;
	}
}


/*------------------------------------
#intro
------------------------------------*/
#intro {
	position: relative;
	padding-top: 80px;
	z-index: 2;
}
.intro__txt {
	width: calc(100% - 7.29vw);
	text-align: center;
	margin: auto;
}
#intro .anchor {
	padding-top: 80px;
}
@media screen and (max-width: 768px) {
	#intro {
		padding-top: 30px;
	}
	.intro__txt {
		text-align: left;
	}
	#intro .anchor {
		padding-top: 30px;
	}
}


/*------------------------------------
.works__wrapper
------------------------------------*/
.works__wrapper {
	position: relative;
	min-height: 600px;
	margin-bottom: 80px;
}
section > .container,
.works__wrapper .container {
	max-width: 1260px;
}
.works__wrapper .container > * {
	width: 50%;
}
.works__wrapper .img {
	position: absolute;
	top: 0;
	height: 600px
}
section:nth-child(odd) .img {
	right: 0;
}
section:nth-child(odd) .img img {
	border-radius: 50vh 0 0 50vh;
}
section:nth-child(even) .img {
	left: 0;
}
section:nth-child(even) .img img {
	border-radius: 0 50vh 50vh 0;
}
.works__wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.works__wrapper .txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 600px;
}
section:nth-child(odd) .txt {
	margin-right: auto;
	padding-right: 5%;
}
section:nth-child(even) .txt {
	margin-left: auto;
	padding-left: 5%;
}
@media screen and (max-width: 768px) {
	.works__wrapper {
		min-height: auto;
		margin-bottom: 30px;
	}
	.works__wrapper .container {
		display: block;
		width: 100%;
		height: auto;
	}
	.works__wrapper .container > * {
		width: 100%;
	}
	.works__wrapper .img {
		position: static;
		height: auto;
	}
	section:nth-child(odd) .img {
		padding-left: 7.29vw;
	}
	section:nth-child(even) .img {
		padding-right: 7.29vw;
	}
	.works__wrapper .txt {
		width: calc(100% - 7.29vw);
		height: auto;
		margin: auto;
	}
	section:nth-child(odd) .txt,
	section:nth-child(even) .txt {
		padding: 30px 0 0;
	}
}

/*.works__inner*/
.works__inner:not(:last-child) {
	margin-bottom: 35px;
}
.works__inner h3 {
	display: flex;
	align-items: center;
	background-color: #002965;
	border-radius: 10px 10px 0 0;
	width: fit-content;
	height: 40px;
	font-size: 20px;
	color: #fff;
	padding: 0 15px;
}
.works__inner p {
	background-color: #fff;
	border-radius: 0 10px 10px 10px;
	padding: 30px 40px;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
	.works__inner h3 {
		font-size: 16px;
	}
	.works__inner p {
		padding: 20px 30px;
	}
}


/*------------------------------------
.works__container
------------------------------------*/
.works__container {
	max-width: 900px;
	width: calc(100% - 7.29vw);
	margin: auto;
}
.works__container:not(:last-child) {
	padding-bottom: 60px;
}
.works__container h3 {
	display: flex;
	align-items: center;
	background-color: #002965;
	border-radius: 10px 10px 0 0;
	width: fit-content;
	height: 50px;
	font-size: 25px;
	color: #fff;
	padding: 0 20px;
}
.works__block {
	background-color: #fff;
	border-radius: 0 10px 10px 10px;
	padding: 60px 70px 70px;
}
section:nth-child(odd) .works__block {
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
	.works__container:not(:last-child) {
		padding-bottom: 30px;
	}
	.works__container h3 {
		height: 40px;
		font-size: 16px;
	}
	.works__block {
		padding: 20px 30px 30px;
	}
}

/*.works__box*/
.works__box {
	position: relative;
	padding-left: 40px;
}
.works__box:not(:last-child) {
	padding-bottom: 30px;
}
.works__box::before {
	content: "";
	position: absolute;
	top: 15px;
	left: 7px;
	background-image: repeating-linear-gradient(180deg,#5c738d,#5c738d 6px,transparent 6px,transparent 12px);
	background-position: right top;
	background-repeat: repeat-y;
	background-size: 2px 100%;
	width: 2px;
	height: 100%;
	opacity: .2;
}
.works__box:last-child::before {
	content: none;
}
.works__box .line {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
	height: 100%;
}
.works__box .line::before,
.works__box .line::after {
	content: "";
	display: block;
	position: absolute;
}
.works__box .line::before {
	top: 10px;
	left: 0;
	background-color: rgba(0, 91, 172, .1);
	border-radius: 50%;
	width: 16px;
	height: 16px;
}
.works__box .line::after {
	top: 15px;
	left: 5px;
	background-color: #005bac;
	width: 6px;
	height: 6px;
	-webkit-filter: blur(1.5px);
	filter: blur(1.5px);
}
.works__sub {
	display: flex;
	gap: 40px;
}
.sub-img {
	order: 1;
	flex: 0 1 280px;
	max-width: 280px;
}
.sub-img img {
	border-radius: 16px;
}
.sub-txt {
	order: 2;
	flex: 1 1 400px;
	min-width: 0;
}
.works__box time {
	color: #005bac;
}
.works__box .year {
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.works__box:not(:last-child) {
		padding-bottom: 20px;
	}
	.works__sub {
		display: block;
	}
	.sub-img {
		margin-top: 10px;
	}
}
