/* Header v2 */
.header-v2 {
	z-index: 99993;
}

body.header-v2-menu-open .header-v2 {
	z-index: 99989;
}

.header-v2.site-header {
	padding: 0;
	border-bottom: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
}

body.has-header-v2 {
	padding-top: var(--header-v2-bar-height, 60px);
}

.header-v2__bar {
	position: relative;
	z-index: 1;
	background-color: #ffffff;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-v2--sticky.is-scrolled .header-v2__bar {
	border-bottom-color: #e5e5e5;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-v2__bar-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	margin: 0 auto;
	padding: 15px 20px;
}

.header-v2__logo {
	grid-column: 2;
	justify-self: center;
	max-width: 164px;
}

.header-v2__logo a {
	display: inline-block;
	line-height: 0;
}


.header-v2__logo-text {
	font-size: 24px;
	font-weight: 700;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.header-v2__toggle {
	grid-column: 3;
	justify-self: end;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 7px;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

body.header-v2-menu-open .header-v2__toggle {
	visibility: hidden;
}

.header-v2__toggle-bar {
	display: block;
	width: 30px;
	height: 6px;
	background-color: #000000;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.header-v2__overlay {
	position: fixed;
	inset: 0;
	z-index: 99990;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

body.header-v2-menu-open .header-v2__overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.header-v2__panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 99995;
	width: 100%;
	max-width: 340px;
	background-color: #ffffff;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
	overflow-x: hidden;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.35s ease;
}

body.header-v2-menu-open .header-v2__panel {
	transform: translateX(0);
}

.header-v2__close {
	position: absolute;
	top: 28px;
	right: 28px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.header-v2__close-bar {
	position: absolute;
	width: 30px;
	height: 6px;
	background-color: #000000;
}

.header-v2__close-bar:nth-child(1) {
	transform: rotate(45deg);
}

.header-v2__close-bar:nth-child(2) {
	transform: rotate(-45deg);
}

.header-v2__panel-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	/* max-width: 420px; */
	margin: 0 auto;
	padding-top: 70px;
}

.header-v2__panel-logo {
	margin-bottom: 20px;
	text-align: center;
}

.header-v2__panel-logo .header-v2__logo-img {
	max-width: 140px;
}

.header-v2__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-v2__menu > li {
	margin: 0;
	padding: 0;
	border: 0;
}

.header-v2__menu > li > a {
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	gap: 0 24px;
	padding: 20px 10px;
	border-left: 8px solid transparent;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.header-v2__menu > li > a:hover {
	border-left-color: #000000;
	text-decoration: none;
}

body.header-v2-menu-open {
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.header-v2__bar-inner {
		padding: 20px 16px;
	}

	.header-v2__logo-img {
		max-width: 200px;
	}

	.header-v2__panel {
		max-width: 100%;
		padding: 24px 20px 40px;
	}

	.header-v2__close {
		top: 20px;
		right: 16px;
	}

	.header-v2__panel-inner {
		padding-top: 64px;
	}

	.header-v2__panel-logo {
		margin-bottom: 48px;
	}

	.header-v2__panel-logo .header-v2__logo-img {
		height: 52px;
	}

	.header-v2__menu > li + li {
		margin-top: 28px;
	}

	.header-v2__menu > li > a {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		font-size: 16px;
	}

	.header-v2__menu > li > a .en {
		font-size: 12px;
	}
}

/* Footer v2 */
.footer-v2 {
	background-color: #000000;
	color: #ffffff;
}

.footer-v2__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 56px 24px 48px;
}

.footer-v2__main {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

.footer-v2__brand {
	flex: 1 1 auto;
	min-width: 0;
}

.footer-v2__logo {
	display: inline-block;
	line-height: 0;
}

.footer-v2__logo img {
	display: block;
	width: auto;
	max-width: 220px;
	height: auto;
}

.footer-v2__logo-text {
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.footer-v2__contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 40px;
}

.footer-v2__contact {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 48px;
	padding: 10px 18px;
	background-color: #ffffff;
	color: #000000;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.footer-v2__contact:hover,
.footer-v2__contact:focus {
	opacity: 0.85;
	color: #000000;
	text-decoration: none;
}

.footer-v2__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
}

.footer-v2__contact-text {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.footer-v2__legal {
	flex: 0 0 auto;
	align-self: flex-end;
}

.footer-v2__menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 16px 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-v2__menu > li {
	margin: 0;
	padding: 0;
	border: 0;
}

.footer-v2__menu > li > a {
	display: inline-flex;
	align-items: baseline;
	gap: 12px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: #ffffff;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.footer-v2__menu > li > a:hover,
.footer-v2__menu > li > a:focus {
	opacity: 0.7;
	color: #ffffff;
	text-decoration: none;
}

.footer-v2__menu > li > a .en {
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

@media screen and (max-width: 991px) {
	.footer-v2__main {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-v2__legal {
		width: 100%;
		margin-top: 40px;
	}

	.footer-v2__menu {
		justify-content: flex-start;
		gap: 20px 32px;
	}
}

@media screen and (max-width: 767px) {
	.footer-v2__inner {
		padding: 40px 16px 32px;
	}

	.footer-v2__contacts {
		flex-direction: column;
		width: 100%;
		margin-top: 32px;
	}

	.footer-v2__contact {
		width: 100%;
	}

	.footer-v2__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.footer-v2__menu > li > a {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		white-space: normal;
	}
}

/* Page Home */
.page-home {
	padding: 0;
}

#primary.page-home {
	padding-top: 0;
	padding-bottom: 0;
}

.page-home .container.container-md-2 {
	max-width: 1030px;
}

/* Hero */
.home-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.home-hero__bg {
	position: absolute;
	inset: 0;
}

.home-hero__videos {
	position: absolute;
	inset: 0;
}

.home-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease;
}

.home-hero__video.is-active {
	opacity: 1;
}

.home-hero__shade {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.home-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #ffffff;
}
.container.container-md-2 {
	max-width: 1030px;
}

.home-anchor-nav .container-md-2 {
	padding-top: 0;
	padding-bottom: 0;
}
.home-hero__title {
	font-size: 33px;
	font-weight: 500;
}

.home-hero__subtitle {
	font-size: 36px;
	font-weight: bold;
}

/* Anchor nav */

.home-anchor-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 25px 0;
	list-style: none;
	gap: 20px;
}

.home-anchor-nav__list > li {
	flex: 0 1 auto;
	margin: 0;
	padding: 0;
	border: 0;
}

.home-anchor-nav__list a {
	display: inline-flex;
	gap: 10px;
	font-size: 12px;
	font-weight: bold;
	color: #cccccc;
}

.home-anchor-nav__list a:hover,
.home-anchor-nav__list a:focus {
	color: #000000;
	text-decoration: none;
}

.home-anchor-nav__list a .en {
	font-size: 12px;
	font-weight: bold;
	color: currentColor;
	text-transform: uppercase;
}

/* Floating CTA */
.home-floating-cta {
	position: fixed;
	left: 0;
	top: 50%;
	z-index: 90;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 56px;
	padding: 20px 8px;
	background: #e60012;
	color: #ffffff;
	text-decoration: none;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.home-floating-cta:hover,
.home-floating-cta:focus {
	color: #ffffff;
	text-decoration: none;
	opacity: 0.9;
}

.home-floating-cta__jp {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.home-floating-cta__en {
	font-family: "Roboto", sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Sections common */
.home-section {
	padding: 50px 0;
}

.home-section__title {
	margin: 0 0 40px;
	text-align: center;
}

.home-section__title-jp {
	display: block;
	margin-bottom: 8px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
}

.home-section__title-en {
	display: inline-block;
	padding: 4px 12px;
	background: #f5d4dc;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.home-bilingual {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.home-bilingual__col p {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.8;
}

.home-bilingual__col p:last-child {
	margin-bottom: 0;
}

.home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 280px;
	padding: 16px 32px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.home-btn:hover,
.home-btn:focus {
	opacity: 0.85;
	text-decoration: none;
}

.home-btn--dark {
	background: #000000;
	color: #ffffff;
}

.home-btn .en {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}

/* Drone cards */

.home-drones__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.home-drone-card__border {
	padding: 10px;
	background: repeating-linear-gradient(
		45deg,
		#000000,
		#000000 8px,
		#ffffff 8px,
		#ffffff 16px
	);
}

.home-drone-card__inner {
	position: relative;
	padding: 24px 20px;
	background: #ffffff;
	text-align: center;
}

.home-drone-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: #e60012;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	padding: 6px;
}

.home-drone-card__thumb {
	margin-bottom: 16px;
}

.home-drone-card__thumb img {
	display: block;
	width: 100%;
	max-width: 220px;
	height: 160px;
	margin: 0 auto;
	object-fit: contain;
}

.home-drone-card__label {
	margin: 0 0 8px;
	font-size: 12px;
	line-height: 1.5;
}

.home-drone-card__name {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
}

.home-drone-card__price {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
}

.home-drone-card__desc {
	margin: 0;
	font-size: 11px;
	line-height: 1.6;
	text-align: left;
}

.home-drones__more {
	margin-top: 40px;
	text-align: center;
}

/* Intro + risks */
.home-scroll-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 40px auto 56px;
	padding: 0;
	border: 1px solid #000000;
	background: transparent;
	cursor: pointer;
	animation: home-bounce 1.6s infinite;
}

.home-scroll-hint span {
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid #000000;
	border-bottom: 2px solid #000000;
	transform: rotate(45deg) translateY(-2px);
}

@keyframes home-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(8px); }
}

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

.home-risk-card {
	position: relative;
	min-height: 220px;
	overflow: hidden;
}

.home-risk-card__bg img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	filter: grayscale(100%);
}

.home-risk-card__label {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 16px;
	text-align: center;
	color: #ffffff;
}

.home-risk-card__label .jp,
.home-risk-card__label .en {
	display: inline-block;
	padding: 4px 10px;
	background: rgba(245, 212, 220, 0.9);
	color: #000000;
}

.home-risk-card__label .jp {
	font-size: 16px;
	font-weight: 700;
}

.home-risk-card__label .en {
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
}

/* Steps */
.home-bilingual--intro {
	margin-bottom: 40px;
}

.home-steps__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.home-step {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 24px;
	padding: 24px;
	border: 1px solid #000000;
}

.home-step__num {
	margin: 0 0 16px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.home-step__icon img {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.home-step__title {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 700;
}

.home-step__title .en {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}

.home-bilingual--step {
	gap: 24px;
}

/* Philosophy */
.home-philosophy__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.home-philosophy-card__box {
	min-height: 160px;
	padding: 24px;
	background: #f2f2f2;
}

.home-philosophy-card__box p {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.7;
}

.home-philosophy-card__box p:last-child {
	margin-bottom: 0;
}

.home-philosophy-card__box .en {
	font-family: "Roboto", sans-serif;
}

.home-philosophy-card__label {
	margin: 12px 0 0;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.home-philosophy-card__label .en {
	display: block;
	margin-top: 4px;
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
}

/* Message */
.home-message__profile {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 32px;
	align-items: center;
	padding: 24px;
	border: 1px solid #000000;
	margin-bottom: 32px;
}

.home-message__photo img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	background: #ececec;
}

.home-message__title {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
}

.home-message__title .en {
	display: block;
	margin-top: 8px;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.home-message__meta {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
}

.home-message__meta .en {
	display: block;
	margin-top: 4px;
	font-family: "Roboto", sans-serif;
}

/* FAQ */
.home-section__title--faq .home-section__title-en {
	background: transparent;
	font-size: 32px;
	font-weight: 700;
}

.home-faq__categories {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin-bottom: 40px;
}

.home-faq-cat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-height: 72px;
	padding: 12px;
	border: 1px solid #000000;
	background: #ffffff;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.home-faq-cat:hover,
.home-faq-cat.is-active {
	background: #000000;
	color: #ffffff;
}

.home-faq-cat .en {
	font-family: "Roboto", sans-serif;
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
}

.home-faq-group__title {
	margin: 0 0 24px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.home-faq-group__title .en {
	display: block;
	margin-top: 4px;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
}

.home-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.home-faq-item {
	border-bottom: 1px solid #cccccc;
}

.home-faq-item__question {
	display: grid;
	grid-template-columns: 48px 1fr 32px;
	gap: 16px;
	align-items: center;
	padding: 16px 20px;
	background: #000000;
	color: #ffffff;
	list-style: none;
	cursor: pointer;
}

.home-faq-item__question::-webkit-details-marker {
	display: none;
}

.home-faq-item__no {
	font-size: 14px;
	font-weight: 700;
}

.home-faq-item__text .jp,
.home-faq-item__text .en {
	display: block;
	font-size: 13px;
	line-height: 1.5;
}

.home-faq-item__text .en {
	margin-top: 4px;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}

.home-faq-item__toggle::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 auto;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.home-faq-item[open] .home-faq-item__toggle::before {
	transform: rotate(-135deg) translateY(-4px);
}

.home-faq-item__answer {
	padding: 24px 20px;
	background: #f5f5f5;
}

@media screen and (max-width: 991px) {
	.home-drones__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-risks,
	.home-philosophy__grid {
		grid-template-columns: 1fr;
	}

	.home-step {
		grid-template-columns: 1fr;
	}

	.home-message__profile {
		grid-template-columns: 1fr;
	}

	.home-faq__categories {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-bilingual {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 767px) {
	.home-hero {
		min-height: 320px;
	}

	.home-hero__content {
		padding: 60px 16px;
	}

	.home-anchor-nav__list {
		justify-content: center;
		gap: 12px 20px;
		padding: 12px 0;
	}

	.home-anchor-nav__list a {
		gap: 0.35em;
	}

	.home-drones__grid {
		grid-template-columns: 1fr;
	}

	.home-floating-cta {
		width: 48px;
		padding: 16px 6px;
	}

	.home-section {
		padding: 48px 0;
	}

	.home-faq__categories {
		grid-template-columns: 1fr;
	}

	.home-faq-item__question {
		grid-template-columns: 40px 1fr 24px;
		padding: 12px;
	}
}
