section.fv {
	width: 100%;
	height: calc(100vh - var(--header-height));
	box-sizing: border-box;
}
section.fv div.fv-inner {
	width: 100%;
	height: calc(100vh - var(--header-height));;
	padding: 3vw;
}
section.fv div.fv-inner div.fv-bg {
	position: absolute;
	width: 93vw;
}
section.fv div.fv-inner div.fv-bg img {
	height: calc(89vh - var(--header-height));
	width: 100%;
	object-fit: cover;
}
section.fv div.fv-inner div.text {
	position: absolute;
	bottom:7vw;
	left: 7vw;
	color: #fff;
}
section.fv div.fv-inner div.text h1.fv-title {
	font-size: 4.5vw;
	margin: 0;
	line-height: 1;
}
section.fv div.fv-inner div.text p.fv-subtitle {
	font-size: 2.5vw;
	margin: 0 0 3vw;
}
section.fv div.fv-inner div.text p.fv-description {
	font-size: 1.5vw;
	margin: 0;
}


section.service {
	margin-bottom: 5rem;
}
section.service div.service-header {
	position: relative;
	width: 100%;
	height: 18vw;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 3;
	color: #fff;
}
section.service div.service-header div.service-header-bg {
	position: absolute;
	width: 100%;
	height: 18vw;
	z-index: -1;
}
section.service div.service-header div.service-header-bg div.service-header-bg-shadow {
	width: inherit;
	height: inherit;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #d9d9d991;
}
section.service div.service-header div.service-header-bg img {
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
}
section.service div.service-header h2 {
	margin: 0;
	font-size: 3vw;
}
section.service div.service-header p {
	margin: 0;
	font-size: 1.5vw;
	text-align: center;
}
section.service div.service-grid {
	width: 100%;
	margin: 0 auto;
	padding: 0 3vw;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
section.service div.service-grid div.service-item {
	width: 32.8%;
	margin: 1% auto .5%;
	position: relative;
	background: #F6F6F6;
	padding: 2rem;
	box-shadow: 0 3px 6px #b2b2b2;
}
section.service div.service-grid div.service-item div.service-tag {
	text-align: center;
	background: #000;
	width: 50%;
	margin: 0 auto;
	padding: .5rem 1rem;
	position: absolute;
	top: -1vw;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 5;
	border: .5rem solid #fff;
	border-radius: 10px;
	font-size: 1.75vw;
	color: #fff;
	font-weight: 500;
}
section.service div.service-grid div.service-item h3.service-title {
	text-align: center;
	font-size: 1.5rem;
	color: #3378B7;
}
section.service div.service-grid div.service-item div.service-thumb {
	width: 10vw;
	height: 10vw;
	border-radius: 50%;
	margin: 0 auto;
}
section.service div.service-grid div.service-item div.service-thumb img {
	width: 10vw;
	height: 10vw;
	object-fit: cover;
	border-radius: 50%;
}
section.service div.service-grid div.service-item p.service-lead {
	margin: 2rem auto 1rem;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	width: 90%;
}
section.service div.service-grid div.service-item p.service-meta {
	margin: 0 auto .5rem;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	width: 90%;
}



section.team {
	background: #B0D9FF;
	padding-bottom: 5rem;
}
section.team div.team-header {
	padding: 3rem 0;
}
section.team div.team-header h2 {
	margin: 0;
	font-size: 3vw;
	text-align:center;
}
section.team div.team-header p {
	margin: 0;
	font-size: 1.5vw;
	text-align: center;
}
section.team div.team-grid {
	width: 100%;
	padding: 0 3vw;
	display: flex;
	justify-content: space-between;
}
section.team div.team-grid div.team-member {
	width: 23%;
	border: 1px solid #000;
	padding: 2rem;
	position: relative;
}
section.team div.team-grid div.team-member div.team-label {
	position: absolute;
	writing-mode: vertical-rl;
	font-size: 1.5rem;
	font-weight: 700;
	left: 2vw;
}
section.team div.team-grid div.team-member div.team-image {
	width: 12vw;
	height: 12vw;
	margin: 0 auto;
}
section.team div.team-grid div.team-member div.team-image img {
	width: 12vw;
	height: 12vw;
	object-fit: cover;
	border-radius: 50%;
}
section.team div.team-grid div.team-member h3.team-role {
	text-align: center;
	font-size: 2rem;
	margin: .5rem 0 0;
}
section.team div.team-grid div.team-member p.team-desc {
	margin: 0;
	font-size: 1.2rem;
}




section.works {
	position: relative;
}
section.works div.works-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: -webkit-fill-available;
	width:100%;
	z-index:-1;
}
section.works div.works-bg div.works-header-bg-shadow {
	position: absolute;
	top: 0;
	left: 0;
	height: -webkit-fill-available;
	width: 100%;
	z-index: 2;
	background: #ffffffc2;
}
section.works div.works-bg img {
	position: absolute;
	top: 0;
	left: 0;
	height: -webkit-fill-available;
	width:100%;
	z-index:1;
	object-fit: cover;
}
section.works div.works-header {
	padding: 3rem 0;
}
section.works div.works-header h2 {
	margin: 0;
	font-size: 3vw;
	text-align: center;
}
section.works div.works-header p {
	margin: 0;
	font-size: 1.5vw;
	text-align: center;
}
section.works div.works-filter {
	width: 100%;
	padding: 0 3vw;
}
section.works div.works-filter div.bar {
	width: 20rem;
	height: 4px;
	background: #000;
}
section.works div.works-filter div.flex {
	display: flex;
	padding: 1rem 1rem 3rem;
}
section.works div.works-filter div.flex span.filter-label {
	font-size: 1.5rem;
	font-weight: 700;
	margin-right: 2rem;
}
section.works div.works-filter div.flex ul.filter-list {
	display: flex;
	align-items: center;
}
section.works div.works-filter div.flex ul.filter-list li {
}
section.works div.works-filter div.flex ul.filter-list li a {
	margin-right: 1rem;
	background: var(--mc);
	padding: .5rem 1rem;
	color: #fff;
	border-radius: 30px;
}
section.works div.works-grid {
	width: 100%;
	padding: 0 3vw;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
section.works div.works-grid article.work-item {
	width: 48.5%;
	position: relative;
	margin-bottom: 3rem;
}
section.works div.works-grid article.work-item a.work-boxlink {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
section.works div.works-grid article.work-item div.work-thumb {
	width: 100%;
}
section.works div.works-grid article.work-item div.work-thumb img {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}
section.works div.works-grid article.work-item h3.work-title {
	font-size: 1.5rem;
	margin: .5rem 0;
}
section.works div.works-grid article.work-item p.work-client {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
}
section.works div.works-grid article.work-item p.work-date {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
}
section.works div.works-grid article.work-item a.work-link {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: .2rem 2rem;
	border: 1px solid #000;
	color: #000;
	display:none;/*一時非表示*/
}

section.works div.works-grid article.work-item:nth-child(n+3){
	width:32%;
}
section.works div.works-grid article.work-item:nth-child(n+3) h3.work-title {
	font-size: 1.25rem;
}
section.works div.works-grid article.work-item:nth-child(n+3) p.work-client {
	font-size: 1rem;
}
section.works div.works-grid article.work-item:nth-child(n+3) p.work-date {
	font-size: 1rem;
}


section.contact {
	padding: 3vw;
}
section.contact div.contact-inner {
	background: #B0D9FF;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2vw;
}
section.contact div.contact-inner h2.contact-title {
	margin: 0;
	font-size: 3vw;
	text-align: center;
}
section.contact div.contact-inner p.contact-text {
	margin: 0;
	font-size: 1.5vw;
	text-align: center;
}
section.contact div.contact-inner a.contact-button {
	margin: 2vw auto 0;
	background: var(--mc);
	padding: .5rem 5rem;
	font-size: 1.5rem;
	color: #fff;
}

section.company {
}
section.company div.company-inner {
	width: 700px;
	margin: 0 auto;
	padding-top: 3vw;
}
#table01 {
	border-collapse: collapse;
}
#table01 tr {
	border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
	padding: 24px 0;
	border: none;
}

#table01 th {
	width: 30%;
}

.page_company-sdg .page_company-sdg__wrap {
	background-size: cover;
	padding: 2em;
}
.page_company-sdg .page_company-sdg__wrap h2 {
	text-align: center;
	font-size: 1.25rem;
}
.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--top {
	display: flex;
	align-items: center;
	width: 1100px;
	margin: 0 auto;
}
.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--top img {
	width: 35%;
}
.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--top p {
	width: 65%;
	text-align: center;
	font-size: 1rem;
	padding: 0 2em;
}
.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom {
	margin: 0em auto;
	display: flex;
	flex-wrap: wrap;
	width: 1100px;
}
.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom .page_company-sdg__wrap--bottom-box {
	width: 48%;
	margin: 1em 1%;
	background: #ffffffd1;
	display: flex;
	padding: 1em;
}
.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom .page_company-sdg__wrap--bottom-box img {
	width: 10em;
	height: 10em;
	object-fit: cover;
}
.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom .page_company-sdg__wrap--bottom-box .page_company-sdg__wrap--bottom-box-text {
	padding-left: 1em;
}
.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom .page_company-sdg__wrap--bottom-box .page_company-sdg__wrap--bottom-box-text h3 {
	color: var(--mc);
	margin: 0;
}
.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom .page_company-sdg__wrap--bottom-box .page_company-sdg__wrap--bottom-box-text p {
	margin: 0;
	padding: 0;
}


@media screen and (max-width: 768px) {
	section.fv {
		width: 100%;
		height: unset;
		box-sizing: border-box;
	}
	section.fv div.fv-inner {
		width: 100%;
		height: calc(90vh - var(--header-height));
		padding: 5vw;
		margin-bottom: 5vh;
	}
	section.fv div.fv-inner div.fv-bg {
		position: absolute;
		width: 90vw;
	}
	section.fv div.fv-inner div.text {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		width: 100%;
		bottom: unset;
	}
	section.fv div.fv-inner div.text h1.fv-title {
		font-size: 7vw;
		margin: 0;
		line-height: 1;
		text-align: center;
	}
	section.fv div.fv-inner div.text p.fv-subtitle {
		font-size: 5.5vw;
		line-height: 1.4;
		margin: 3vw 0 3vw;
		text-align: center;
	}
	section.fv div.fv-inner div.text p.fv-description {
		font-size: 16px;
		width: 80vw;
		margin: 5vw auto 0;
	}

	section.service {
		margin-bottom: 3rem;
	}
	section.service div.service-header {
		position: relative;
		width: 100%;
		height: 50vw;
	}
	section.service div.service-header div.service-header-bg {
		height: inherit;
	}
	section.service div.service-header h2 {
		margin: 0;
		font-size: 7vw;
	}
	section.service div.service-header p {
		margin: 0;
		font-size: 16px;
		text-align: center;
	}
	section.service div.service-grid {
		width: 100%;
		margin: 0 auto;
		padding: 0 3vw;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		flex-direction: column;
	}
	section.service div.service-grid div.service-item {
		width: 96%;
		margin: 1% auto .5%;
	}
	section.service div.service-grid div.service-item div.service-tag {
		text-align: center;
		background: #000;
		width: 70%;
		padding: .5rem 1rem;
		font-size: 20px;
	}
	section.service div.service-grid div.service-item h3.service-title {
		text-align: center;
		font-size: 1.25rem;
		color: #3378B7;
		margin: 1rem 0;
	}	
	section.service div.service-grid div.service-item div.service-thumb {
		width: 50vw;
		height: 50vw;
		border-radius: 50%;
		margin: 0 auto;
	}
	section.service div.service-grid div.service-item div.service-thumb img {
		width: inherit;
		height: inherit;
		object-fit: cover;
		border-radius: 50%;
	}
	section.service div.service-grid div.service-item p.service-lead {
		margin: 1rem auto 1rem;
		font-size: 1.25rem;
		font-weight: 700;
		text-align: center;
		width: 90%;
	}
	section.service div.service-grid div.service-item p.service-meta {
		margin: 0 auto 1.5rem;
		font-size: 1rem;
		font-weight: 700;
		text-align: center;
		width: 96%;
	}



	section.team {
		background: #B0D9FF;
		padding-bottom: 2rem;
	}
	section.team div.team-header {
		padding: 2rem 0;
	}
	section.team div.team-header h2 {
		margin: 0;
		font-size: 7vw;
		text-align: center;
	}
	section.team div.team-header p {
		margin: 0;
		font-size: 16px;
		text-align: center;
		padding: 0 1rem;
	}
	section.team div.team-grid {
		width: 96%;
		padding: 0 3vw;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin: 0 auto;
	}
	section.team div.team-grid div.team-member {
		width: 48%;
		border: 1px solid #000;
		padding: .5rem;
		position: relative;
		margin-bottom: 4%;
	}
	section.team div.team-grid div.team-member div.team-image {
		width: 30vw;
		height: 30vw;
		margin: 0 auto;
	}
	section.team div.team-grid div.team-member div.team-image img {
		width: inherit;
		height: inherit;
		object-fit: cover;
		border-radius: 50%;
	}
	section.team div.team-grid div.team-member div.team-label {
		font-size: 1.5rem;
		left: 1vw;
		color: #00000070;
	}
	section.team div.team-grid div.team-member h3.team-role {
		text-align: center;
		font-size: 1.25rem;
		margin: .5rem 0 0;
	}
	section.team div.team-grid div.team-member p.team-desc {
		margin: 0;
		font-size: 14px;
	}


	section.works div.works-header h2 {
		margin: 0;
		font-size: 7vw;
		text-align: center;
	}
	section.works div.works-header p {
		margin: 0 auto;
		font-size: 16px;
		text-align: center;
		width: 90%;
	}
	section.works div.works-filter div.flex {
		display: flex;
		padding:0;
		flex-direction: column;
	}
	section.works div.works-filter div.bar {
		width: 40vw;
		height: 2px;
		background: #000;
	}
	section.works div.works-filter div.flex span.filter-label {
		font-size: 1.5rem;
		font-weight: 700;
		margin-right: 2rem;
		margin-bottom: 2%;
	}
	section.works div.works-filter div.flex ul.filter-list {
		display: flex;
		align-items: center;
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
	}
	section.works div.works-filter div.flex ul.filter-list li {
		margin-bottom: 3%;
	}
	section.works div.works-filter div.flex ul.filter-list li a {
		margin-right: 1rem;
		background: var(--mc);
		padding: .25rem 1rem;
		color: #fff;
		border-radius: 30px;
	}
	section.works div.works-grid article.work-item {
		width: 100%;
		position: relative;
		margin-bottom: 3rem;
	}
	section.works div.works-grid article.work-item h3.work-title {
		font-size: 1.25rem;
		margin: .5rem 0;
	}
	section.works div.works-grid article.work-item p.work-client {
		margin: 0;
		font-size: 1rem;
		font-weight: 600;
	}
	section.works div.works-grid article.work-item p.work-date {
		margin: 0;
		font-size: 1rem;
		font-weight: 600;
	}
	section.works div.works-grid article.work-item a.work-link {
		position: unset;
		bottom: 0;
		right: 0;
		padding: .2rem 2rem;
		border: 1px solid #000;
		color: #000;
		margin-top: 2%;
		display: block;
		width: 50%;
		text-align: center;
		margin: 3% 0 0 auto;
		font-size:14px;
		display:none;
	}
	section.works div.works-grid article.work-item:nth-child(n+3) {
		width: 100%;
	}
	section.contact div.contact-inner h2.contact-title {
		margin: 0;
		font-size: 7vw;
		text-align: center;
	}
	section.contact div.contact-inner p.contact-text {
		margin: 0;
		font-size: 16px;
		text-align: center;
		width: 90%;
	}
	section.contact div.contact-inner {
		background: #B0D9FF;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 2rem 0;
	}
	section.contact div.contact-inner a.contact-button {
		margin: 2vw auto 0;
		background: var(--mc);
		padding: .5rem 5rem;
		font-size: 1.25rem;
		color: #fff;
	}



	section.company div.company-inner {
		margin: 0 auto;
		padding-top: 3vw;
		width: 100%;
		padding: 3vw 3vw 0;
	}
	#table01 th,
	#table01 td {
		width: 100%;
		display: block;
	}

	#table01 th {
		width: 100%;
	}

	#table01 td {
		padding-top: 0;
	}
	.page_company-sdg .page_company-sdg__wrap {
		background-size: cover;
		padding: 2em;
		width: 100%;
		padding: 0 3vw;
	}
	.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--top {
		display: flex;
		align-items: center;
		width: 100%;
		margin: 0 auto;
		flex-direction: column;
	}
	.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--top img {
		width: 100%;
	}
	.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--top p {
		width: 100%;
		text-align: center;
		font-size: 1rem;
		padding: 0 2em;
	}
	.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom {
		margin: 0em auto;
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		flex-direction: column;
	}
	.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom .page_company-sdg__wrap--bottom-box {
		width: 100%;
		margin: .5em 1%;
		background: #ffffffd1;
		display: flex;
		padding: .5em;
		flex-direction: row;
		align-items: center;
	}
	.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom .page_company-sdg__wrap--bottom-box img {
		width: 20%;
		height: 20%;
	}
	.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom .page_company-sdg__wrap--bottom-box .page_company-sdg__wrap--bottom-box-text {
		padding-left: 1em;
		width: 80%;
	}
	.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom .page_company-sdg__wrap--bottom-box .page_company-sdg__wrap--bottom-box-text h3 {
		margin: 0;
		font-size: 16px;
	}
	.page_company-sdg .page_company-sdg__wrap .page_company-sdg__wrap--bottom .page_company-sdg__wrap--bottom-box .page_company-sdg__wrap--bottom-box-text p {
		font-size: 14px;
	}


	
	
	
	
	

}