@charset "utf-8";
@font-face {
	font-family: "NotoSansJP";
	font-weight: 100 900;
	src: url("../fonts/SourceHanSansJP-VF.otf.woff2") format("woff2"), url("../fonts/SourceHanSansJP-VF.otf") format("opentype");
}

@font-face {
	font-family: "icomoon";
	src: url("../fonts/icomoon.ttf?f67iz7") format("truetype"), url("../fonts/icomoon.woff?f67iz7") format("woff"), url("../fonts/icomoon.svg?f67iz7#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-facebook-square:before {
	content: "\f082";
}
.icon-linkedin-square:before {
	content: "\f08c";
}
.icon-twitter:before {
	content: "\f099";
}
.icon-pinterest:before {
	content: "\f0d2";
}
.icon-youtube-play:before {
	content: "\f16a";
}
.icon-instagram:before {
	content: "\f16d";
}

/* ここから個別のスタイル設定 */

body {
	line-height: 1.8;
	letter-spacing: 0.05em;
	background-color: #f3f3f3;
	font-family: "NotoSansJP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

a {
	color: inherit;
}

/* グローバルメニュー */
.globalmenu {
	display: flex;
	align-items: center;
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	padding-left: max(80px, 5vw);
	z-index: 9;
	overflow-y: hidden;
	transition: 0.3s ease-in-out;
	transform: translateX(-10%);
	opacity: 0;
	pointer-events: none;
}
.globalmenu.is-active {
	transform: translateX(0%);
	opacity: 1;
	pointer-events: auto;
}

.gmenu-company {
	width: 50%;
	height: 100%;
	padding: 10%;
	background-color: #04384c;
	color: #fff;
}

.gmenu-companyname {
	font-size: min(60px, 5vw);
}

.gmenu-companysub {
	font-size: clamp(14px, 20px, 1vw);
}

.gmenu-location {
	font-size: clamp(14px, 20px, 1vw);
	position: relative;
	padding-top: 40px;
	margin-top: 40px;
}

.gmenu-location::before {
	position: absolute;
	content: "";
	width: 10%;
	min-width: 80px;
	height: 4px;
	background-color: #fff;
	top: 0;
	left: 0;
}

.gmenu-link {
	width: 50%;
	height: 100%;
	padding: 10%;
	background-color: #fff;
}

.gmenu-list {
	line-height: 2.2;
}

.gmenu-anchor {
	font-size: min(60px, 5vw);
}

.header-wrapper-sp {
	display:none;
}

.service-wrapper,
.client-wrapper,
.company-wrapper,
.recruit-wrapper,
.news-wrapper {
	padding-top: 12vw;
}

.fa-brands {
	width: 1.6vw;
	font-size: 1.6vw;
	height: 1.6vw;
}

.hamburger-menu {
	display: flex;
	width: 100%;
	height: 100%;
}

.hamburger-menuline {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	cursor: pointer;
}

.hamburger-menuline::after {
	width: 50px;
	height: 2px;
	background-color: #000;
	content: "";
	display: block;
	position: absolute;
	transform: translateX(5px) rotate(90deg);
	animation: hamburger-Leave-2 0.6s cubic-bezier(0.83, 0, 0.17, 1) forwards;
}

.hamburger-menuline::before {
	width: 50px;
	height: 2px;
	background-color: #000;
	content: "";
	display: block;
	position: absolute;
	transform: translateX(-5px) rotate(90deg);
	transition: 1s;
	animation: hamburger-Leave-1 0.6s cubic-bezier(0.83, 0, 0.17, 1) forwards;
}

.hamburger-menu:hover .hamburger-menuline::after {
	background-color: black;
	animation: hamburger-Hover-2 0.6s cubic-bezier(0.83, 0, 0.17, 1) forwards;
}

.hamburger-menu:hover .hamburger-menuline:before {
	animation: hamburger-Hover-1 0.6s cubic-bezier(0.83, 0, 0.17, 1) forwards;
}

@keyframes hamburger-Hover-1 {
	0% {
		transform: translateX(-5px) rotate(90deg);
		width: 50px;
	}
	25% {
		transform: translateX(0) rotate(90deg);
		width: 50px;
	}
	to {
		transform: translateY(10px) rotate(305deg);
		width: 25px;
	}
}

@keyframes hamburger-Leave-1 {
	0% {
		transform: translateY(10px) rotate(305deg);
		width: 25px;
	}
	25% {
		transform: translateX(0) rotate(90deg);
		width: 50px;
	}
	to {
		transform: translateX(-5px) rotate(90deg);
		width: 50px;
	}
}

@keyframes hamburger-Hover-2 {
	0% {
		transform: translateX(5px) rotate(90deg);
		width: 50px;
	}
	25% {
		transform: translateX(0) rotate(90deg);
		width: 50px;
	}
	to {
		transform: translateY(-10px) rotate(55deg);
		width: 25px;
	}
}

@keyframes hamburger-Leave-2 {
	0% {
		transform: translateY(-10px) rotate(55deg);
		width: 25px;
	}
	25% {
		transform: translateX(0) rotate(90deg);
		width: 50px;
	}
	to {
		transform: translateX(5px) rotate(90deg);
		width: 50px;
	}
}

.hamburger-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: max(80px, 5vw);
	border-right: 1px solid #000;
	height: 100%;
	z-index: 10;
}

.hamburger-sns {
	position: absolute;
	bottom: 8vw;
	left: 0;
	right: 0;
}
.hamburger-list {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 1.4vw;
}
.hamburger-item {
	width: -moz-fit-content;
	width: fit-content;
}
.hamburger-sns-link {
	display: inline-block;
	width: -moz-fit-content;
	width: fit-content;
	height: -moz-fit-content;
	height: fit-content;
	font-size: 25px;
}

.header-wrapper {
	display: flex;
	padding: 100px 0px 0 5vw;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0 max(80px, 5vw);;
}
.header-logo-text {
	display: inline-block;
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
	color: #04384c;
	text-decoration: none;
}
.header-logo-image {
	width: 13.5vw;
}
.header-logo {
	height: 100%;
}
.gnav-list {
	display: flex;
	gap: clamp(20px, 2.8vw, 53px);
	padding-top: 44px;
	font-size: clamp(12px, 1vw, 16px);
}
.gnav-anchor::after {
	content: "";
	width: 10px;
	height: 10px;
	display: block;
	background-color: #2bbecf;
	border-radius: 50px;
	margin: 0 auto;
	opacity: 0;
	transition: opacity 0.3s;
}
.gnav-anchor:hover::after {
	opacity: 1;
}

.header-logoimage {
	width: 250px;
}

.bg-line {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	content: "";
	display: block;
	height: 100%;
	position: fixed;
	left: 49.7vw;
	top: 0;
	width: 44.4vw;
	z-index: -1;
}

.main-wrapper {
	padding-top: 4vw;
	padding-left: max(80px, 5vw);
}

.kv-head {
	font-size: 6vw;
	font-weight: 900;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: calc(5vw * 2);
	letter-spacing: 0;
	line-height: 1.2;
}

.kv-head-green {
	color: #2bbecf;
}

.kv-ourmission {
	position: absolute;
	top: 22%;
	left: 0%;
	transform: rotate(90deg);
}

.kv-text-wrapper {
	position: relative;
	display: flex;
	gap: 10vw;
}

.kv-text {
	font-size: 1vw;
	font-weight: 900;
	padding-top: 2vw;
}

.kv-image-wrapper {
	width: 100%;
	height: 0;
	position: relative;
	padding-bottom: 42%;
}

.kv-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
}

.kv-aboutus-wrapper {
	position: relative;
	background-color: white;
	width: 60vw;
	padding: 4vw 5vw 4vw;
	margin-left: 5vw;
	margin-top: -15vw;
}

.kv-vision {
	font-size: 1.6vw;
	font-weight: 900;
	padding-bottom: 2vw;
}
.kv-aboutus-text {
	margin-top: 0;
	font-size: 1.1vw;
	margin-bottom: 2vw;
}

.button {
	position: relative;
	border-radius: 50px;
	padding: 1.2vw 2.5vw;
	width: 16vw;
	font-size: 1vw;
}
.button::after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 1.6vw;
	border-radius: 50%;
	border: 1px solid var(--colorG);
	transform: translateY(-50%);
	width: 3vw;
	height: 3vw;
}
.button::before {
	content: "";
	display: block;
	position: absolute;
	margin: auto;
	width: 1vw;
	height: 1vw;
	border-right: 2px solid var(--colorG);
	border-top: 2px solid var(--colorG);
	right: 2.2vw;
	transform: translate(-50%, -50%) rotate(45deg);
	top: 50%;
}

.service-sub,
.client-sub,
.company-sub,
.recruit-sub,
.news-sub {
	font-size: 1.2vw;
	font-weight: 900;
	margin: 0;
}
.service-header,
.client-header,
.company-header,
.recruit-header,
.news-header {
	font-size: 6.5vw;
	line-height: 1;
	margin: 2vw 0 0 0;
	font-weight: 600;
}

.service-sub::before,
.client-sub::before,
.company-sub::before,
.recruit-sub::before,
.news-sub::before {
	display: inline-block;
	content: "";
	/* width: 0.8vw;
	height: 0.8vw; */
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #2bbecf;
	margin-right: 1vw;
}
.service-wrapper {
	padding-left: 5vw;
}

.service-inner {
	display: flex;
	gap: 19vw;
	align-items: flex-end;
}

.service-text {
	font-size: 0.9vw;
	padding-bottom: 1em;
	padding-right: 7vw;
}
.service-image-area {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 65%;
}

.service-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-list {
	padding-top: 60px;
	position: relative;
	width: 100%;
}
.scroll-list {
	display: flex;
}
.scroll-list li{
	width: calc(100% / 3);
}

.service-text-area {
	padding-left: 1.2vw;
}
.service-title {
	font-size: 1.4vw;
	font-weight: 900;
	padding: 1.2em 0 1em;
}
.service-description {
	font-size: 0.9vw;
	line-height: 2em;
	margin: 0;
}

.service-image-text {
	font-size: 1.6vw;
	font-style: italic;
	font-weight: 900;
	color: #2bbecf;
	position: absolute;
	width: 100%;
	left: 1em;
	bottom: 0.5em;
}

/* 会社概要 */
.company-wrapper {
	padding-left: 5vw;
	padding-right: 5vw;
}

.company-headwrapper {
	margin-bottom: 60px;
}

.company-tablewrapper {
	width: min(100%, 1040px);
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
}

.company-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	line-height: 1.9;
}

.company-table th,
.company-table td {
	padding: 22px 28px;
	border-bottom: 1px solid #e5e8ea;
	vertical-align: top;
	text-align: left;
}

.company-table th {
	width: 28%;
	font-weight: 900;
	color: #04384c;
	background-color: #f7f9fa;
}

.company-business-list {
	margin: 0;
	padding-left: 1.3em;
	list-style: decimal;
}

.company-business-list li + li {
	margin-top: 0.8em;
}

.company-note {
	color: #777;
	font-size: 0.9em;
}

/* GSAP ScrollTriggerエリア */
.side-scroll__section {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden; /* はみ出た部分を隠しておく */
}
.side-scroll__itemOuter {
	position: relative;
	height: 100vh;
	width: 100%;
}
.side-scroll__itemInner {
	position: absolute;
	top: 60px;
	left: 0;
	display: flex;
	gap: 0 60px;
}
.side-scroll__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 36.5vw;
}
.side-scroll__title {
	font-size: 1.5vw;
}
.side-scroll__text {
	font-size: 1vw;
	line-height: 2vw;
}
.side-scroll__image {
	width: 100%;
}

/* クライアント紹介 */

.client-wrapper {
	display: flex;
	flex-direction: row-reverse;
	gap: 90px;
	padding-left: 5vw;
	padding-right: 5vw;
}

.client-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.client-textwrapper,
.client-imagewrapper {
	width: 50%;
}
.client-text {
	margin: 3vw 0 0;
	font-size: 0.9vw;
	line-height: 2;
}
.client-logo-area {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.client-logo {
	height: 100px;
	width: calc((100% - 25px) / 2);
	position: relative;
}

/* 採用情報 */
.recruit-wrapper {
	display: flex;
	gap: 6.1vw;
	padding-left: 5vw;
	padding-right: 5vw;
}

.recruit-textwrapper {
	width: 40%;
}
.recruit-imagewrapper {
	width: 53%;
}

.recruit-catchcopy {
	font-size: 1.6vw;
	font-weight: 900;
	padding-top: 0.5em;
	padding-bottom: 1em;
}

.recruit-text {
	font-size: 0.9vw;
	padding-right: 10%;
}

/* お知らせ */
.news-wrapper {
	padding-left: 5vw;
	padding-right: 5vw;
	margin-bottom: 10vw;
}

.news-listwrapper {
	padding-top: 60px;
	margin-left: 20%;
}

.news-item {
	display: flex;
	gap: 40px;
	padding-bottom: 40px;
}

.news-eyecatchwrapper {
	width: 20%;
}

.news-titlewrapper {
	width: 60%;
}

.news-title {
	font-size: 1.2vw;
	font-weight: 900;
}
.published-label,
.modified-label,
.category-label {
	display: inline-block;
	padding: 0.6em 1.2em;
}

.published-label {
	padding-left: 0;
}

@media screen and (max-width: 1023px) {
	.service-list {
		height: auto;
	}
}

@media screen and (max-width: 479px) {
	.service-sub, .client-sub, .company-sub, .recruit-sub, .news-sub {
		font-size: 2.4vw;
	}
	.globalmenu {
		padding-left: 0;
		flex-direction: column;
	}
	.gmenu-company {
		width: 100%;
		height: auto;
		padding: 36% 10% 20%;
	}
	.gmenu-link {
		width: 100%;
	}
	.gmenu-companyname {
		font-size: min(30px, 7vw);
	}

	.gmenu-anchor {
		font-size: min(30px, 7vw);
	}
	.bg-line {
		left: auto;
		right: 7vw;
	}
	.hamburger-wrapper {
		display: none;
	}

	.header-wrapper-sp {
		display: flex;
		border-bottom: 1px solid #eee;
		z-index: 9999;
		position: relative;
	}

	.hamberger-wrapper-sp {
		width: 14vw;
		height: 14vw;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.hamberger-menuline-sp {
		width: 18px;
		height: 1px;
		background-color: black;
		display: block;
	}

	.hamberger-menuline-sp-top {
		width: 18px;
		height: 1px;
		background-color: #000;
		display: block;
		transform: translateY(5px);
	}

	.hamberger-menuline-sp-bottom {
		width: 18px;
		height: 1px;
		background-color: #000;
		display: block;
		transform: translateY(-5px);
	}
	.headerlogo-wrapper-sp {
		width: 72vw;
		height: 14vw;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.headercontact-wrapper-sp {
		width: 14vw;
		height: 14vw;
		background-color: #04384c;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.headercontact-link {
		color: #fff;
		font-size: 11px;
		font-weight: 900;
		text-decoration: none;
	}

	.headercontact-image {
		width: 80%;
	}

	.main-wrapper {
		padding-left: 0;
	}

	.main-header {
		display: none;
	}

	.kv-text-wrapper {
		flex-direction: column-reverse;
		gap: 3vw;
	}

	.kv-ourmission {
		left: auto;
		right: 0;
	}

	.kv-head {
		margin-left: 17px;
		font-size: 10vw;
	}
	.kv-text {
		margin: 0 auto 0 18px;
		font-size: 3vw;
	}

	.kv-ourmission {
		font-size: 12px;
		top: 50%;
		right: -8px;
	}
	.kv-aboutus-wrapper {
		width: 93vw;
		margin-left: 0;
		padding: 10vw;
	}

	.kv-image-wrapper {
		padding-bottom: 100%;
		margin-top: -15px;
		z-index: -1;
	}
	.kv-aboutus-wrapper {
		margin-top: -20vw;
	}

	.kv-vision {
		font-size: 3.5vw;
	}
	.kv-aboutus-text {
		font-size: 3vw;
	}

	.service-inner {
		display: block;
	}

	.service-text {
		font-size: 3vw;
	}

	.service-header {
		font-size: 12.5vw;
		margin: 4vw 0 0 0;
	}

	.service-headwrapper {
		margin-bottom: 22px;
	}

	.service-wrapper {
		padding-left: 7vw;
	}

	.service-list {
		padding-right: 7vw;
		padding-top: 40px;
	}

	.service-title {
		font-size: 4vw;
	}

	.service-description {
		font-size: 3vw;
	}

	.scroll-list {
		display: flex;
		flex-direction: column;
	}

	.scroll-list li {
		width: 100%;
		margin-bottom: 30px;
	}
	.scroll-list li:last-child {
		margin-bottom: 0px;
	}

	/* company */
	.company-wrapper {
		padding-left: 7vw;
		padding-right: 7vw;
	}

	.company-header {
		font-size: 12.5vw;
	}

	.company-headwrapper {
		margin-bottom: 32px;
	}

	.company-tablewrapper {
		width: 100%;
	}

	.company-table,
	.company-table tbody,
	.company-table tr,
	.company-table th,
	.company-table td {
		display: block;
		width: 100%;
	}

	.company-table {
		font-size: 3vw;
	}

	.company-table th {
		padding: 16px 18px 8px;
		border-bottom: none;
	}

	.company-table td {
		padding: 0 18px 18px;
	}

	/* recrute */
	.recruit-header {
		font-size: 12.5vw;
	}

	.recruit-wrapper {
		flex-direction: column;
		padding-right: 7vw;
		padding-left: 7vw;
	}
	.recruit-imagewrapper,
	.recruit-textwrapper {
		width: 100%;
	}

	.recruit-catchcopy {
		font-size: 4vw;
	}

	.recruit-text {
		font-size: 3vw;
	}
	/* news */
	.news-title {
		font-size: 3vw;
	}
	.news-header {
		font-size: 12.5vw;
	}

	.news-wrapper {
		padding-left: 7vw;
		padding-right: 7vw;
	}

	.news-listwrapper {
		margin-left: 0;
		padding-top: 24px;
	}
	.news-item {
		flex-direction: column;
		gap: 20px;
	}
	.news-eyecatchwrapper,
	.news-titlewrapper {
		width: auto;
	}

	.published-date,
	.category-label {
		font-size: 2.5vw;
	}

	/* end*/
}
