@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body, html {
	height: 100%;
	font-family: 'Helvetica Neue', sans-serif;
}
body {
	font-family: "ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
.hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
}
.bg-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: auto;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity 2s ease-in-out;
	opacity: 0;
	z-index: 0;
}
.bg-layer.active {
	opacity: 1;
	z-index: 1;
}
.hero-overlay,
.hero-content {
	position: relative;
	z-index: 2;
}

.bg-layer.show {
	opacity: 1;
	z-index: 1;
}
.hero-content {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 5%;
	max-width: 800px;
}
.bg-layer {
	opacity: 0.01;
	transition: opacity 1.5s ease-in-out;
	background-color: #000;
}
.mission {
	margin-bottom: 15px;
	font-size: 14px;
	color: #FFF;
	letter-spacing: 1px;
}
.hero-text {
	font-size: 24px;
	/* line-height: 2; */
	color: #FFF;
	white-space: pre-line;
}
.logo {
	display: flex;
	align-items: center;
}
.logo img {
	height: 40px;
	width: auto;
	display: block;
}
.wrap {
	display: block;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}


/** service
********************/
#service {
	text-align: center;
	padding: 80px 20px;
}

#service h2 {
	font-size: 36px;
	margin-bottom: 60px;
	font-weight: 600;
	color: #222;
}

#service .wrap {
	max-width: 1200px;
	margin: 0 auto;
}

#service ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	list-style: none;
}

#service li {
	width: 100%;
	max-width: 360px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service_img {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.service_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service_img .overlay_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	color: white; /* 見やすくするため */
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
	z-index: 2;
}

.service_txt {
	padding: 20px 0;
	font-size: 14px;
	line-height: 1.8;
	min-height: 120px;
	text-align: left;
}

.service_btn a {
	display: block;
	border: 1px solid #333;
	padding: 20px 0;
	text-align: center;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.3s, color 0.3s;
}

.service_btn a:hover {
	background: #333;
	color: #fff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
	#service ul {
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
	#service li {
		max-width: 100%;
		flex: none;
	}
}




.company_table {
	max-width: 900px;
	margin: 80px auto;
	padding: 0 20px;
}

.company_table table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Helvetica Neue', sans-serif;
	font-size: 14px;
	color: #333;
}

.company_table-th,
.company_table-td {
	vertical-align: top;
	padding: 16px 12px;
	border-bottom: 1px solid #e0e0e0;
}

.company_table-th {
	width: 160px;
	font-weight: normal;
	color: #555;
	text-align: left;
	white-space: nowrap;
}

.company_table-td {
	line-height: 1.8;
}

.company_table-td a {
	color: #0073e6;
	text-decoration: underline;
}

@media screen and (max-width: 600px) {
	.company_table-th,
	.company_table-td {
		display: block;
		width: 100%;
		padding: 10px 0;
	}

	.company_table-th {
		font-weight: bold;
		margin-top: 20px;
	}

	.company_table table {
		border: none;
	}
}





/** works
********************/
#works {
	padding: 75px 0;
	background: #fff;
}
#works h2 {
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 600;
	text-align: center;
    color: #222;
}
#works .wrap {
	max-width: 1200px;
	margin: 0 auto;
}
#works a {
	color: #000;
}
.work-content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.work-card {
    width: 31.5%;
	padding: 0 0 20px;
}
.work-card a.card-img {
	display: block;
	margin-bottom: 20px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.work-card a img {
	width: 100%;
	display: block;
}
.work-card h3 {
	margin: 16px 0 5px;
	color: #111;
	font-size: 16px;
	font-weight: bold;
}
.work-card p {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.6;
	color: #333;
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
}
.tag {
	display: inline-block;
	background: #000;
	color: #fff;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 20px;
}
.works_btn a {
    display: block;
    width: 50%;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #333;
    transition: background 0.3s, color 0.3s;
    color: #333;
    text-decoration: none;
}
.works_btn a:hover {
    background: #333;
    color: #fff !important;
}
@media (max-width: 750px) {
	#works .wrap {
		padding: 0 3%;
	}
	.work-content {
		flex-wrap: wrap;
	}
	.work-card {
		width: 100%;
		padding: 0 0 40px;
	}
	.works_btn a {
		width: 80%;
	}
}



/** three-c-section
********************/
#three-c-section {
	background-color: #32cabd;
	padding: 60px 20px;
	color: #ffffff;
}
#three-c-section .main-copy {
	margin-bottom: 40px;
	font-size: 18px;
	font-weight: bold;
	line-height: 2;
	text-align: center;
}
#three-c-section .button-area {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}
#three-c-section .btn {
    display: inline-block;
	width: 30%;
    padding: 18px 40px;
    position: relative;
    transition: all 0.3s ease;
    font-size: 14px;
	text-align: center;
	color: #fff;
	border: 1px solid #fff;
	text-decoration: none;
}
#three-c-section .btn::after {
	content: '→';
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
}
@media (max-width: 750px) {
	#three-c-section .button-area {
		gap: 20px;
		flex-wrap: wrap;
	}
	#three-c-section .btn {
		width: 90%;
		padding: 25px 0;
		font-size: 16px;
		text-decoration: none;
	}
}



/** features
********************/
#features {
	background-image: url('../images/features_bg.png');
    background-position: center center;
    background-repeat: repeat;
    background-size: contain;
    background-attachment: fixed;
}

#features .overlay {
	padding: 60px 0;
	background-color: rgba(0, 0, 0, 0.8);
}

#features .wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

#features h3 {
	margin-bottom: 10px;
	font-size: 18px;
    font-weight: bold;
	line-height: normal;
}

.feature-block {
	background-color: #fff;
	padding: 50px 30px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
	text-align: center;
	border-radius: 5px;
}

.feature-block p {
    font-size: 14px;
    text-align: left;
    line-height: normal;
}

@media (max-width: 750px) {
	#features .wrap {
		grid-template-columns: 1fr;
	}
}




footer {
	background-color: #1f1f1f;
	color: #eee;
	padding: 40px 20px;
	font-family: 'Helvetica Neue', sans-serif;
	font-size: 14px;
}

.footer-wrap {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-left {
	flex: 1;
	min-width: 280px;
}

.footer-logo {
	width: 120px;
	margin-bottom: 16px;
}

.footer-left p {
	line-height: 1.8;
	color: #ccc;
}

.footer-right {
	flex: 1;
	min-width: 280px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-menu,
.footer-policy {
	display: flex;
    justify-content: flex-end;
	width: 100%;
	gap: 20px;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 10px 0;
}

.footer-menu a,
.footer-policy a {
	color: #ddd;
	text-decoration: none;
	font-size: 14px;
}

.footer-menu a:hover,
.footer-policy a:hover {
	text-decoration: underline;
}

.footer-copy {
	width: 100%;
	margin-top: 20px;
	font-size: 12px;
	color: #aaa;
	text-align: right;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
	.footer-wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-menu,
	.footer-policy {
		flex-direction: column;
		gap: 6px;
	}
}







/* --- 基本レイアウト --- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: transparent;
	padding: 20px 40px 20px 20px;
	transition: background-color 0.4s ease; /* ← フェード効果 */
}

.header-inner {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 48px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nav a {
	text-decoration: none;
	color: #FFF;
}

.nav .cta {
	background: linear-gradient(to right, #ff6a00, #ff4500);
    color: #fff;
    padding: 12px 16px;
    border-radius: 4px;
}


/* --- スクロール後 --- */
.site-header.scrolled {
	background-color: #fff;
}
.scrolled .nav a {
	color: #333;
}
.scrolled .nav a:last-child {
	color: #FFF;
}


@media (max-width: 750px) {
	.hamburger {
		display: flex;
	}

	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 25px;
		height: 25px;
		position: relative;
		cursor: pointer;
		z-index: 1100;
	}

	.hamburger.active span {
		background-color: #333;
	}

	.hamburger span {
		display: block;
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: #FFF;
		transition: 0.5s ease;
		border-radius: 2px;
	}

	.hamburger span:nth-child(1) {
		top: 4px;
	}

	.hamburger span:nth-child(2) {
		top: 11px;
	}

	.hamburger span:nth-child(3) {
		top: 18px;
	}

	/** 開いた時の状態 **/
	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg);
		top: 11px;
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg);
		top: 11px;
	}

	.nav {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		background: #fff;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		padding: 20px 0;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		height: 100vh;
		gap: 40px;
	}

	.nav a {
		font-size: 17px;
		color: #333;
	}

	.nav.open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	/** 開いた時の状態 **/
	.site-header.scrolled .hamburger span {
		background: #333;
	}
}
