@charset "UTF-8";

/*-----------------------------------

	splash

-----------------------------------*/
#splash {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	background:#FFF;
	text-align:center;
}
#splash_logo {
	width:180vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo img {
	max-width: none;
}
.zoom{
	animation-name: zoom;
	animation-duration:2s;
	animation-fill-mode:forwards;
}
@keyframes zoom {
	0% {
		transform: scale(0.1);
	}
	30% {
		transform: scale(0.1);
	}
	100% {
		transform: scale(1);
	}
}
@media screen and (max-width: 840px) {
	#splash_logo {
		width:200vw;
	}
}
@media screen and (max-width: 640px) {
	#splash_logo {
		top: calc(50% - (50% - 305px));
	}
}
@media screen and (max-width: 480px) {
	#splash_logo {
		width:235vw;
	}
}
/*-----------------------------------

	mainvisual

-----------------------------------*/
#mainvisual {
	position: relative;
	z-index: 0;
	margin-bottom: 100px;
}
#mainvisual::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../img/index/mv_logo.svg) no-repeat center center/180vw;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
#mainvisual .swiper-wrapper {
	transition-timing-function: linear;
}
#mainvisual .swiper .swiper-wrapper,
#mainvisual .swiper .swiper-wrapper .swiper-slide {
	width: auto;
}
#mainvisual .swiper .swiper-wrapper .swiper-slide img {
	width: 100%;
	height: 700px;
	object-fit: cover;
}
#mainvisual .mv_txt {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;
	opacity: 0;
	transform: translateY(-50%);
	animation-name: fadeIn;
	animation-duration:5s;
	animation-fill-mode:forwards;
}
@keyframes fadeIn {
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#mainvisual .mv_txt p {
	display: inline;
	background: linear-gradient(0deg,rgba(46, 167, 224, 0) 0%, rgba(46, 167, 224, 0) 15%, rgba(46, 167, 224, 1) 15%, rgba(46, 167, 224, 1) 90%, rgba(46, 167, 224, 0) 90%, rgba(46, 167, 224, 0) 100%);
	color: #FFF;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.66;
}
#mainvisual .news {
	background: #ececec;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	padding: 20px 0;
}
#mainvisual .news .contents_inner {
	max-width: 1170px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#mainvisual .news .ttl {
	font-size: 20px;
	font-weight: 700;
	color: var(--mClr1);
	width: 15.94%;
}
#mainvisual .news .details {
	width: 84.06%;
}
#mainvisual .news .details a {
	display: flex;
	align-items: center;
	gap: 0 20px;
	overflow: hidden;
}
#mainvisual .news .details a time {
	font-size: 12px;
	color: #8E8E8E;
	white-space: nowrap;
}
#mainvisual .news .details a .cat {
	background: #FFFFFF80;
	color: #00000099;
	font-size: 12px;
	padding: 5px 15px;
	white-space: nowrap;
}
#mainvisual .news .details a p {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.05em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
@media screen and (max-width: 1160px) {
	#mainvisual .mv_txt p {
		font-size: 28px;
	}
}
@media screen and (max-width: 840px) {
	#mainvisual::before {
		background: url(../img/index/mv_logo.svg) no-repeat center center/200vw;
	}
	#mainvisual .mv_txt {
		top: auto;
		bottom: 100px;
		left: 5%;
	}
	#mainvisual .mv_txt p {
		font-size: 20px;
	}
}
@media screen and (max-width: 640px) {
	#mainvisual {
		margin-bottom: 50px;
	}
	#mainvisual .swiper .swiper-wrapper .swiper-slide img {
		height: 570px;
	}
	#mainvisual .news {
		padding: 15px 0;
	}
	#mainvisual .news .ttl {
		font-size: 14px;
		width: 20%;
	}
	#mainvisual .news .details {
		width: 80%;
	}
	#mainvisual .news .details a {
		flex-wrap: wrap;
		gap: 5px 15px;
	}
	#mainvisual .news .details a time {
		font-size: 10px;
	}
	#mainvisual .news .details a .cat {
		font-size: 10px;
		padding: 3px 10px;
	}
	#mainvisual .news .details a p {
		font-size: 12px;
	}
}
@media screen and (max-width: 480px) {
	#mainvisual::before {
		background: url(../img/index/mv_logo.svg) no-repeat center center/235vw;
	}
}
/*-----------------------------------

	about_block

-----------------------------------*/
#about_block {
	padding-bottom: 100px;
}
#about_block .contents_inner {
	max-width: 1170px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#about_block .textArea {
	width: 48%;
}
#about_block .textArea .copy {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.66;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
	white-space: pre-line;
}
#about_block .textArea p {
	font-size: 20px;
	font-weight: 600;
	line-height: 2.5;
	letter-spacing: 0.05em;
	white-space: pre-line;
}
#about_block .imageArea {
	width: 58%;
	margin-right: -10%;
}
@media screen and (max-width: 1160px) {
	#about_block .textArea .copy {
		font-size: 26px;
	}
	#about_block .textArea p {
		font-size: 16px;
	}
}
@media screen and (max-width: 840px) {
	#about_block .contents_inner {
		flex-direction: column;
		gap: 30px;
	}
	#about_block .textArea {
		width: max-content;
	}
	#about_block .imageArea {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}
}
@media screen and (max-width: 640px) {
	#about_block {
		padding-bottom: 50px;
	}
	#about_block .textArea .copy {
		font-size: 20px;
		margin-bottom: 15px;
	}
	#about_block .textArea p {
		font-size: 14px;
	}
}
/*-----------------------------------

	service_block

-----------------------------------*/
#service_block {
	padding-bottom: 100px;
}
#service_block .contents_inner {
	max-width: 1170px;
}
#service_block h2 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 30px;
}
#service_block h2::before {
	content: "SERVICE";
	font-size: 60px;
	color: var(--mClr1);
	margin-bottom: 10px;
	display: block;
}
#service_block p {
	text-align: center;
	margin-bottom: 50px;
}
#service_block ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 25px;
	margin-bottom: 60px;
}
#service_block ul li {
	width: 170px;
}
#service_block ul li a {
	position: relative;
	z-index: 0;
}
#service_block ul li a::before {
	content: "";
	width: 120%;
	height: auto;
	aspect-ratio: 1/1;
	background: #2EA7E033;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
	opacity: 0;
	transition: 0.3s;
}
#service_block ul li a:hover {
	opacity: 1;
}
#service_block ul li a:hover::before {
	opacity: 1;
}
#service_block ul li img {
	width: 98px;
	height: 86px;
	object-fit: scale-down;
	display: block;
	margin: 0 auto 10px;
}
#service_block ul li .txt {
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	line-height: 25px;
	width: 100%;
	height: 50px;
	display: grid;
	place-content: center;
}
@media screen and (max-width: 640px) {
	#service_block {
		padding-bottom: 50px;
	}
	#service_block h2::before {
		font-size: 40px;
	}
	#service_block ul {
		gap: 40px 20px;
	}
	#service_block ul li {
		width: 150px;
	}
	#service_block ul li:first-child::before {
		width: 110%;
	}
	#service_block ul li img {
		width: 91px;
		height: 70px;
		margin: 0 auto 10px;
	}
	#service_block ul li .txt {
		font-size: 14px;
		line-height: 20px;
		height: 40px;
	}
}
/*-----------------------------------

	works_block

-----------------------------------*/
#works_block {
	padding: 100px 0;
	background: url(../img/index/works_bg.jpg) no-repeat center center/cover;
	margin-bottom: 100px;
}
#works_block .contents_inner {
	max-width: 1170px;
}
#works_block h2 {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 30px;
}
#works_block h2::before {
	content: "WORKS";
	font-size: 20px;
	letter-spacing: 0.05em;
	color: var(--mClr1);
	display: block;
	margin-bottom: 15px;
}
#works_block .swiper {
	padding-bottom: 50px;
	margin-bottom: 50px;
}
#works_block .works_wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
	margin-bottom: 50px;
}
#works_block .swiper-slide {
	background: #FFF;
	height: auto !important;
}
#works_block .works_wrap .swiper-slide {
	width: calc((100% - 50px) / 3);
}
#works_block .swiper-slide a {
	display: block;
	height: 100%;
}
#works_block .slide-media {
	height: 242px;
}
#works_block .slide-media:has(.none) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
#works_block .slide-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#works_block .slide-content {
	padding: 20px 10%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	letter-spacing: 0.05em;
}
#works_block .slide-content .cat {
	font-size: 13px;
	color: var(--mClr2);
}
#works_block .slide-content .ttl {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.6;
}
#works_block .slide-content .place {
	font-size: 15px;
	color: #00000099;
}
.swiper-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 20px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
	position: static !important;
	line-height: 0;
	width: max-content !important;
}
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background:  #FFF !important;
	border: 1px solid #000;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #000 !important;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px !important;
}
.swiper-button-next,.swiper-button-prev {
	display: block !important;
	position: static !important;
	width: 16px !important;
    height: 16px !important;
	background: url(../img/common/icon_arrow_bk.svg) no-repeat center/contain !important;
    margin-top: auto !important;
	left: auto !important;
	right: auto !important;
}
.swiper-button-next:after,.swiper-button-prev:after {
	content: none !important;
	display: none !important;
}
.swiper-button-prev,.swiper-rtl .swiper-button-next {
    transform: scale(-1,1) !important;
}
@media screen and (max-width: 840px) {
	#works_block {
		margin-bottom: 0;
	}
	#works_block .works_wrap .swiper-slide {
		width: calc((100% - 25px) / 2);
	}
}
@media screen and (max-width: 640px) {
	#works_block {
		padding: 50px 0;
	}
	#works_block .swiper {
		padding-bottom: 40px;
		margin-bottom: 30px;
	}
	#works_block .works_wrap .swiper-slide {
		width: 100%;
	}
	#works_block .slide-media {
		height: 58vw;
	}
}
/*-----------------------------------

	business_block

-----------------------------------*/
#business_block {
	margin-bottom: 100px;
}
#business_block a {
	display: block;
	max-width: 975px;
	margin: 0 auto;
	padding: 150px 0;
	background: url(../img/index/business_bg.jpg) no-repeat center/cover;
	position: relative;
	z-index: 0;
}
#business_block a::before {
	content: "";
	width: 100%;
	height: 100%;
	backdrop-filter: blur(4px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#business_block .ttl {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 5;
	color: #FFF;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	width: max-content;
}
#business_block .ttl::after {
	content: "For Business";
	font-size: 20px;
	display: block;
	border-top: 1px solid #FFF;
	padding-top: 20px;
	margin-top: 20px;
}
@media screen and (max-width: 840px) {
	#business_block a {
		max-width: none;
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	#business_block {
		margin-bottom: 50px;
	}
	#business_block a {
		padding: 130px 0;
	}
}
/*-----------------------------------

	news_block

-----------------------------------*/
#news_block {
	padding-bottom: 100px;
}
#news_block .contents_inner {
	max-width: 975px;
}
#news_block .ttl_wrap {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: 40px;
}
#news_block .ttl_wrap h2 {
	font-size: 20px;
	font-weight: 700;
	text-box: trim-both cap alphabetic;
}
#news_block .ttl_wrap h2::before {
	content: "NEWS";
	font-size: 60px;
	letter-spacing: 0.05em;
	color: var(--mClr1);
	margin-right: 30px;
}
#news_block .ttl_wrap .news-tabs {
	display: flex;
	gap: 0 20px;
}
#news_block .ttl_wrap .news-tabs li {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 10px 15px;
	background: #FFF;
	text-box: trim-both cap alphabetic;
	cursor: pointer;
}
#news_block .ttl_wrap .news-tabs li.active {
	background: var(--mClr1);
	color: #FFF;
}
#news_block .news-list {
	border-top: 1px solid #0000001A;
	margin-bottom: 40px;
}
#news_block .news-list article {
	border-bottom: 1px solid #0000001A;
	padding: 15px;
	display: none;
}
#news_block .news-list article a {
	display: flex;
	align-items: center;
	gap: 0 30px;
}
#news_block .news-list article a time {
	width: 75px;
	text-align: center;
	font-size: 12px;
	color: #8E8E8E;
}
#news_block .news-list article a .cat {
	display: block;
	width: 100px;
	background: #D9D9D980;
	color: #00000099;
	padding: 10px 0;
	text-align: center;
	font-size: 12px;
	text-box: trim-both cap alphabetic;
}
#news_block .news-list article a p {
	width: calc(100% - 235px);
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	font-size: 15px;
	font-weight: 600;
	line-height: 17px;
}
@media screen and (max-width: 840px) {
	#news_block .ttl_wrap {
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}
	#news_block .ttl_wrap h2 {
		text-align: center;
	}
	#news_block .ttl_wrap h2::before {
		display: block;
		margin: 0 0 10px 0;
	}
}
@media screen and (max-width: 640px) {
	#news_block {
		padding-bottom: 50px;
	}
	#news_block .ttl_wrap h2::before {
		font-size: 40px;
	}
	#news_block .ttl_wrap .news-tabs {
		gap: 0 10px;
	}
	#news_block .ttl_wrap .news-tabs li {
		font-size: 14px;
		letter-spacing: 0;
		padding: 8px 10px;
	}
	#news_block .news-list article a {
		flex-wrap: wrap;
		gap: 10px 30px;
	}
	#news_block .news-list article a p {
		width: 100%;
	}
}
/*-----------------------------------

	link_block

-----------------------------------*/
#link_block {
	padding-bottom: 100px;
}
#link_block .contents_inner {
	max-width: 975px;
	display: flex;
}
#link_block a {
	display: block;
	width: 50%;
	height: 174px;
	outline: 2px solid var(--mClr1);
	outline-offset: -1px;
	position: relative;
}
#link_block a.company {
	background: 
	url(../img/index/company_img.png) no-repeat 12% center/33%,
	url(../img/common/icon_arrow_bl.svg) no-repeat calc(100% - 20px) calc(100% - 20px)/16px;
}
#link_block a.recruit {
	background: url(../img/index/recruit_img.png) no-repeat 11% center/36.6%,
	url(../img/common/icon_arrow_bl.svg) no-repeat calc(100% - 20px) calc(100% - 20px)/16px;
}
#link_block a.recruit::after {
	content: "";
	width: 97px;
	height: 97px;
	background: url(../img/index/recruit_deco.svg) no-repeat center/contain;
	position: absolute;
	top: -40px;
	right: -45px;
}
#link_block a .txt {
	display: block;
	width: max-content;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	font-size: 15px;
	font-weight: 700;
}
#link_block a .txt::before {
	font-size: 30px;
	letter-spacing: 0.05em;
	color: var(--mClr1);
	display: block;
	margin-bottom: 15px;
}
#link_block a.company .txt::before {
	content: "COMPANY";
}
#link_block a.recruit .txt::before {
	content: "RECRUIT";
}
#link_block a.recruit .deco {
	display: none;
}
@media screen and (max-width: 840px) {
	#link_block .contents_inner {
		flex-direction: column;
		align-items: center;
	}
	#link_block a {
		width: min(470px,100%);
	}
	#link_block a.recruit::after {
		content: none;
		display: none;
	}
	#link_block a.recruit .txt {
		top: calc(50% + 20px);
	}
	#link_block a.recruit .deco {
		display: block;
		width: max-content;
		position: absolute;
		top: calc(50% - 35px);
		left: 50%;
		transform: translateY(-50%);
		font-size: 20px;
		font-weight: 700;
		letter-spacing: 0.1em;
		color: var(--mClr1);
		background: var(--sClr1);
		border-radius: calc(1px/0);
		padding: 8px 14px;
		text-box: trim-both cap alphabetic;
	}
}
@media screen and (max-width: 640px) {
	#link_block {
		padding-bottom: 50px;
	}
	#link_block a {
		height: 135px;
	}
	#link_block a .txt::before {
		margin-bottom: 10px;
	}
}
/*-----------------------------------

	map_block

-----------------------------------*/
#map_block {
	padding-bottom: 100px;
}
.ggmap {
	position: relative;
	overflow: hidden;
}
.ggmap iframe {
	width: 100%;
	height: 500px;
}
@media screen and (max-width: 640px) {
	#map_block {
		padding-bottom: 0;
	}
	.ggmap iframe {
		height: 360px;
	}
}