:root {
	--color-terracotta: #9c4f2b;
	--color-terracotta-dark: #773b20;
	--color-bg: #f6f3f0;
	--color-text: #333333;
	--color-accent-gold: #cba135;
	--color-accent-blue: #425b76;
	--max-width: 1120px;
	--radius-lg: 18px;
	--shadow-soft: 0 12px 25px rgba(0, 0, 0, 0.12);
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--color-text);
	background: var(--color-bg);
	scroll-behavior: smooth;
}

body {
	line-height: 1.7;
}

h1, h2, h3, h4 {
	font-family: 'Shippori Mincho', 'Noto Sans JP', serif;
	margin-top: 0;
	color: #222;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Header / Global Navigation */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: linear-gradient(90deg, rgba(34, 34, 34, 0.92), rgba(68, 40, 30, 0.92));
	backdrop-filter: blur(8px);
	color: #fff;
}

.header-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
}

.logo {
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.logo-mark {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: linear-gradient(145deg, var(--color-terracotta), var(--color-terracotta-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	overflow: hidden;
}

.logo-mark::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.logo-mark span {
	font-family: 'Shippori Mincho', serif;
	position: relative;
	z-index: 1;
}

.logo-sub {
	font-size: 12px;
	opacity: 0.8;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 14px;
}

.header-nav a {
	padding: 6px 10px;
	border-radius: 999px;
	transition: background 0.2s ease, color 0.2s ease;
	opacity: 0.9;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.header-nav a .nav-en {
	font-size: 11px;
	opacity: 0.7;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.header-nav a .nav-ja {
	font-size: 13px;
}

.header-nav a:hover {
	background: rgba(255, 255, 255, 0.14);
	opacity: 1;
}

.header-cta {
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid var(--color-accent-gold);
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
	.header-nav {
		display: none;
	}
}

/* Hero Section */

.hero {
	position: relative;
	min-height: 100vh;
	padding-top: 64px;
	overflow: hidden;
	color: #2a2a2a;
	padding: 70px 0;
}

.hero-sky {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.hero-inner {
	position: relative;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 80px 20px 40px;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
	align-items: center;
	gap: 32px;
	z-index: 1;
}

@media (max-width: 900px) {
	.hero-inner {
		grid-template-columns: minmax(0, 1fr);
		padding-top: 70px;
	}
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.hero-tagline {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #4a4a4a;
	margin-bottom: 10px;
}

.hero-title {
	font-family: "Noto Serif JP", serif;
	font-size: clamp(26px, 3.5vw, 36px);
	line-height: 1.35;
	margin-bottom: 18px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
	color: #2a2a2a;
}

.hero-title span {
	color: #f4d03f;
	text-shadow: 
		2px 2px 4px rgba(0, 0, 0, 0.6),
		4px 4px 8px rgba(0, 0, 0, 0.4),
		-1px -1px 0 #b8860b,
		1px -1px 0 #b8860b,
		-1px 1px 0 #b8860b,
		1px 1px 0 #b8860b;
	font-weight: 700;
}

.hero-lead {
	font-size: 18px;
	max-width: 520px;
	opacity: 1;
	margin-bottom: 24px;
	color: #000000;
	font-weight: 500;
	text-shadow: 
		2px 2px 4px rgba(255, 255, 255, 0.8),
		0 0 10px rgba(255, 255, 255, 0.6);
	line-height: 1.8;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-accent-gold), #f6df97);
	color: #3a2710;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(0,0,0,0.3);
	transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(0,0,0,0.35);
	filter: brightness(1.03);
}

.btn-secondary-text {
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	opacity: 1;
	color: #000000;
	font-weight: 500;
	text-shadow: 
		2px 2px 4px rgba(255, 255, 255, 0.8),
		0 0 10px rgba(255, 255, 255, 0.6);
}

.btn-secondary-text i {
	font-size: 10px;
}

.top-mv{
	position: absolute;
	width:100%;
	height:100%;
}

.top-mv video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Road & Scene */

.hero-scene {
	position: relative;
	height: 380px;
	max-height: 55vh;
	border-radius: 28px;
	background: transparent;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	border: 2px solid rgba(255,255,255,0.2);
}

.hero-scene::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
}

@media (max-width: 900px) {
	.hero-scene {
		height: 340px;
	}
}

.hero-scene::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
	z-index: 1;
	pointer-events: none;
}

/* Billboards */

.billboard {
	position: absolute;
	bottom: -30vh;
	width: 210px;
	max-width: 52vw;
	padding: 14px 16px 18px;
	border-radius: 12px;
	background: #fefcf5;
	color: #3b2d1e;
	box-shadow: 0 16px 26px rgba(0,0,0,0.4);
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	transform-origin: center bottom;
	text-decoration: none;
	border: 3px solid #e9ddc2;
	overflow: hidden;
	cursor: pointer;
	animation: billboardMove 14s linear infinite;
	opacity: 0;
	z-index: 4;
}

.billboard-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #9b7d50;
}

.billboard-title {
	font-family: 'Shippori Mincho', serif;
	font-size: 15px;
	font-weight: 700;
}

.billboard-desc {
	font-size: 11px;
	color: #6c5942;
	line-height: 1.5;
	opacity: 0.9;
}

.billboard-tag {
	font-size: 10px;
	margin-top: 6px;
	padding: 4px 7px;
	border-radius: 999px;
	background: rgba(66,91,118,0.08);
	color: var(--color-accent-blue);
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.billboard-left {
	left: 16%;
}

.billboard-right {
	right: 16%;
}

.billboard:nth-of-type(2n) {
	transform: rotate(-1.2deg);
}

.billboard:nth-of-type(2n+1) {
	transform: rotate(1.3deg);
}

.billboard:hover {
	filter: brightness(1.05);
}

.billboard::before {
	content: "";
	position: absolute;
	bottom: -38px;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	height: 40px;
	border-radius: 999px;
	background: linear-gradient(to bottom, #4c4842, #1a1817);
	box-shadow: 0 10px 14px rgba(0,0,0,0.7);
	z-index: -1;
}

.billboard-company{
	--delay: 0;
}
.billboard-services{
	--delay: 1;
}
.billboard-why{
	--delay: 2;
}
.billboard-contact{
	--delay: 3;
}

@keyframes billboardMove {
	0% {
		bottom: -32vh;
		transform: translateZ(-300px) scale(0.5);
		opacity: 0;
	}
	15% {
		opacity: 0.3;
	}
	50% {
		bottom: 6vh;
		transform: translateZ(0) scale(1);
		opacity: 1;
	}
	85% {
		bottom: 18vh;
		transform: translateZ(220px) scale(1.25);
		opacity: 0.0;
	}
	100% {
		bottom: 18vh;
		transform: translateZ(220px) scale(1.3);
		opacity: 0;
	}
}

.billboard[data-delay] {
	animation-delay: calc(var(--delay, 0) * 3s);
}

@media (max-width: 900px) {
	.billboard {
		width: 170px;
		padding: 10px 12px 14px;
	}
	.billboard-left {
		left: 10%;
	}
	.billboard-right {
		right: 10%;
	}
}

@media (max-width: 600px) {
	.billboard {
		width: 150px;
	}
	.billboard-label {
		font-size: 10px;
	}
	.billboard-title {
		font-size: 13px;
	}
	.billboard-desc {
		font-size: 10px;
	}
}

/* Main Sections */

main {
	background: var(--color-bg);
}

section {
	padding: 70px 20px;
}

.section-inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.section-header {
	margin-bottom: 24px;
	text-align: left;
}

.section-kicker {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-accent-blue);
	margin-bottom: 6px;
}

.section-title {
	font-size: 24px;
	margin-bottom: 8px;
}

.section-lead {
	font-size: 14px;
	color: #555;
	max-width: 580px;
}

/* Mission */

.mission {
	background: #fdfaf6;
}

.mission-grid {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
	gap: 30px;
	align-items: center;
}

@media (max-width: 900px) {
	.mission-grid {
		grid-template-columns: 1fr;
	}
}

.mission-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 26px 24px;
	box-shadow: var(--shadow-soft);
	border-left: 4px solid var(--color-terracotta);
}
.mission-card h3{
	font-size:18px;
	margin-bottom:8px;
}
.mission-card p{
	font-size:13px;
	margin-bottom:14px;
}

.mission-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 13px;
}

.mission-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.mission-list i {
	margin-top: 4px;
	color: var(--color-accent-gold);
}

.mission-visual {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow-soft);
	text-align: center;
}

.mission-visual i{
	font-size: 64px; 
	color: var(--color-terracotta); 
	margin-bottom: 16px;
}

.mission-visual h4{
	font-size: 16px; 
	margin-bottom: 8px;
}

.mission-visual p{
	font-size: 12px; 
	color: #666;
}

/* Services */

.services {
	background: #f6f3f0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

@media (max-width: 980px) {
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.service-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 20px 18px 22px;
	box-shadow: 0 10px 18px rgba(0,0,0,0.06);
	border-top: 3px solid rgba(156,79,43,0.5);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.service-icon {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: rgba(156,79,43,0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
	color: var(--color-terracotta-dark);
}

.service-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.service-meta {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #999;
	margin-bottom: 4px;
}

.service-text {
	font-size: 13px;
	color: #555;
}

/* Why Us */

.whyus {
	background: #ffffff;
}

.whyus-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
	gap: 26px;
	align-items: flex-start;
}

.whyus-grid h3{
	font-size:18px;
	margin-bottom:12px;
}

@media (max-width: 900px) {
	.whyus-grid {
		grid-template-columns: 1fr;
	}
}

.whyus-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

@media (max-width: 600px) {
	.whyus-points {
		grid-template-columns: 1fr;
	}
}

.stat-card {
	background: #fdf7ed;
	border-radius: 16px;
	padding: 18px 16px;
	border: 1px solid rgba(156,79,43,0.18);
}

.stat-number {
	font-size: 26px;
	font-weight: 700;
	color: var(--color-terracotta-dark);
	margin-bottom: 4px;
}

.stat-caption {
	font-size: 12px;
	margin-bottom: 4px;
}

.stat-note {
	font-size: 11px;
	color: #777;
}

.whyus-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
}

.whyus-list li {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.whyus-list i {
	color: var(--color-accent-blue);
	margin-top: 3px;
}

/* Company */

.company {
	background: #f9f7f4;
}

.company-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.company-grid {
		grid-template-columns: 1fr;
	}
}

.company-message {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 22px 20px;
	box-shadow: var(--shadow-soft);
	position: relative;
}

.company-message::before {
	content: """;
		position: absolute;
	top: -26px;
	left: 16px;
	font-size: 48px;
	color: rgba(156,79,43,0.18);
	font-family: 'Shippori Mincho', serif;
}

.company-message p{
	font-size:13px;
	line-height:1.8;
}

.rep-name {
	margin-top: 12px;
	font-size: 13px;
	font-weight: 500;
	color: #555;
}

.company-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.company-table th,
.company-table td {
	padding: 10px 12px;
}

.company-table th {
	width: 120px;
	background: #f1e2d8;
	text-align: left;
	font-weight: 600;
	color: #533020;
}

.company-table tr:nth-child(even) td {
	background: #fbf7f4;
}

/* Contact */

.contact {
	background: #211515;
	color: #fdf6e8;
	padding-bottom: 40px;
}

.contact .section-header {
	text-align: center;
}

.contact .section-title {
	color: #fff8e9;
}

.contact .section-lead {
	margin: 0 auto;
	color: #f7e9cf;
}

.contact-grid {
	max-width: 620px;
	margin: 32px auto 0;
	display: grid;
	gap: 20px;
}

.wpcf7-form {
	background: rgba(0,0,0,0.4);
	border-radius: 18px;
	padding: 20px 18px 22px;
	box-shadow: 0 16px 32px rgba(0,0,0,0.5);
}

.form-row {
	margin-bottom: 14px;
}

.form-row label {
	display: block;
	font-size: 12px;
	margin-bottom: 4px;
}

.form-row input,
.form-row textarea,
.form-row select {
	width: 100%;
	padding: 8px 10px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.18);
	background: rgba(0,0,0,0.35);
	color: #fff;
	font-size: 13px;
	outline: none;
	font-family: 'Noto Sans JP', sans-serif;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
	color: rgba(255,255,255,0.5);
}

.form-row textarea {
	min-height: 110px;
	resize: vertical;
}

.form-helper {
	font-size: 11px;
	color: rgba(255,255,255,0.7);
	margin-top: 2px;
}

.form-check span{
	margin-left:0;
}
.form-check label{
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
.form-check label input{
	width:20px;
	height:16px;
}

.contact-submit {
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
}

.wpcf7-submit {
	border: none;
	border-radius: 999px;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	background: linear-gradient(135deg, var(--color-accent-gold), #f4e0a5);
	color: #3b2612;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 10px 22px rgba(0,0,0,0.55);
	transition: all 0.2s ease;
}
.wpcf7-spinner{
	display:none;
}
.btn-submit:hover {
	filter: brightness(1.03);
	transform: translateY(-1px);
}

.contact-meta {
	font-size: 12px;
	text-align: center;
	color: rgba(255,255,255,0.78);
}

.contact-meta strong{
	font-size:15px;
	color:#fff;
}

.form-message {
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 14px;
	font-size: 13px;
	text-align: center;
}

.form-message.success {
	background: rgba(46, 125, 50, 0.3);
	border: 1px solid rgba(129, 199, 132, 0.5);
	color: #a5d6a7;
}

.form-message.error {
	background: rgba(198, 40, 40, 0.3);
	border: 1px solid rgba(239, 83, 80, 0.5);
	color: #ef9a9a;
}

/* Footer */
.site-footer{
	background: #211515;
    color: #fdf6e8;
    padding: 20px 70px 40px;
}
.footer-inner {
	max-width: var(--max-width);
    margin: 0 auto;
	border-top: 1px solid rgba(255,255,255,0.12);
	padding-top: 12px;
	font-size: 11px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	color: rgba(255,255,255,0.7);
}

.footer-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-links a {
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 3px;
}

@media (max-width: 600px) {
	.site-footer {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* page */
.main-page{
	max-width:800px;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.page-title{
	font-size:30px;
	margin-bottom:50px;
}

.main-page h3{
	margin-top:50px;
}

@media (max-width: 900px) {
	.main-page{
		width:90%;
	}
}

@media (max-width: 600px){
	.page-title{
		font-size:20px;
	}
}