/*==============================================================================================================================================================================================
*
*
*レスポンシブ
*
*
==============================================================================================================================================================================================*/
.pc {
	display: inline!important;
}
@media (max-width: 900px) {
	.pc {
		display: none!important;
	}
}

.sp {
	display: none!important;
}
@media (max-width: 900px) {
	.sp {
		display: inline!important;
	}
}

.pci {
	display: block!important;
}
@media (max-width: 900px) {
	.pci {
		display: none !important;
	}
}

.spi {
	display: none!important;
}
@media (max-width: 900px) {
	.spi {
		display: block!important;
	}
}


/* ========================================
   CSS Variables
   ======================================== */
:root {
	--color-primary: #10b981;
	--color-primary-dark: #059669;
	--color-primary-light: #34d399;
	--color-bg-white: #ffffff;
	--color-bg-gray: #f9fafb;
	--color-bg-green: #ecfdf5;
	--color-text-dark: #1f2937;
	--color-text-light: #6b7280;
	--color-border: #e5e7eb;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	color: var(--color-text-dark);
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}

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

/* ========================================
   Header & Navigation
   ======================================== */
.header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 1px 0 0 rgba(16, 185, 129, 0.2);

	backdrop-filter: blur(10px);
}

.nav {
	position: relative;
}

.nav__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
}

.nav__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.nav__logo-img {
	width: auto;
	height: 55px;
}
@media only screen and (max-width: 767px) {
	.nav__logo-img {
		width: auto;
		height: 40px;
	}
}

.nav__menu {
	display: flex;
	align-items: center;

	gap: 2rem;
}

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

.nav__link {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
	text-decoration: none;
	border-radius: 0.5rem;
}

.nav__link::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	content: "";
	transition: width 0.3s ease;
	transform: translateX(-50%);
	background-color: var(--color-primary);
}

.nav__link:hover::after, .nav__link--active::after {
	width: 80%;
}

.nav__link-en {
	letter-spacing: 0.1em;
	color: var(--color-primary);
	font-size: 0.75rem;
	font-weight: 700;
}

.nav__link-ja {
	margin-top: 0.125rem;
	color: var(--color-text-light);
	font-size: 0.7rem;
}

.nav__link:hover {
	transform: translateY(-2px);
}

.nav__link--active .nav__link-en {
	color: var(--color-primary-dark);
}

/* Mobile Menu Toggle */
.nav__toggle {
	z-index: 1001;
	display: none;
	padding: 0.5rem;
	cursor: pointer;
	border: none;
	background: none;
}

@media (max-width: 768px) {
	.nav__toggle {
		display: block;
	}
}

.nav__toggle-icon {
	position: relative;
	display: block;
	width: 24px;
	height: 2px;
	transition: background-color 0.3s ease;
	background-color: var(--color-primary);
}

.nav__toggle-icon::before, .nav__toggle-icon::after {
	position: absolute;
	display: block;
	width: 24px;
	height: 2px;
	content: "";
	transition: transform 0.3s ease;
	background-color: var(--color-primary);
}

.nav__toggle-icon::before {
	top: -8px;
}

.nav__toggle-icon::after {
	bottom: -8px;
}

.nav__toggle--active .nav__toggle-icon {
	background-color: transparent;
}

.nav__toggle--active .nav__toggle-icon::before {
	top: 0;
	transform: rotate(45deg);
}

.nav__toggle--active .nav__toggle-icon::after {
	bottom: 0;
	transform: rotate(-45deg);
}

/* Mobile Navigation */
.nav__mobile {
	position: fixed;
	top: 72px;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow-y: auto;
	height: 100vh;
	padding: 2rem;
	transition: transform 0.3s ease;
	transform: translateX(100%);
	background-color: rgba(255, 255, 255, 0.98);

	backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
	.nav__mobile {
		display: block;
	}
}

.nav__mobile--open {
	transform: translateX(0);
}

.nav__mobile-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 1rem;
	transition: background-color 0.3s ease;
	text-decoration: none;
	border-bottom: 1px solid var(--color-border);
}

.nav__mobile-link:hover {
	background-color: var(--color-bg-green);
}

.nav__mobile-link--active {
	background-color: var(--color-bg-green);
}

.nav__mobile-text {
	display: flex;
	flex-direction: column;
}

.nav__mobile-en {
	letter-spacing: 0.1em;
	color: var(--color-primary);
	font-size: 1rem;
	font-weight: 700;
}

.nav__mobile-ja {
	margin-top: 0.25rem;
	color: var(--color-text-light);
	font-size: 0.875rem;
}

.nav__mobile-arrow {
	color: var(--color-primary);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 600px;
}

.hero__overlay {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.hero__gradient {
	position: absolute;
	width: 100%;
	height: 100%;
}

.hero__gradient--base {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.75) 0%, rgba(5, 150, 105, 0.85) 100%);
}

.hero__gradient--radial {
	background: radial-gradient(circle at 30% 50%, rgba(52, 211, 153, 0.4) 0%, transparent 50%);
}

.hero__gradient--vertical {
	background: linear-gradient(to bottom, rgba(16, 185, 129, 0.1) 0%, rgba(6, 95, 70, 0.3) 100%);
}

.hero__gradient--accent1 {
	background: radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.3) 0%, transparent 40%);
}

.hero__gradient--accent2 {
	background: radial-gradient(circle at 20% 80%, rgba(6, 95, 70, 0.2) 0%, transparent 40%);
}

.hero__video {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 100vw;
	min-width: 177.77vh; /* 16:9 aspect ratio */
	height: 56.25vw; /* 16:9 aspect ratio */
	min-height: 100vh;
	transform: translate(-50%, -50%);
	pointer-events: none;
	border: none;

	object-fit: cover;
}

.hero__content {
	position: relative;
	z-index: 3;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	text-align: center;
}

.hero__text {
	color: white;
}

.hero__title-images {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-bottom: 2rem;

	gap: 1rem;
}

.hero__title-img, .hero__subtitle-img {
	max-width: 100%;
	height: auto;
	animation: fadeInUp 1s ease-out;
}

.hero__title-img {
	max-width: 768px;
	animation-delay: 0.2s;
	opacity: 0;

	animation-fill-mode: forwards;
}
@media only screen and (max-width: 767px) {
	.hero__title-img {
		width: 95%;
		animation-delay: 0.2s;
		opacity: 0;

		animation-fill-mode: forwards;
	}
}

.hero__subtitle-img {
	max-width: 768px;
	animation-delay: 0.4s;
	opacity: 0;

	animation-fill-mode: forwards;
}
@media only screen and (max-width: 767px) {
	.hero__subtitle-img {
		max-width: 95%;
		animation-delay: 0.4s;
		opacity: 0;

		animation-fill-mode: forwards;
	}
}

.hero__description {
	animation: fadeInUp 1s ease-out 0.6s forwards;
	opacity: 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	font-size: 1.125rem;
	line-height: 1.8;
}

@media (max-width: 768px) {
	.hero__description {
		font-size: 0.875rem;
	}
}

/* Geometric Background */
.geometric-bg {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
}

.geometric-bg--light {
	opacity: 0.6;
}

.geometric-bg__svg {
	width: 100%;
	height: 100%;
}

/* Wave Divider */
.wave-divider {
	position: absolute;
	z-index: 10;
	overflow: hidden;
	width: 100%;
}

.wave-divider--bottom {
	bottom: -1px;
	left: 0;
	height: 80px;
}



/* ========================================
   Sections
   ======================================== */
.section {
	position: relative;
	overflow: hidden;
	padding: 5rem 2rem;
}
@media only screen and (max-width: 767px) {
	.section {
		position: relative;
		overflow: hidden;
		padding: 2rem 1rem;
	}
}

.section--white {
	background-color: var(--color-bg-white);
}

.section--gray {
	background-color: var(--color-bg-gray);
}

.section--green {
	background-color: var(--color-bg-green);
}

.container {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	margin: 0 auto;
}

.section__header {
	margin-bottom: 3rem;
	text-align: center;
}

.section__title {
	margin-bottom: -1.5rem;
	letter-spacing: 0.08em;
	color: var(--color-primary-dark);
	font-family: "Bebas Neue", sans-serif;
	font-size: 6rem;
}

@media (max-width: 768px) {
	.section__title {
		font-size: 4rem;
	}
}

.section__subtitle {
	color: var(--color-primary-dark);
	font-size: 1.125rem;
	font-weight: 700;
}

/* ========================================
   Grid Layout
   ======================================== */
.grid {
	display: grid;
	/* align-items: center; */

	gap: 3rem;
}

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

@media (max-width: 768px) {
	.grid--2col {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.grid--reverse {
	direction: rtl;
}

.grid--reverse > * {
	direction: ltr;
}

@media (max-width: 768px) {
	.grid--reverse {
		direction: ltr;
	}
}

.grid__content {
	padding: 1rem 0;
}

.grid__image {
	position: relative;
}

.grid__image--first {
	order: 2;
}

@media (min-width: 769px) {
	.grid__image--first {
		order: 1;
	}
}

.grid__content--second {
	order: 1;
}

@media (min-width: 769px) {
	.grid__content--second {
		order: 2;
	}
}

.image {
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image--h96 {
	height: 384px;

	object-fit: cover;
}
@media only screen and (max-width: 767px) {
	.image--h96 {
		height: auto;

		object-fit: cover;
	}
}

/* ========================================
   Typography
   ======================================== */
.text-content {
	color: var(--color-text-dark);
	font-size: 1rem;
	line-height: 1.8;
}

.text-vision-title {
	margin-bottom: 1.5rem;
	color: var(--color-primary-dark);
	font-size: 1.5rem;
	line-height: 1.4;
}

.mb-8 {
	margin-bottom: 2rem;
}

/* ========================================
   Message Section
   ======================================== */
.message {
	max-width: 1000px;
	margin: 0 auto;
}

.message__box {
	padding: 3rem;
	border-radius: 0.75rem;
	background: linear-gradient(to bottom right, #ecfdf5, #d1fae5);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.message__box {
		padding: 2rem 1.5rem;
	}
}

.message__layout {
	display: flex;
	align-items: flex-start;

	gap: 2rem;
}

@media (max-width: 768px) {
	.message__layout {
		align-items: center;
		flex-direction: column;
	}
}

.message__photo-section {
	display: flex;
	align-items: center;
	flex-direction: column;
	flex-shrink: 0;
}

.message__photo-wrapper {
	position: relative;
	margin-bottom: 1rem;
}

.message__photo-circle {
	overflow: hidden;
	width: 192px;
	height: 192px;
	border: 4px solid white;
	border-radius: 50%;
	background-color: white;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
	.message__photo-circle {
		width: 160px;
		height: 160px;
	}
}

.message__photo {
	width: 100%;
	height: 100%;

	object-fit: cover;
}

.message__photo-decoration {
	position: absolute;
	z-index: -1;
	right: -0.5rem;
	bottom: -0.5rem;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background-color: rgba(16, 185, 129, 0.2);
}

.message__name-section {
	text-align: center;
}

.message__position {
	margin-bottom: 0.25rem;
	text-align: right;
	color: var(--color-primary);
	font-size: 0.875rem;
}

.message__name {
	margin-bottom: 0.25rem;
	color: var(--color-text-dark);
	font-size: 1.125rem;
	font-weight: 700;
}

.message__name-en {
	color: var(--color-text-light);
	font-size: 0.75rem;
}

.message__content {
	flex: 1;
}

.message__text {
	margin-bottom: 1rem;
	color: var(--color-text-dark);
	line-height: 1.8;
}

.message__text:last-child {
	margin-bottom: 0;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	border: none;
	border-radius: 9999px;
	font-size: 1rem;
	font-weight: 700;

	gap: 0.5rem;
}

.btn--primary {
	color: white;
	background-color: var(--color-primary);
}

.btn--primary:hover {
	transform: translateY(-2px);
	background-color: var(--color-primary-dark);
	box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn__icon {
	transition: transform 0.3s ease;
}

.btn:hover .btn__icon {
	transform: translateX(4px);
}

/* ========================================
   Footer
   ======================================== */
.footer {
	padding: 3rem 2rem 1.5rem;
	color: white;
	background-color: var(--color-text-dark);
}

.footer__content {
	display: grid;
	max-width: 1200px;
	margin: 0 auto;
	margin-bottom: 2rem;

	grid-template-columns: 2fr 1fr;
	gap: 3rem;
}

@media (max-width: 768px) {
	.footer__content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.footer__logo {
	width: auto;
	height: 50px;
	margin-bottom: 1rem;
}

.footer__company {
	margin-bottom: 0.5rem;
	font-size: 1.125rem;
	font-weight: 700;
}

.footer__address {
	color: #9ca3af;
	font-size: 0.875rem;
	line-height: 1.6;
}

.footer__nav {
	display: flex;
	flex-direction: column;

	gap: 0.75rem;
}

.footer__link {
	transition: color 0.3s ease;
	text-decoration: none;
	color: #d1d5db;
	font-size: 0.875rem;
}

.footer__link:hover {
	color: var(--color-primary-light);
}

.footer__bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 1.5rem;
	text-align: center;
	border-top: 1px solid #374151;
}

.footer__copyright {
	color: #9ca3af;
	font-size: 0.75rem;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
	position: relative;
	overflow: hidden;
	margin-top: 72px;
	padding: 4rem 2rem;
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
}
@media only screen and (max-width: 767px) {
	.page-header {
		position: relative;
		overflow: hidden;
		margin-top: 72px;
		padding: 1.5rem 1rem;
		background: linear-gradient(135deg, #059669 0%, #047857 100%);
	}
}

.page-header__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 24rem;
	height: 24rem;
	animation: float 15s ease-in-out infinite;
	background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);

	filter: blur(60px);
}

.page-header__content {
	position: relative;
	z-index: 10;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.page-header__title {
	margin-bottom: -0.5rem;
	letter-spacing: 0.08em;
	color: white;
	font-family: "Bebas Neue", sans-serif;
	font-size: 4rem;
}

@media (max-width: 768px) {
	.page-header__title {
		margin-bottom: -0.8rem;
		font-size: 2.5rem;
	}
}

.page-header__subtitle {
	color: #d1fae5;
	font-size: 1.125rem;
}

/* ========================================
   Hero Image Section
   ======================================== */
.hero-image {
	overflow: hidden;
	width: 100%;
	height: 320px !important;
	background-color: white;
}
@media only screen and (max-width: 767px) {
	.hero-image {
		overflow: hidden;
		width: 100%;
		height: 200px !important;
		background-color: white;
	}
}

.hero-image__img {
	width: 100%;
	height: 100%;

	object-fit: cover;
}

/* ========================================
   Services Grid
   ======================================== */
.services-grid {
	display: grid;

	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

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

.service-card {
	overflow: hidden;
	/* transition: transform 0.3s ease, box-shadow 0.3s ease; */
	border-radius: 0.5rem;
	background-color: rgb(245, 245, 245);
	/* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
}



.service-card__image {
	overflow: hidden;
	height: 224px;
}

.service-card__img {
	width: 100%;
	height: 100%;

	object-fit: cover;
}

.service-card__content {
	padding: 1.5rem;
}

.service-card__title {
	margin-bottom: 1rem;
	color: var(--color-primary-dark);
	font-size: 1.5rem;
	font-weight: 700;
}

.service-card__description {
	display: flex;
	flex-direction: column;

	gap: 0.5rem;
}

.service-card__description p {
	color: var(--color-text-dark);
	font-size: 0.875rem;
	line-height: 1.6;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
	position: relative;
	overflow: hidden;
	padding: 4rem 2rem;
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.geometric-bg--dark {
	opacity: 0.3;
}

.cta-content {
	position: relative;
	z-index: 10;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.cta-content__title {
	margin-bottom: 1rem;
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
}

@media (max-width: 768px) {
	.cta-content__title {
		font-size: 2rem;
	}
}

.cta-content__text {
	margin-bottom: 2rem;
	color: white;
	font-size: 1.125rem;
}

.btn--secondary {
	color: var(--color-primary);
	background-color: white;
}

.btn--secondary:hover {
	transform: translateY(-2px);
	background-color: #ecfdf5;
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* ========================================
   Company Info
   ======================================== */
.company-info {
	max-width: 800px;
	margin: 0 auto;
}

.company-table {
	overflow: hidden;
	width: 100%;
	border-collapse: collapse;
	border-radius: 0.5rem;
	background-color: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.company-table__row {
	border-bottom: 1px solid var(--color-border);
}

.company-table__row:last-child {
	border-bottom: none;
}

.company-table__label {
	width: 30%;
	padding: 1.5rem;
	vertical-align: top;
	color: white;
	background-color: #70a999;
	font-weight: 700;
}

@media (max-width: 768px) {
	.company-table__label {
		display: block;
		width: 100%;
		padding: 1rem 1.5rem 0.5rem;
	}
}

.company-table__value {
	padding: 1.5rem;
	color: var(--color-text-dark);
	line-height: 1.8;
}

@media (max-width: 768px) {
	.company-table__value {
		display: block;
		padding: 0.5rem 1.5rem 1rem;
	}
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
	max-width: 800px;
	margin: 0 auto;
	padding: 2.5rem;
	border-radius: 0.75rem;
	background-color: white;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.contact-form {
		padding: 1.5rem;
	}
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--color-text-dark);
	font-weight: 700;
}

.form-label--required::after {
	content: " *";
	color: #ef4444;
}

.form-input, .form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	border: 2px solid var(--color-border);
	border-radius: 0.5rem;
	font-family: inherit;
	font-size: 1rem;
}

.form-input:focus, .form-textarea:focus {
	border-color: var(--color-primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.form-submit {
	justify-content: center;
	width: 100%;
	margin-top: 2rem;
}

.form-note {
	margin-top: 1.5rem;
	padding: 1rem;
	color: var(--color-text-dark);
	border-left: 4px solid var(--color-primary);
	border-radius: 0.25rem;
	background-color: #f0fdf4;
	font-size: 0.875rem;
	line-height: 1.6;
}

/* ========================================
   Access Cards
   ======================================== */
.access-card {
	display: flex;
	align-items: flex-start;
	padding: 1.5rem;
	border-radius: 0.5rem;
	background: #f7f7f7;

	gap: 1rem;
	/* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
}

.access-card__icon {
	flex-shrink: 0;
	margin-top: 0.2rem;
	margin-bottom: 1rem;
	color: var(--color-primary);
}

.access-card__icon svg {
	stroke: currentColor;
}

.access-card__title {
	margin-bottom: 0.5rem;
	color: var(--color-text-dark);
	font-size: 1.125rem;
	font-weight: 700;
}

.access-card__text {
	color: var(--color-text-dark);
	line-height: 1.8;
}
.access-card__content {
	display: flex;
	flex-direction: column;
}

/* ========================================
   Contact Info Cards
   ======================================== */
.contact-info-card {
	display: flex;
	align-items: flex-start;
	padding: 1.5rem;
	border-radius: 0.5rem;
	background-color: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

	gap: 1rem;
}

.contact-info-card__icon {
	flex-shrink: 0;
	margin-top: 0.25rem;
	color: var(--color-primary);
}

.contact-info-card__icon svg {
	stroke: currentColor;
}

.contact-info-card__title {
	margin-bottom: 0.5rem;
	color: var(--color-text-dark);
	font-size: 1.125rem;
	font-weight: 700;
}

.contact-info-card__text {
	color: var(--color-text-dark);
	line-height: 1.8;
}

.contact-info-box {
	padding: 1.5rem;
	border-radius: 0.5rem;
	background: linear-gradient(to bottom right, #ecfdf5, #d1fae5);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* ========================================
   Map Placeholder
   ======================================== */
.map-placeholder {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 600px;
	/* padding: 3rem; */
	text-align: center;
	border-radius: 0.5rem;
	background: linear-gradient(to bottom right, #d1fae5, #a7f3d0);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

	/* aspect-ratio: 16 / 9; */
}
@media (max-width: 768px) {
	.map-placeholder {
		height: 300px;
	}
}
.map-placeholder iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}


/* スクロールアニメーション */
.scroll-indicator {
	position: absolute;
	z-index: 5;
	bottom: 24px;
	left: 50%;
	overflow: hidden;
	width: 2px;
	height: 70px;
	transform: translateX(-50%);
	pointer-events: none;
	background: rgba(255,255,255,0.3);
}
.scroll-indicator span {
	display: block;
	width: 100%;
	height: 100%;
	animation: scrollLine 1.8s infinite;
	background: #fff;
}

@keyframes scrollLine {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

.green {
	color: #047857;
	font-size: 1.2rem;
	font-weight: 700;
}


/* 下から浮き出るアニメ */
.js-reveal {
	transition: opacity 0.8s ease, transform 0.8s ease;
	transform: translateY(40px);
	opacity: 0;
}

.js-reveal.is-visible {
	transform: translateY(0);
	opacity: 1;
}


/* FV：横から長めに、ゆっくり流れて定着 */
.hero__title-img, .hero__subtitle-img, .hero__description {
	transform: translateX(-72px);
	animation: windSoftLongIn 1.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
	opacity: 0;

	filter: blur(2px);
}

.hero__subtitle-img {
	animation-delay: 0.2s;
}

.hero__description {
	animation-delay: 0.4s;
}

@keyframes windSoftLongIn {
	from {
		transform: translateX(-72px);
		opacity: 0;

		filter: blur(2px);
	}
	to {
		transform: translateX(0);
		opacity: 1;

		filter: blur(0);
	}
}

.contact_h2 {
	margin-bottom: 2rem;
	color: #1f2937;
	font-size: 1.875rem;
	font-weight: 700;
}

@media only screen and (max-width: 767px) {
	.contact_h2 {
		margin-bottom: 1.5rem;
		color: #1f2937;
		font-size: 1.3rem;
		font-weight: 700;
	}
}