@charset "UTF-8";
/* Body */
body {
	font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background-color: #f3f6fb;
	margin: 0;
	font-style: normal;
	font-weight: 400;
	color: #0f172a;
}
html {
	scroll-behavior: smooth;
}
/* Container */
.container {
	width: 100%;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100vh;
	background-color: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 18px 56px rgba(15, 23, 42, 0.08);
}
/* Navigation */
header {
	width: 100%;
	background-color: #ffffff;
	border-bottom: 1px solid rgba(148, 163, 184, 0.28);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 32px;
	box-sizing: border-box;
	position: sticky;
	top: 0;
	z-index: 10;
}
.logo_link {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.logo_mark {
	height: 32px;
	width: auto;
	display: block;
}
.logo {
	color: #0f172a;
	font-weight: 700;
	text-align: left;
	float: none;
	margin: 0;
	letter-spacing: 0.25em;
	font-size: 14px;
	text-transform: uppercase;
}
nav {
	float: none;
	width: auto;
	text-align: right;
	margin-right: 0;
}
header nav ul {
	list-style: none;
	float: right;
	margin: 0;
}
nav ul li {
	float: left;
	color: #0f172a;
	font-size: 13px;
	text-align: left;
	margin-right: 24px;
	letter-spacing: 0.16em;
	font-weight: 500;
	transition: color 0.2s ease, opacity 0.2s ease;
	text-transform: uppercase;
}
ul li a {
	color: inherit;
	text-decoration: none;
}
ul li:hover a {
	color: #24a4e9;
}
.hero_header {
	color: #0f172a;
	text-align: center;
	margin: 0;
	letter-spacing: 0.08em;
	font-size: 16px;
	text-transform: uppercase;
}
/* Hero Section */
.hero {
	background: linear-gradient(145deg, #e4f4ff 0, #ffffff 60%, #f3f6fb 100%);
	padding-top: 120px;
	padding-bottom: 120px;
	color: #0f172a;
}
.hero_inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 24px;
}
.hero_label {
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #24a4e9;
	margin: 0 0 16px;
}
.hero_title {
	font-size: 36px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	margin: 0 0 16px;
	color: #0f172a;
}
.hero_copy {
	font-size: 14px;
	line-height: 1.9;
	color: #4b5563;
	margin: 0 0 32px;
}
.hero_actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.hero_visual {
	margin-top: 32px;
}
.hero_visual img {
	width: 100%;
	max-width: 640px;
	display: block;
	margin: 0 auto;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.25);
}
.btn_primary,
.btn_ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}
.btn_primary {
	background-color: #24a4e9;
	color: #ffffff;
	border: 1px solid #24a4e9;
	box-shadow: 0 16px 38px rgba(36, 164, 233, 0.45);
}
.btn_primary:hover {
	background-color: #34b2f0;
	border-color: #34b2f0;
	transform: translateY(-1px);
}
.btn_ghost {
	background-color: transparent;
	color: #24a4e9;
	border: 1px solid rgba(36, 164, 233, 0.4);
}
.btn_ghost:hover {
	background-color: rgba(36, 164, 233, 0.06);
	border-color: #24a4e9;
}
/* About Section */
.section_title {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 12px;
	color: #0f172a;
}
.section_lead {
	font-size: 14px;
	text-align: center;
	color: #6b7280;
	margin: 0 0 32px;
}
.about_columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 24px;
}
.text_column {
	width: 31%;
	text-align: justify;
	font-weight: 400;
	line-height: 1.9;
	float: none;
	padding-left: 0;
	padding-right: 0;
	color: #4b5563;
	font-size: 13px;
}
.about {
	padding-left: 32px;
	padding-right: 32px;
	padding-top: 56px;
	padding-bottom: 40px;
	display: block;
	background-color: #FFFFFF;
	margin-top: 0px;
}
/* Services Detail */
.services {
	padding-left: 32px;
	padding-right: 32px;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #f9fafb;
}
.services_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 16px;
}
.service_card {
	background-color: #ffffff;
	border-radius: 16px;
	padding: 20px 20px 18px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(148, 163, 184, 0.25);
}
.service_title {
	font-size: 15px;
	font-weight: 600;
	color: #0f172a;
	margin: 0 0 8px;
}
.service_text {
	font-size: 13px;
	color: #4b5563;
	line-height: 1.9;
	margin: 0 0 10px;
}
.service_list {
	margin: 0;
	padding-left: 18px;
	font-size: 12px;
	color: #6b7280;
	line-height: 1.8;
}
/* Stats Gallery */
.stats {
	color: #0f172a;
	margin-bottom: 4px;
	font-size: 28px;
	font-weight: 700;
}
.gallery {
	clear: both;
	display: inline-block;
	width: 100%;
	background-color: #FFFFFF;
	/* [disabled]min-width: 400px;
*/
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: 0;
	margin-bottom: 0px;
}
.thumbnail {
	width: 25%;
	text-align: center;
	float: left;
	margin-top: 32px;
}
.gallery .thumbnail h4 {
	margin-top: 4px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #1d4ed8;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.gallery .thumbnail p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #6b7280;
	font-size: 12px;
}
.stats_unit {
	font-size: 16px;
	margin-left: 2px;
	color: #4b5563;
}
/* Parallax Section */
.banner {
	background-color: #e4f4ff;
	background-image: radial-gradient(circle at top, rgba(36, 164, 233, 0.16), transparent 55%);
	height: 400px;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}
.parallax {
	color: #0f172a;
	text-align: left;
	padding-right: 32px;
	padding-left: 32px;
	padding-top: 120px;
	letter-spacing: 0.08em;
	margin-top: 0px;
	font-size: 18px;
	line-height: 1.7;
	text-transform: none;
}
.parallax_description {
	color: #4b5563;
	text-align: left;
	padding-right: 32px;
	padding-left: 32px;
	width: 50%;
	float: none;
	font-weight: 400;
	line-height: 1.9;
	margin-top: 16px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
/* More info */
footer {
	background-color: #FFFFFF;
	padding-bottom: 48px;
}
.footer_column {
	width: 50%;
	text-align: center;
	padding-top: 40px;
	float: left;
}
footer .footer_column h3 {
	color: #0f172a;
	text-align: left;
	padding: 0 32px;
	font-size: 16px;
	font-weight: 600;
}
footer .footer_column p {
	color: #4b5563;
	background-color: #FFFFFF;
}
.cards {
	width: 100%;
	height: auto;
	max-width: 400px;
	max-height: 200px;
}
footer .footer_column p {
	padding-left: 32px;
	padding-right: 32px;
	text-align: justify;
	line-height: 1.9;
	font-weight: 400;
	margin-left: 0;
	margin-right: 0;
	font-size: 13px;
}
.button {
	width: 240px;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 14px;
	padding-right: 18px;
	padding-bottom: 14px;
	padding-left: 18px;
	text-align: center;
	vertical-align: middle;
	border-radius: 999px;
	text-transform: none;
	font-weight: 600;
	letter-spacing: 0.12em;
	border: 1px solid #24a4e9;
	color: #ffffff;
	background-color: #24a4e9;
	transition: all 0.2s ease;
	font-size: 13px;
	box-shadow: 0 16px 36px rgba(36, 164, 233, 0.35);
}
.button:hover {
	background-color: #34b2f0;
	color: #ffffff;
	cursor: pointer;
}
.copyright {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: transparent;
	color: #9ca3af;
	text-transform: none;
	font-weight: 400;
	letter-spacing: 0.08em;
	border-top-width: 2px;
}
.footer_banner {
	background-color: #e4f4ff;
	padding-top: 60px;
	padding-bottom: 60PX;
	margin-bottom: 0px;
	background-image: radial-gradient(circle at top, rgba(36, 164, 233, 0.16), transparent 55%);
	background-repeat: no-repeat;
}
footer {
	display: inline-block;
}
.hidden {
	display: none;
}

/* Mobile */
@media (max-width: 320px) {
.logo {
	width: 100%;
	text-align: center;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 4px;
	margin-left: 0px;
}
.container header nav {
	margin-top: 4px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	display: block;
}
header nav ul {
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
}
nav ul li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: auto;
	text-align: center;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	background-color: #e4f4ff;
	color: #0f172a;
}
nav ul li a {
	color: #0f172a;
}
.text_column {
	width: 100%;
	text-align: justify;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.services_grid {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 40%;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	font-size: 18px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 90%;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 12px;
	float: none;
	text-align: center;
}
.banner {
	background-color: #2D9AB7;
	background-image: none;
}
.tagline {
	margin-top: 20px;
	line-height: 22px;
}
.hero_header {
	padding-left: 10px;
	padding-right: 10px;
	line-height: 22px;
	text-align: center;
}
}

/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {
.logo {
	width: 100%;
	text-align: center;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
}
.container header nav {
	margin-top: 4px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	overflow: visible;
	display: block;
}
header nav ul {
	padding: 0px;
	float: none;
	margin: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}
nav ul li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: auto;
	text-align: center;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 12px;
	padding-right: 12px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	background-color: #e4f4ff;
	color: #0f172a;
}
nav ul li a {
	color: #0f172a;
}
.text_column {
	width: 100%;
	text-align: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.services_grid {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 40%;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	font-size: 18px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 30%;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: none;
	width: 100%;
	text-align: center;
}
.thumbnail {
	width: 50%;
}
.parallax {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-top: 20%;
}
.parallax_description {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	padding-top: 30px;
}
.banner {
	padding-left: 20px;
	padding-right: 20px;
}
.footer_column {
	width: 100%;
}
}

/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
.text_column {
	width: 100%;
}
.thumbnail {
	width: 50%;
}
.text_column {
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.banner {
	margin-top: 0px;
	padding-top: 0px;
}
}
