/*
========================================================
RESET
========================================================
*/
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html{
	scroll-behavior:smooth;
}

body{
	font-family:'Noto Sans JP',sans-serif;
	font-size:16px;
	line-height:1.8;
	color:#334155;
	background:#f8fafc;
}

img{
	display:block;
	width:100%;
	height:auto;
}

a{
	text-decoration:none;
	color:inherit;
	transition:.3s;
}

ul{
	list-style:none;
}

/*
========================================================
COMMON
========================================================
*/

.container{
	width:min(1200px,92%);
	margin:auto;
}

section{
	padding:90px 0;
}

.section-title{
	text-align:center;
	margin-bottom:60px;
}

.section-title span{
	display:inline-block;
	font-family:'Poppins',sans-serif;
	font-size:14px;
	font-weight:600;
	letter-spacing:.2em;
	color:#2563eb;
	margin-bottom:10px;
}

.section-title h2{
	font-size:38px;
	font-weight:700;
	color:#1e293b;
}

.btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:14px 36px;
	border-radius:50px;
	background:#2563eb;
	color:#fff;
	font-weight:700;
	transition:.3s;
}

.btn:hover{
	background:#1d4ed8;
	transform:translateY(-2px);
}

.btn.white{
	background:#fff;
	color:#2563eb;
}

.btn.white:hover{
	background:#f1f5f9;
}

/*
========================================================
HEADER
========================================================
*/

header{
	position:sticky;
	top:0;
	z-index:999;
	background:#fff;
	box-shadow:0 5px 18px rgba(0,0,0,.06);
}

.header-inner{
	height:80px;
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.logo img{
	width:320px;
	height:auto;
	display:block;
}

.gnav ul{
	display:flex;
	gap:35px;
}

.gnav a{
	font-weight:500;
	position:relative;
}

.gnav a::after{
	content:"";
	position:absolute;
	left:0;
	bottom:-6px;
	width:0;
	height:2px;
	background:#2563eb;
	transition:.3s;
}

.gnav a:hover::after{
	width:100%;
}

/*
========================================================
HERO
========================================================
*/

.hero{
	padding:100px 0;
	background:#fff;
}

.hero-inner{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:60px;
	align-items:center;
}

.hero-sub{
	display:inline-block;
	margin-bottom:20px;
	font-family:'Poppins',sans-serif;
	color:#2563eb;
	font-weight:600;
	letter-spacing:.15em;
}

.hero h1{
	font-size:64px;
	line-height:1.1;
	font-family:'Poppins',sans-serif;
	color:#1e293b;
	margin-bottom:25px;
}

.hero p{
	font-size:18px;
	margin-bottom:35px;
	color:#64748b;
}

.hero-image img{
	border-radius:18px;
	box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/*
========================================================
ABOUT
========================================================
*/

.about-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:70px;
	align-items:center;
}

.about img{
	border-radius:16px;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.about h3{
	font-size:32px;
	color:#1e293b;
	margin-bottom:20px;
}

.about p{
	margin-bottom:18px;
	color:#64748b;
}

/*
========================================================
SERVICE
========================================================
*/

.service{
	background:#fff;
}

.service-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:30px;
}

.card{
	background:#fff;
	border-radius:18px;
	padding:45px 35px;
	text-align:center;
	box-shadow:0 8px 30px rgba(0,0,0,.06);
	transition:.3s;
}

.card:hover{
	transform:translateY(-8px);
	box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.card i{
	font-size:48px;
	color:#2563eb;
	margin-bottom:25px;
}

.card h3{
	font-size:24px;
	font-family:'Poppins',sans-serif;
	color:#1e293b;
	margin-bottom:15px;
}

.card p{
	color:#64748b;
}

/*
========================================================
FEATURE
========================================================
*/

.feature{
	background:#f8fafc;
}

.feature-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:30px;
}

.feature-grid div{
	background:#fff;
	padding:40px 20px;
	text-align:center;
	border-radius:16px;
	box-shadow:0 8px 25px rgba(0,0,0,.06);
	transition:.3s;
}

.feature-grid div:hover{
	transform:translateY(-6px);
	box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.feature-grid i{
	font-size:44px;
	color:#2563eb;
	margin-bottom:18px;
}

.feature-grid h3{
	font-size:20px;
	color:#1e293b;
}

/*
========================================================
WORKS
========================================================
*/

.works{
	background:#fff;
}

.works-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:30px;
}

.works-grid article{
	background:#fff;
	border-radius:16px;
	overflow:hidden;
	box-shadow:0 8px 25px rgba(0,0,0,.06);
	transition:.3s;
}

.works-grid article:hover{
	transform:translateY(-6px);
	box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.works-grid img{
	aspect-ratio:16 / 10;
	object-fit:cover;
	transition:.4s;
}

.works-grid article:hover img{
	transform:scale(1.05);
}

.works-grid h3{
	padding:20px;
	text-align:center;
	font-size:18px;
	color:#1e293b;
}

/*
========================================================
FLOW
========================================================
*/

.flow{
	background:#f8fafc;
}

.flow-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:25px;
}

.flow-grid div{
	position:relative;
	background:#fff;
	border-radius:16px;
	padding:35px 20px;
	text-align:center;
	font-weight:700;
	color:#1e293b;
	box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.flow-grid div::after{
	content:"→";
	position:absolute;
	right:-18px;
	top:50%;
	transform:translateY(-50%);
	font-size:28px;
	color:#2563eb;
}

.flow-grid div:last-child::after{
	display:none;
}

/*
========================================================
NEWS
========================================================
*/

.news{
	background:#fff;
}

.news-list{
	max-width:900px;
	margin:auto;
	border-top:1px solid #e2e8f0;
}

.news-item{
	display:flex;
	align-items:center;
	gap:25px;
	padding:20px 0;
	border-bottom:1px solid #e2e8f0;
}

.news-date{
	width:130px;
	font-weight:700;
	color:#2563eb;
	flex-shrink:0;
}

.news-title{
	flex:1;
	color:#334155;
}

.news-item:hover .news-title{
	color:#2563eb;
}

/*
========================================================
CONTACT
========================================================
*/
/*
========================================================
CONTACT
========================================================
*/

.contact{
	padding:120px 0;
	background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.contact-box{
	max-width:900px;
	margin:auto;
	padding:70px 60px;
	background:#fff;
	border-radius:20px;
	box-shadow:0 20px 50px rgba(0,0,0,.15);
	text-align:center;
}

.contact-sub{
	display:block;
	font-family:'Poppins',sans-serif;
	font-size:14px;
	font-weight:600;
	letter-spacing:.25em;
	color:#2563eb;
	margin-bottom:15px;
}

.contact h2{
	font-size:42px;
	color:#1e293b;
	margin-bottom:25px;
}

.contact p{
	max-width:650px;
	margin:0 auto 40px;
	font-size:17px;
	line-height:2;
	color:#64748b;
}

.contact-buttons{
	display:flex;
	justify-content:center;
	align-items:center;
}

.contact .btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	padding:18px 42px;
	border-radius:50px;
	font-size:17px;
	font-weight:700;
	background:#2563eb;
	color:#fff;
	box-shadow:0 10px 25px rgba(37,99,235,.25);
	transition:.3s;
}

.contact .btn:hover{
	background:#1d4ed8;
	transform:translateY(-3px);
	box-shadow:0 18px 35px rgba(37,99,235,.35);
}

@media (max-width:768px){

	.contact{
		padding:80px 0;
	}

	.contact-box{
		padding:45px 25px;
		border-radius:15px;
	}

	.contact h2{
		font-size:30px;
	}

	.contact p{
		font-size:16px;
		margin-bottom:30px;
	}

	.contact .btn{
		width:100%;
		max-width:320px;
	}
}
/*
========================================================
FOOTER
========================================================
*/

footer{
	background:#0f172a;
	color:#cbd5e1;
	padding:70px 0 25px;
}

.footer-nav{
	margin-bottom:35px;
}

.footer-nav ul{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	gap:25px;
}

.footer-nav a:hover{
	color:#fff;
}

.footer-logo{
	text-align:center;
	margin-bottom:25px;
}

.footer-logo img{
	height:60px;
	width:auto;
	margin:auto;
}

footer p{
	text-align:center;
	font-size:14px;
	color:#94a3b8;
}

/*
========================================================
RESPONSIVE
========================================================
*/

@media (max-width:900px){

.hero-inner,
.about-grid{
	grid-template-columns:1fr;
}

.hero{
	padding:70px 0;
}

.hero-text{
	order:2;
	text-align:center;
}

.hero-image{
	order:1;
}

.hero h1{
	font-size:46px;
}

.section-title h2{
	font-size:30px;
}

.service-grid,
.feature-grid,
.works-grid,
.flow-grid{
	grid-template-columns:repeat(2,1fr);
}

.flow-grid div::after{
	display:none;
}

.gnav{
	display:none;
}

}

@media (max-width:600px){

section{
	padding:70px 0;
}

.hero h1{
	font-size:36px;
}

.hero p{
	font-size:16px;
}

.about h3{
	font-size:26px;
}

.service-grid,
.feature-grid,
.works-grid,
.flow-grid{
	grid-template-columns:1fr;
}

.contact h2{
	font-size:28px;
}

.btn{
	width:100%;
	max-width:300px;
}

.footer-nav ul{
	flex-direction:column;
	gap:15px;
}

}

/*
========================================================
COMPANY
========================================================
*/

.company{
	background:#fff;
}

.company-box{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:60px;
	align-items:center;
}

.company-image img{
	width:100%;
	border-radius:18px;
	box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.company-content h3{
	font-size:32px;
	color:#1e293b;
	margin-bottom:20px;
	line-height:1.5;
}

.company-content p{
	color:#64748b;
	line-height:2;
	margin-bottom:35px;
}

.company-info{
	display:grid;
	grid-template-columns:120px 1fr;
	row-gap:18px;
	column-gap:20px;
	margin-bottom:35px;
}

.company-info dt{
	font-weight:700;
	color:#1e293b;
}

.company-info dd{
	margin:0;
	color:#64748b;
	padding-bottom:12px;
	border-bottom:1px solid #e2e8f0;
}

@media(max-width:900px){

	.company-box{
		grid-template-columns:1fr;
	}

	.company-content h3{
		font-size:26px;
	}
}

/*
========================================================
RECRUIT
========================================================
*/

.recruit{
	background:#f8fafc;
}

.recruit-box{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:60px;
	align-items:center;
}

.recruit-image img{
	width:100%;
	border-radius:18px;
	box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.recruit-content h3{
	font-size:32px;
	color:#1e293b;
	margin-bottom:20px;
	line-height:1.5;
}

.recruit-content p{
	color:#64748b;
	line-height:2;
	margin-bottom:35px;
}

.recruit-points{
	list-style:none;
	margin:0 0 35px;
	padding:0;
}

.recruit-points li{
	display:flex;
	align-items:center;
	gap:12px;
	padding:12px 0;
	color:#475569;
	border-bottom:1px solid #e2e8f0;
}

.recruit-points i{
	color:#2563eb;
	font-size:18px;
}

@media(max-width:900px){

	.recruit-box{
		grid-template-columns:1fr;
	}

	.recruit-content{
		order:2;
	}

	.recruit-image{
		order:1;
	}

	.recruit-content h3{
		font-size:26px;
	}

}