@charset "UTF-8";

/* ========================================
   CSS Variables (matching original site)
======================================== */
:root {
	--color-white: #fff;
	--color-off-white: #FCFDFD;
	--color-pale-beige: #EEF3F5;
	--color-light-beige: #F2F6F8;
	--color-green: #2A8C9F;
	--color-beige: #D3E2E6;
	--color-text-gray: #6B8A92;
	--color-light-gray: #BCCCD0;
	--color-deep-green: #0A2A33;
	--color-orange: #5BB5C6;
	--border-dashed: 1px dashed #BCCCD0;
	--font-gothic: "Zen Kaku Gothic New", 'Hiragino Kaku Gothic Pro', 'Yu Gothic Medium', YuGothic, 'Meiryo', sans-serif;
	--font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", serif;
	--font-roboto: "Roboto Condensed", sans-serif;
}

/* ========================================
   Reset / Base
======================================== */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--color-pale-beige);
	color: var(--color-deep-green);
	font-family: var(--font-gothic);
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.04em;
	font-weight: 400;
	overflow-wrap: break-word;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "palt";
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s, opacity 0.3s;
}

ul, ol {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font: inherit;
	color: inherit;
}

table {
	border-collapse: collapse;
}

a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
	color: inherit;
	pointer-events: none;
}

/* ========================================
   Utility Classes
======================================== */
.u-inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.u-ttl {
	text-align: center;
}

.u-ttl_icn {
	display: block;
	line-height: 1;
	margin-bottom: 22px;
}

.u-ttl_icn > svg {
	display: block;
	margin: 0 auto;
}

.u-ttl_main {
	display: block;
	line-height: 1.4;
	font-size: 28px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-green);
	letter-spacing: 0.08em;
}

.u-ttl_en {
	display: block;
	line-height: 1.4;
	font-family: var(--font-roboto);
	font-weight: 400;
	font-size: 12px;
	margin-top: 8px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-text-gray);
}

.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	border-radius: 10px;
	padding: 5px 10px;
	line-height: 1.2;
	background-color: var(--color-green);
	border: 1px solid var(--color-green);
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
	position: relative;
	z-index: 1;
	color: var(--color-white);
	min-height: 60px;
	font-size: 14px;
	font-weight: 500;
	overflow: hidden;
}

.u-btn-icnRightTip {
	max-width: 220px;
	margin: 0 auto;
}

.u-btn-icnRightTip > .arrow-right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 13px;
}

.u-spNone {}

.u-spsInline {
	display: none;
}

/* Arrow icon */
.arrow-right {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: 8px;
	vertical-align: middle;
}

/* Placeholder Images */
.placeholder-img {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e8e8d8 0%, #d4d4c4 50%, #c8c8b8 100%);
	color: var(--color-text-gray);
	font-family: var(--font-roboto);
	border-radius: 10px;
	overflow: hidden;
}

.placeholder-img span {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.placeholder-img small {
	font-size: 12px;
	margin-top: 8px;
	font-family: var(--font-gothic);
}

.placeholder-img--hero {
	width: 100%;
	height: 100%;
	min-height: 500px;
	border-radius: 0;
	background: linear-gradient(135deg, #c8e0ec 0%, #7abfd4 50%, #4aa8c2 100%);
}

.placeholder-img--feature {
	width: 100%;
	padding-bottom: 120%;
	position: relative;
}

.placeholder-img--feature span,
.placeholder-img--feature small {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.placeholder-img--feature small {
	top: 58%;
}

.placeholder-img--gallery {
	width: 100%;
	height: 250px;
	border-radius: 10px;
}

/* ========================================
   Page Load Animation
======================================== */
body.is-loading {
	overflow: hidden;
}

/* Overlay that covers the page initially */
body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-pale-beige);
	z-index: 9999;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	pointer-events: none;
}

body.is-loaded::after {
	opacity: 0;
	visibility: hidden;
}

/* Sub page visual - slide up reveal */
.p-sub .subPage_visual {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.p-sub.is-loaded .subPage_visual {
	opacity: 1;
	transform: translateY(0);
}

/* Sub page title - fade in */
.p-sub .subPage_title {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}

.p-sub.is-loaded .subPage_title {
	opacity: 1;
	transform: translateY(0);
}

/* Sub page english title - fade in with delay */
.p-sub .subPage_title_en {
	opacity: 0;
	transition: opacity 0.7s ease 0.9s;
}

.p-sub.is-loaded .subPage_title_en {
	opacity: 1;
}

/* Sub page breadcrumb */
.p-sub .subPage_breadcrumb {
	opacity: 0;
	transition: opacity 0.5s ease 1s;
}

.p-sub.is-loaded .subPage_breadcrumb {
	opacity: 1;
}

/* Sub page sections - staggered fade in */
.p-sub .subPage_section {
	opacity: 0;
	transform: translateY(25px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.p-sub.is-loaded .subPage_section:nth-of-type(1) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.8s;
}

.p-sub.is-loaded .subPage_section:nth-of-type(2) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1s;
}

.p-sub.is-loaded .subPage_section:nth-of-type(3) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1.2s;
}

/* Home page - main visual fade */
.p-home .topMain {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.p-home.is-loaded .topMain {
	opacity: 1;
	transform: translateY(0);
}

/* Header fade in */
.gHeaderWrap {
	opacity: 0;
	transition: opacity 0.6s ease 0.2s;
}

.is-loaded .gHeaderWrap {
	opacity: 1;
}

/* ========================================
   Animations
======================================== */
@keyframes scrollGallery {
	0% { transform: translateX(0%); }
	100% { transform: translateX(-50%); }
}

@keyframes moveCloud {
	0% { background-position: 0 0; }
	100% { background-position: 1440px 0; }
}

@keyframes fuwafuwa {
	0% { transform: translateY(0%); }
	50% { transform: translateY(10%); }
	100% { transform: translateY(0%); }
}

[data-animation] {
	transition-duration: 1s;
	transition-delay: 0.2s;
	transition-property: opacity, transform;
	opacity: 0;
	transform: translateY(20px);
}

[data-animation="after"] {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   Header
======================================== */
.gHeaderWrap {
	height: 90px;
}

.gHeader {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: var(--color-pale-beige);
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.gHeader_inner {
	max-width: 1373px;
}

.gHeader_cols {
	display: flex;
	align-items: center;
}

.gHeader_col-title {
	width: 280px;
}

.gHeader_title {
	height: 90px;
	display: flex;
	align-items: center;
}

.gHeader_title > a {
	text-decoration: none;
	color: var(--color-green);
	display: flex;
	height: 100%;
	align-items: center;
}

.gHeader_title_text {
	font-family: var(--font-gothic);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--color-green);
	white-space: nowrap;
}

.gHeader_col-menu {
	width: calc(100% - 310px);
	margin-left: auto;
}

/* Hamburger Button - Hidden on Desktop */
.gMenuBtn {
	display: none;
}

.gMenuBtn_barWrap {
	display: block;
	width: 20px;
	margin: 0 auto;
}

.gMenuBtn_bar {
	display: block;
	height: 2px;
	background-color: currentColor;
	transition: transform 0.3s;
}

.gMenuBtn_bar-no2 {
	margin: 5px 0;
}

/* Navigation */
.gNav {
	max-width: 950px;
	margin-left: auto;
}

.gNav_inner {
	display: flex;
	align-items: center;
}

.gNav_list {
	display: flex;
	width: calc(100% - 350px);
}

.gNav_list > li {
	width: 20%;
}

.gNav_list > li > a {
	display: flex;
	flex-direction: column;
	height: 90px;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	position: relative;
	transition: color 0.3s;
}

.gNav_list > li > a::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	height: 30px;
	width: 1px;
	background-color: var(--color-light-gray);
	transform: translateY(-50%);
}

.gNav_list > li.-last > a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	height: 30px;
	width: 1px;
	background-color: var(--color-light-gray);
	transform: translateY(-50%);
}

.gNav_list_icon {
	display: block;
	max-width: 25px;
	margin-bottom: 4px;
	transition: transform 0.3s;
}

.gNav_list_icon > svg {
	display: block;
	width: 25px;
	height: 25px;
}

.gNav_list_text {
	display: block;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.gNav_btnList {
	width: 310px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
	color: var(--color-white);
	margin-left: 40px;
	align-self: center;
}

.gNav_btnList_btn {
	min-height: 50px;
	font-weight: bold;
	height: 100%;
}

.gNav_btnList_btn-tel {
	background-color: var(--color-deep-green);
	font-size: 16px;
	font-family: var(--font-roboto);
	font-weight: 600;
	border-color: var(--color-deep-green);
	white-space: nowrap;
}

/* ========================================
   Main Visual / Top Section
======================================== */
.gBody {
	position: relative;
	letter-spacing: 0.05em;
}

.gBody-home {
	padding-top: 90px;
}

.topMain {
	margin-bottom: 60px;
}

.topMain_inner {}

.topMain_cols {
	display: flex;
	gap: 0;
}

.topMain_col-slide {
	flex: 1;
	min-width: 0;
}

.topMain_col-nav {
	width: 340px;
	flex-shrink: 0;
	padding: 30px 25px;
	background-color: var(--color-off-white);
	border-radius: 0 0 10px 0;
}

/* Top Visual */
.topVis {
	position: relative;
}

.topVis_areaText {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
	background: linear-gradient(135deg, rgba(10,42,51,0.45) 0%, rgba(10,42,51,0.15) 100%);
	padding: 30px 40px;
	border-radius: 12px;
	backdrop-filter: blur(2px);
}

.topVis_title {
	font-size: 40px;
	font-weight: 600;
	font-family: var(--font-serif);
	line-height: 1.6;
	color: var(--color-white);
	text-shadow: 0 2px 30px rgba(0,0,0,0.25);
	letter-spacing: 0.12em;
}

.topVis_catch {
	font-family: var(--font-roboto);
	font-size: 14px;
	font-weight: 400;
	color: rgba(255,255,255,0.85);
	margin-top: 14px;
	text-shadow: 0 1px 10px rgba(0,0,0,0.2);
	letter-spacing: 0.15em;
}

.topVis_slideWrap {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 600px;
}

.topVis_slide {
	position: relative;
	width: 100%;
	height: 100%;
}

.topVis_slide_item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease;
	z-index: 0;
}

.topVis_slide_item.is-active {
	opacity: 1;
	z-index: 1;
}

.topVis_image {
	width: 100%;
	height: 100%;
	position: relative;
}

.topVis_image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Ken Burns zoom effect on active slide */
.topVis_slide_item.is-active .topVis_image > img {
	animation: kenBurns 7s ease forwards;
}

@keyframes kenBurns {
	0% { transform: scale(1); }
	100% { transform: scale(1.08); }
}

/* Sidebar Nav */
.topMain_logo {
	text-align: center;
	margin-bottom: 25px;
}

.topMain_logo > a {
	display: block;
}

.topMain_logo_text {
	display: block;
	font-family: var(--font-roboto);
	font-size: 32px;
	font-weight: 700;
	color: var(--color-green);
	letter-spacing: 0.1em;
	line-height: 1.2;
}

.topMain_logo_sub {
	display: block;
	font-size: 11px;
	color: var(--color-text-gray);
	margin-top: 4px;
}

.topMain_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin-bottom: 25px;
}

.topMain_list > li {
	font-size: 12px;
	background-color: var(--color-beige);
	border-radius: 5px;
	padding: 2px 10px;
	font-weight: 500;
}

.topMain_menuList {
	margin-bottom: 20px;
}

.topMain_menuList > li {
	margin-bottom: 6px;
}

.topMain_menuList > li > a {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	background-color: var(--color-pale-beige);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-green);
	transition: background-color 0.3s;
}

.topMain_menuList > li > a:hover {
	background-color: var(--color-beige);
}

.topMain_btnList {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 20px;
}

.topMain_btnList_btn {
	min-height: 46px;
	font-size: 13px;
	font-weight: bold;
}

.topMain_btnList_btn-tel {
	background-color: var(--color-deep-green);
	border-color: var(--color-deep-green);
	font-family: var(--font-roboto);
	font-weight: 600;
}

/* Table */
.topMain_tableWrap {
	background-color: var(--color-pale-beige);
	border-radius: 10px;
	padding: 15px;
}

.topMain_table {
	width: 100%;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.topMain_table thead th {
	font-weight: 500;
	padding: 6px 2px;
	border-bottom: 1px solid var(--color-light-gray);
	color: var(--color-text-gray);
}

.topMain_table tbody th {
	font-weight: normal;
	padding: 8px 2px;
	font-size: 11px;
	white-space: nowrap;
}

.topMain_table tbody td {
	padding: 8px 2px;
}

.topMain_table_icon {
	display: inline-block;
	font-size: 14px;
}

.topMain_table_icon-ok {
	color: var(--color-green);
}

.topMain_table_icon-ng {
	color: var(--color-light-gray);
}

.topMain_table_dot {
	letter-spacing: -0.2em;
	margin-left: -0.2em;
}

.topMain_cauList {
	margin-top: 8px;
}

.topMain_cauList > li {
	font-size: 11px;
	color: var(--color-text-gray);
	line-height: 1.6;
}

/* Sidebar Info Items */
.topMain_info_item {
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 10px;
	color: var(--color-deep-green);
}

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

.topMain_info_label {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	color: var(--color-green);
	background-color: var(--color-beige);
	border-radius: 4px;
	padding: 1px 8px;
	margin-right: 8px;
	vertical-align: middle;
}

/* ========================================
   News Section
======================================== */
.topNews {
	padding: 80px 0;
}

.topNews_cols {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.topNews_col-ttl {
	width: 200px;
	flex-shrink: 0;
}

.topNews_col-txt {
	flex: 1;
}

.newsList > li {
	border-bottom: var(--border-dashed);
}

.newsList > li > a {
	display: block;
	padding: 20px 0;
	transition: opacity 0.3s;
}

.newsList > li > a:hover {
	opacity: 0.7;
}

.newsItem {
	display: flex;
	align-items: center;
	gap: 20px;
}

.newsItem_update {
	font-family: var(--font-roboto);
	color: rgba(0, 42, 29, 0.50);
	min-width: 103px;
	white-space: nowrap;
	font-size: 14px;
}

.newsItem_cat {
	font-size: 12px;
	border: 1px solid var(--color-green);
	border-radius: 5px;
	background-color: var(--color-white);
	font-weight: 500;
	padding: 3px 10px;
	min-width: 80px;
	text-align: center;
	color: var(--color-green);
	white-space: nowrap;
}

.newsItem_text {
	flex: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.topNews_link {
	margin-top: 20px;
	text-align: right;
}

.topNews_link > a {
	font-weight: 500;
	font-size: 14px;
	transition: color 0.3s;
}

.topNews_link > a:hover {
	color: var(--color-green);
}

/* ========================================
   About Section
======================================== */
.topAbout {
	position: relative;
	padding: 120px 0 100px;
	overflow: hidden;
}

.topAbout_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, var(--color-pale-beige) 0%, #daeef2 30%, #daeef2 70%, var(--color-pale-beige) 100%);
	z-index: -1;
}

.cloud {
	position: absolute;
	width: 100%;
	height: 120px;
	background-repeat: repeat-x;
	background-size: 1440px auto;
	opacity: 0.15;
	z-index: 0;
}

.cloud-about01 {
	top: 10%;
	background-image: url("data:image/svg+xml,%3Csvg width='1440' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='200' cy='60' rx='180' ry='50' fill='%232A8C9F' opacity='0.3'/%3E%3Cellipse cx='700' cy='70' rx='150' ry='40' fill='%232A8C9F' opacity='0.2'/%3E%3Cellipse cx='1200' cy='55' rx='200' ry='45' fill='%232A8C9F' opacity='0.25'/%3E%3C/svg%3E");
	animation: moveCloud 60s linear infinite;
}

.cloud-about02 {
	top: 40%;
	background-image: url("data:image/svg+xml,%3Csvg width='1440' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='400' cy='60' rx='160' ry='45' fill='%232A8C9F' opacity='0.2'/%3E%3Cellipse cx='1000' cy='65' rx='180' ry='50' fill='%232A8C9F' opacity='0.15'/%3E%3C/svg%3E");
	animation: moveCloud 80s linear infinite;
}

.topAbout_inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
}

.topAbout_catch {
	font-family: var(--font-roboto);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.25em;
	color: var(--color-text-gray);
	margin-bottom: 16px;
	text-transform: uppercase;
}

.topAbout_title {
	font-size: 32px;
	font-weight: 600;
	font-family: var(--font-serif);
	line-height: 1.8;
	color: var(--color-deep-green);
	margin-bottom: 45px;
	letter-spacing: 0.1em;
}

.topAbout_text {
	margin-bottom: 28px;
	line-height: 2.2;
	font-size: 15px;
	letter-spacing: 0.05em;
	color: rgba(10, 42, 51, 0.8);
}

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

.topAbout_message {
	margin-top: 10px;
}

.topAbout_message_label {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-green);
	border: 1px solid var(--color-green);
	border-radius: 5px;
	padding: 4px 16px;
	margin-bottom: 30px;
	letter-spacing: 0.1em;
}

.topAbout_name {
	margin-top: 40px;
	font-size: 18px;
	font-weight: bold;
	color: var(--color-deep-green);
	letter-spacing: 0.08em;
}

/* About - Company Table */
.topAbout_companyBox {
	margin-top: 50px;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 15px;
	padding: 40px;
	backdrop-filter: blur(5px);
	text-align: left;
}

.topAbout_companyTable {
	width: 100%;
	font-size: 15px;
}

.topAbout_companyTable th {
	font-weight: 500;
	text-align: left;
	vertical-align: top;
	padding: 14px 20px 14px 0;
	width: 130px;
	white-space: nowrap;
	color: var(--color-green);
	border-bottom: 1px solid var(--color-beige);
}

.topAbout_companyTable td {
	padding: 14px 0;
	vertical-align: top;
	border-bottom: 1px solid var(--color-beige);
	line-height: 1.8;
}

.topAbout_companyTable tr:last-child th,
.topAbout_companyTable tr:last-child td {
	border-bottom: none;
}

.topAbout_companyTable td a {
	color: var(--color-green);
	font-family: var(--font-roboto);
	font-weight: 600;
}

/* ========================================
   Philosophy Section
======================================== */
.topPhilosophy {
	padding: 0 0 100px;
}

.topPhilosophy_contents {
	position: relative;
	background-color: var(--color-off-white);
	border-radius: 30px;
	margin: 0 20px;
	padding: 80px 0;
	border: 1px solid var(--color-beige);
}

.topPhilosophy_inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 30px;
}

.topPhilosophy_title {
	margin-bottom: 50px;
}

.topPhilosophy_body {}

.topPhilosophy_catch {
	text-align: center;
	font-size: 28px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-green);
	letter-spacing: 0.1em;
	margin-bottom: 50px;
	line-height: 1.7;
}

.topPhilosophy_items {}

.topPhilosophy_item {
	background-color: var(--color-pale-beige);
	border-radius: 10px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 16px;
	position: relative;
}

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

.topPhilosophy_number {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: var(--color-orange);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 22px;
	font-weight: bold;
	font-family: var(--font-roboto);
	line-height: 1;
}

.topPhilosophy_message {
	font-size: 17px;
	font-weight: 500;
	font-family: var(--font-serif);
	line-height: 1.9;
	letter-spacing: 0.06em;
}

/* ========================================
   Greeting Section
======================================== */
.topGreeting {
	padding: 100px 0;
}

.topGreeting_title {
	margin-bottom: 50px;
}

.topGreeting_content {}

.topGreeting_content-noimg {
	max-width: 750px;
	margin: 0 auto;
}

.topGreeting_cols {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.topGreeting_col-img {
	width: 320px;
	flex-shrink: 0;
}

.placeholder-img--greeting {
	width: 100%;
	height: 400px;
	border-radius: 10px;
	background: linear-gradient(135deg, #d0e4ec 0%, #a0c8d8 100%);
}

.topGreeting_col-txt {
	flex: 1;
	padding-top: 10px;
}

.topGreeting_text {
	margin-bottom: 28px;
	line-height: 2.2;
	font-size: 15px;
	letter-spacing: 0.04em;
	color: rgba(10, 42, 51, 0.8);
}

.topGreeting_text:last-of-type {
	margin-bottom: 0;
}

.topGreeting_name {
	margin-top: 40px;
	font-size: 14px;
	color: var(--color-text-gray);
	letter-spacing: 0.05em;
}

.topGreeting_name_main {
	display: block;
	font-size: 24px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-deep-green);
	margin-top: 6px;
	letter-spacing: 0.15em;
}

/* ========================================
   Feature Section (kept for legacy CSS, unused)
======================================== */
.topFeatureBg {
	position: relative;
	padding: 0 0 100px;
}

.topFeatureBg_contents {
	position: relative;
	background-color: var(--color-off-white);
	border-radius: 30px;
	margin: 0 20px;
	padding: 80px 0;
	border: 1px solid var(--color-beige);
}

.topFeature_inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 30px;
}

.topFeature_title {
	margin-bottom: 60px;
}

.topFeature_cells {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 50px;
}

.topFeature_cell {}

.topFeature_image {
	margin-bottom: 24px;
	border-radius: 10px;
	overflow: hidden;
}

.topFeature_headline {
	font-size: 19px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-deep-green);
	margin-bottom: 18px;
	text-align: center;
	letter-spacing: 0.06em;
}

.topFeature_text {
	font-size: 14px;
	line-height: 2.1;
	color: rgba(10, 42, 51, 0.75);
	letter-spacing: 0.03em;
}

.topFeature_link {
	text-align: center;
}

/* ========================================
   Service (Medical equivalent) Section
======================================== */
.topMedical {
	padding: 100px 0;
}

.topMedical_areaTxt {
	background-color: var(--color-off-white);
	border-radius: 30px;
	padding: 80px 50px;
	border: 1px solid var(--color-beige);
}

.topMedical_areaTxt_inner {
	max-width: 1100px;
	margin: 0 auto;
}

.topMedical_cols {
	display: flex;
	gap: 60px;
	margin-bottom: 50px;
}

.topMedical_col-txt {
	width: 40%;
}

.topMedical_title {
	margin-bottom: 30px;
}

.topMedical_text {
	line-height: 2.2;
	font-size: 15px;
	letter-spacing: 0.04em;
	color: rgba(10, 42, 51, 0.8);
}

.topMedical_col-list {
	flex: 1;
}

.topMedical_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.topMedical_list > li > a {
	display: block;
	transition: transform 0.3s, box-shadow 0.3s;
}

.topMedical_list > li > a:hover {
	transform: translateY(-4px);
}

.topMedicalItem {
	background-color: var(--color-pale-beige);
	border-radius: 15px;
	padding: 30px 15px 20px;
	text-align: center;
	transition: background-color 0.3s;
}

.topMedicalItem_areaIcon {
	margin-bottom: 15px;
}

.topMedicalItem_icn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	background-color: var(--color-white);
	border-radius: 50%;
	margin: 0 auto;
}

.topMedicalItem_icn > svg {
	width: 50px;
	height: 50px;
}

.topMedicalItem_text {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-deep-green);
}

.topMedicalItem_text .arrow-right {
	width: 6px;
	height: 6px;
	margin-left: 6px;
	color: var(--color-green);
}

.topMedical_link {
	text-align: center;
}

/* ========================================
   Access Section
======================================== */
.topAcs {
	padding: 80px 0 100px;
}

.topAcs_cols {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 50px;
}

.topAcs_col-ttl {
	width: 200px;
	flex-shrink: 0;
}

.topAcs_col-txt {
	flex: 1;
}

.topAcs_add {
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: 0.06em;
}

.topAcs_mapLink > a {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-green);
	transition: opacity 0.3s;
}

.topAcs_mapLink > a:hover {
	opacity: 0.7;
}

.topAcsBox {
	background-color: var(--color-off-white);
	border-radius: 20px;
	padding: 50px 40px;
	border: 1px solid var(--color-beige);
	margin-bottom: 40px;
}

.topAcsBox_cols {
	display: flex;
	gap: 50px;
}

.topAcsBox_col {
	flex: 1;
}

.topAcsBox_miniCols {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.topAcsBox_miniCol-icn {
	flex-shrink: 0;
}

.topAcsBox_icn > svg {
	display: block;
}

.topAcsBox_title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 12px;
	color: var(--color-deep-green);
}

.topAcsBox_text {
	font-size: 15px;
	line-height: 1.8;
}

.topAcsBox_list > li {
	position: relative;
	padding-left: 17px;
	font-size: 15px;
	line-height: 1.8;
}

.topAcsBox_list > li::before {
	content: "";
	display: block;
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: var(--color-green);
	border-radius: 50%;
	left: 0;
	top: 0.9em;
	transform: translateY(-50%);
}

.topAcs_areaLink {
	text-align: center;
}

.topAcs_link {
	display: inline-block;
}

/* ========================================
   Gallery Section
======================================== */
.topGallery {
	padding: 60px 0;
	overflow: hidden;
}

.topGallery_slide_container {
	display: flex;
	gap: 20px;
	animation: scrollGallery 30s linear infinite;
	width: max-content;
}

.topGallery_slide_item {
	width: 300px;
	flex-shrink: 0;
}

/* ========================================
   Company Info Section
======================================== */
.topCompany {
	padding: 100px 0 120px;
}

.topCompany_title {
	margin-bottom: 50px;
}

.topCompany_content {
	background-color: var(--color-off-white);
	border-radius: 20px;
	padding: 60px 50px;
	border: 1px solid var(--color-beige);
}

.topCompany_cols {
	display: flex;
	gap: 50px;
}

.topCompany_col-table {
	flex: 1;
}

.topCompany_col-map {
	width: 45%;
	max-width: 500px;
}

.topCompany_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 15px;
}

.topCompany_table tbody tr {
	border-bottom: 1px solid var(--color-light-gray);
}

.topCompany_table tbody tr:last-child {
	border-bottom: none;
}

.topCompany_table th {
	font-weight: 500;
	text-align: left;
	vertical-align: top;
	padding: 20px 20px 20px 0;
	width: 140px;
	white-space: nowrap;
	color: var(--color-green);
	border-bottom: 1px solid var(--color-beige);
}

.topCompany_table td {
	padding: 20px 0;
	vertical-align: top;
	border-bottom: 1px solid var(--color-beige);
	line-height: 1.8;
}

.topCompany_table tbody tr:last-child th,
.topCompany_table tbody tr:last-child td {
	border-bottom: none;
}

.topCompany_map {
	position: relative;
	padding-bottom: 75%;
	border-radius: 10px;
	overflow: hidden;
	background-color: #f5f3f3;
}

.topCompany_map > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.topCompany_mapLink {
	margin-top: 15px;
	text-align: right;
}

.topCompany_mapLink > a {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-green);
	transition: opacity 0.3s;
}

.topCompany_mapLink > a:hover {
	opacity: 0.7;
}

.topCompany_tel {
	color: var(--color-green);
	font-family: var(--font-roboto);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.03em;
}

/* ========================================
   Footer
======================================== */
.gFooter {
	padding: 80px 0 35px;
	background-color: var(--color-off-white);
	border-top: 1px solid var(--color-beige);
}

.gFooter_cols {
	display: flex;
	gap: 60px;
}

.gFooter_col-info {
	width: 42%;
	max-width: 500px;
}

.gFooter_logo {
	margin-bottom: 22px;
}

.gFooter_logo > a {
	display: block;
	color: var(--color-green);
}

.gFooter_logo_text {
	font-family: var(--font-serif);
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.2;
}

.gFooter_logo_sub {
	font-size: 12px;
	color: var(--color-text-gray);
	margin-top: 2px;
}

.gFooter_info {
	display: flex;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 28px;
	margin-bottom: 20px;
}

.gFooter_info > li {
	background-color: var(--color-beige);
	border-radius: 5px;
	padding: 0 13px;
}

.gFooter_addr {
	font-weight: 500;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}

.gFooter_hours {
	font-size: 14px;
	color: var(--color-text-gray);
	margin-bottom: 25px;
}

.gFooter_tel {
	font-family: var(--font-roboto);
	color: var(--color-green);
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 32px;
}

.gFooter_tel > a {
	color: inherit;
}

.gFooter_calendar {
	margin-bottom: 30px;
}

.gFooter_table {
	width: 100%;
	border-collapse: separate;
	font-size: 14px;
	border-spacing: 0;
}

.gFooter_table thead th {
	white-space: nowrap;
	border: 1px solid var(--color-light-gray);
	border-left: none;
	font-weight: 500;
	height: 44px;
	text-align: center;
	vertical-align: middle;
}

.gFooter_table thead th:first-child {
	border-left: 1px solid var(--color-light-gray);
	border-top-left-radius: 10px;
	width: 120px;
}

.gFooter_table thead th:last-child {
	border-top-right-radius: 10px;
}

.gFooter_table tbody th {
	white-space: nowrap;
	font-weight: normal;
	border: 1px solid var(--color-light-gray);
	border-top: none;
	text-align: center;
	vertical-align: middle;
	height: 44px;
}

.gFooter_table tbody td {
	height: 44px;
	border: 1px solid var(--color-light-gray);
	border-top: none;
	border-left: none;
	text-align: center;
	vertical-align: middle;
}

.gFooter_caution {
	font-size: 14px;
	height: 48px;
	display: flex;
	align-items: center;
	border: 1px solid var(--color-light-gray);
	border-top: none;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding: 0 20px;
}

.gFooter_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.gFooter_list > li > a {
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s;
}

.gFooter_list > li > a:hover {
	color: var(--color-green);
}

.gFooter_col-nav {
	flex: 1;
	max-width: 625px;
	margin-left: auto;
}

.gFootNav {
	margin-bottom: 40px;
}

.gFootNav_cols {
	display: flex;
	gap: 60px;
}

.gFootNav_list > li > a {
	color: var(--color-green);
	font-weight: bold;
	display: block;
	padding: 8px 0;
	transition: opacity 0.3s;
}

.gFootNav_list > li > a:hover {
	opacity: 0.7;
}

.gFooter_map {
	position: relative;
	padding-bottom: 50%;
	border-radius: 10px;
	overflow: hidden;
	background-color: #f5f3f3;
}

.gFooter_map > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.gFooter_copyright {
	text-align: right;
	font-size: 12px;
	font-family: var(--font-roboto);
	color: rgba(0, 42, 29, 0.50);
	margin-top: 60px;
}

/* ========================================
   Hover Effects (Desktop)
======================================== */
@media screen and (min-width: 1000px) and (hover: hover) {
	.gNav_list > li > a:hover {
		color: var(--color-green);
	}

	a:hover .gNav_list_icon {
		transform: translate3d(0, -3px, 0);
	}

	.u-btn:hover {
		background-color: rgba(255, 255, 255, 0);
		color: var(--color-green);
	}
}

/* ========================================
   Responsive: Tablet (max-width: 1099px)
======================================== */
@media screen and (max-width: 1099px) {
	.gNav_btnList {
		width: 230px;
		margin-left: 10px;
	}

	.gNav_list {
		width: calc(100% - 240px);
	}

	.gNav {
		max-width: 750px;
	}

	.topMain_cols {
		flex-direction: column;
	}

	.topMain_col-nav {
		width: 100%;
		border-radius: 0 0 10px 10px;
	}

	.topMedical_cols {
		flex-direction: column;
		gap: 40px;
	}

	.topMedical_col-txt {
		width: 100%;
	}

	.topMedical_areaTxt {
		padding: 60px 30px;
	}
}

/* ========================================
   Responsive: Mobile (max-width: 999px)
======================================== */
@media screen and (max-width: 999px) {
	.gHeaderWrap {
		height: 70px;
	}

	.gBody-home {
		padding-top: 70px;
	}

	.gHeader_title {
		height: 70px;
	}

	.gHeader_col-title {
		width: auto;
		max-width: calc(100% - 60px);
	}

	.gHeader_title_text {
		font-size: 16px;
	}

	.gHeader_col-menu {
		max-width: 46px;
		width: auto;
		margin-left: auto;
	}

	/* Hamburger Button */
	.gMenuBtn {
		display: block;
		height: 46px;
		width: 46px;
		background-color: var(--color-green);
		border-radius: 50%;
		color: var(--color-white);
		position: relative;
		z-index: 1002;
	}

	.gMenuBtn_barWrap {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: 100%;
	}

	.gMenuBtn_bar {
		width: 20px;
		height: 2px;
		background-color: currentColor;
		transition: transform 0.3s;
	}

	.gMenuBtn_bar-no2 {
		margin: 4px 0;
	}

	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no1 {
		transform: translateY(6px) rotate(-45deg);
	}

	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no2 {
		transform: scaleX(0);
	}

	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no3 {
		transform: translateY(-6px) rotate(45deg);
	}

	/* Mobile Navigation */
	.gNav {
		position: fixed;
		z-index: 1000;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		max-width: 375px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.5s, visibility 0.5s;
		background-color: var(--color-pale-beige);
		padding: 90px 20px 50px;
		overflow: auto;
		box-shadow: -10px 0 30px rgba(0,0,0,0.1);
	}

	.gNav.isShow {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.gNav_inner {
		display: block;
	}

	.gNav_list {
		display: block;
		width: auto;
	}

	.gNav_list > li {
		width: auto;
		margin-bottom: 10px;
	}

	.gNav_list > li > a {
		background-color: var(--color-off-white);
		border-radius: 10px;
		color: var(--color-green);
		font-size: 16px;
		flex-direction: row;
		justify-content: flex-start;
		height: 64px;
		padding: 0 20px;
		gap: 12px;
	}

	.gNav_list > li > a::before,
	.gNav_list > li.-last > a::after {
		display: none;
	}

	.gNav_list_icon {
		max-width: none;
		width: 30px;
		margin-bottom: 0;
	}

	.gNav_list_icon > svg {
		width: 30px;
		height: 30px;
	}

	.gNav_btnList {
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}

	/* Mobile overlay */
	.gNav-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.71);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.5s, visibility 0.5s;
	}

	.gNav-overlay.isShow {
		opacity: 1;
		visibility: visible;
	}

	/* ---- Mobile Typography ---- */
	body {
		font-size: 14px;
		line-height: 1.9;
		letter-spacing: 0.03em;
	}

	.u-ttl_main {
		font-size: 22px;
		letter-spacing: 0.06em;
	}

	.u-ttl_en {
		font-size: 11px;
		letter-spacing: 0.15em;
	}

	/* Main Visual Mobile */
	.topMain_cols {
		flex-direction: column;
	}

	.topMain_col-nav {
		width: 100%;
		border-radius: 0;
	}

	.topVis_title {
		font-size: 26px;
		letter-spacing: 0.08em;
		line-height: 1.5;
	}

	.topVis_catch {
		font-size: 12px;
		letter-spacing: 0.1em;
	}

	.topVis_areaText {
		left: 16px;
		right: 16px;
		padding: 20px 24px;
	}

	.topVis_slideWrap {
		height: 350px;
	}

	/* About Mobile */
	.topAbout {
		padding: 70px 0 50px;
	}

	.topAbout_catch {
		font-size: 11px;
		letter-spacing: 0.2em;
	}

	.topAbout_title {
		font-size: 24px;
		line-height: 1.7;
		letter-spacing: 0.06em;
		text-align: left;
	}

	.topAbout_inner {
		text-align: left;
	}

	.topAbout_text {
		font-size: 14px;
		line-height: 2;
		letter-spacing: 0.03em;
		text-align: left;
	}

	.topAbout_message_label {
		font-size: 12px;
		padding: 3px 12px;
	}

	.topAbout_name {
		font-size: 16px;
	}

	.u-spNone {
		display: none;
	}

	.topAbout_companyBox {
		padding: 25px 20px;
		margin-top: 35px;
	}

	.topAbout_companyTable th {
		width: 100px;
		padding: 12px 10px 12px 0;
		font-size: 13px;
	}

	.topAbout_companyTable td {
		padding: 12px 0;
		font-size: 14px;
	}

	/* Philosophy Mobile */
	.topPhilosophy {
		padding-bottom: 50px;
	}

	.topPhilosophy_contents {
		margin: 0 10px;
		padding: 50px 0;
		border-radius: 16px;
	}

	.topPhilosophy_inner {
		padding: 0 20px;
	}

	.topPhilosophy_catch {
		font-size: 20px;
		margin-bottom: 30px;
		letter-spacing: 0.06em;
		line-height: 1.7;
	}

	.topPhilosophy_item {
		padding: 22px 18px 22px 65px;
	}

	.topPhilosophy_number {
		width: 38px;
		height: 38px;
		font-size: 16px;
	}

	.topPhilosophy_message {
		font-size: 14px;
		line-height: 1.8;
		letter-spacing: 0.03em;
	}

	/* Greeting Mobile */
	.topGreeting {
		padding: 50px 0;
	}

	.topGreeting_cols {
		flex-direction: column;
		gap: 30px;
	}

	.topGreeting_col-img {
		width: 100%;
		max-width: 260px;
		margin: 0 auto;
	}

	.placeholder-img--greeting {
		height: 280px;
	}

	.topGreeting_text {
		font-size: 14px;
		line-height: 2;
		margin-bottom: 22px;
	}

	.topGreeting_name {
		font-size: 12px;
	}

	.topGreeting_name_main {
		font-size: 20px;
		letter-spacing: 0.1em;
	}

	/* Service Mobile */
	.topMedical {
		padding: 50px 0;
	}

	.topMedical_areaTxt {
		padding: 35px 20px;
		border-radius: 16px;
	}

	.topMedical_cols {
		flex-direction: column;
		gap: 25px;
	}

	.topMedical_col-txt {
		width: 100%;
	}

	.topMedical_text {
		font-size: 14px;
		line-height: 2;
	}

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

	.topMedicalItem_text {
		font-size: 13px;
	}

	/* Gallery Mobile */
	.topGallery_slide_item {
		width: 220px;
	}

	.placeholder-img--gallery {
		height: 180px;
	}

	/* Company Info Mobile */
	.topCompany {
		padding: 60px 0 80px;
	}

	.topCompany_content {
		padding: 30px 20px;
		border-radius: 15px;
	}

	.topCompany_cols {
		flex-direction: column;
		gap: 30px;
	}

	.topCompany_col-map {
		width: 100%;
		max-width: none;
	}

	.topCompany_table th {
		width: 110px;
		padding: 15px 10px 15px 0;
		font-size: 14px;
	}

	.topCompany_table td {
		padding: 15px 0;
		font-size: 14px;
	}

	/* Footer Mobile */
	.gFooter {
		padding: 60px 0 30px;
	}

	.gFooter_cols {
		flex-direction: column;
		gap: 40px;
	}

	.gFooter_col-info {
		width: 100%;
		max-width: none;
	}

	.gFooter_col-nav {
		max-width: none;
	}

	.gFooter_logo_text {
		font-size: 22px;
	}

	.gFooter_addr {
		font-size: 13px;
		letter-spacing: 0.02em;
	}

	.gFooter_tel {
		font-size: 24px;
	}

	.gFooter_hours {
		font-size: 13px;
	}

	.gFooter_copyright {
		text-align: center;
		margin-top: 40px;
		font-size: 11px;
	}

	.gFootNav_list > li > a {
		font-size: 14px;
	}

	/* Enable tel links */
	a[href^="tel:"] {
		pointer-events: auto;
		cursor: pointer;
	}

	.u-spsInline {
		display: inline;
	}
}

/* ========================================
   Responsive: Small Mobile (max-width: 599px)
======================================== */
@media screen and (max-width: 599px) {
	body {
		font-size: 13px;
		line-height: 1.85;
	}

	.topVis_title {
		font-size: 22px;
		letter-spacing: 0.06em;
	}

	.topVis_areaText {
		padding: 16px 20px;
	}

	.topAbout_title {
		font-size: 20px;
		letter-spacing: 0.05em;
	}

	.topAbout_catch {
		font-size: 10px;
	}

	.u-ttl_main {
		font-size: 20px;
		letter-spacing: 0.05em;
	}

	.u-ttl_en {
		font-size: 10px;
	}

	.topPhilosophy_catch {
		font-size: 18px;
	}

	.topPhilosophy_message {
		font-size: 13px;
		line-height: 1.8;
	}

	.topPhilosophy_item {
		padding: 20px 16px 20px 58px;
	}

	.topPhilosophy_number {
		width: 34px;
		height: 34px;
		font-size: 14px;
	}

	.topMedical_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.topMedicalItem {
		padding: 20px 10px 15px;
	}

	.topMedicalItem_icn {
		width: 60px;
		height: 60px;
	}

	.topMedicalItem_icn > svg {
		width: 36px;
		height: 36px;
	}

	.topMain_btnList {
		grid-template-columns: 1fr;
	}

	.gFooter_table {
		font-size: 12px;
	}

	.gFooter_table thead th:first-child {
		width: 90px;
	}

	.gFootNav_cols {
		flex-direction: column;
		gap: 0;
	}

	.topAcsBox_miniCols {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.topAcsBox_list > li {
		text-align: left;
	}
}

/* ========================================
   Sub Page Common Styles
======================================== */
.gBody-sub {
	padding-top: 90px;
	padding-bottom: 100px;
}

.subPage_visual {
	background: linear-gradient(135deg, #c8e0ec 0%, #a0ccd8 40%, #daeef2 100%);
	padding: 80px 0 70px;
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}

.subPage_visual::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -10%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
	pointer-events: none;
}

.subPage_visual::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	pointer-events: none;
}

.subPage_visual_inner {
	position: relative;
	z-index: 1;
}

.subPage_title {
	font-size: 36px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-deep-green);
	letter-spacing: 0.12em;
}

.subPage_title_en {
	font-family: var(--font-roboto);
	font-size: 12px;
	font-weight: 400;
	color: var(--color-text-gray);
	letter-spacing: 0.2em;
	margin-top: 10px;
	text-transform: uppercase;
}

/* Breadcrumb */
.subPage_breadcrumb {
	padding: 16px 0;
	margin-bottom: 20px;
}

.breadcrumb_list {
	display: flex;
	align-items: center;
	font-size: 13px;
	color: var(--color-text-gray);
}

.breadcrumb_list > li {
	display: flex;
	align-items: center;
}

.breadcrumb_list > li > a {
	color: var(--color-text-gray);
	transition: color 0.3s;
}

.breadcrumb_list > li > a:hover {
	color: var(--color-green);
}

.breadcrumb_list > li + li::before {
	content: "";
	display: block;
	width: 10px;
	height: 1px;
	background-color: var(--color-light-gray);
	margin: 0 12px;
}

/* Sub Page Sections */
.subPage_section {
	padding: 70px 0;
}

.subPage_section-alt {
	background-color: var(--color-off-white);
	border-top: 1px solid var(--color-beige);
	border-bottom: 1px solid var(--color-beige);
}

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

.subPage_heading {
	font-size: 22px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-green);
	margin-bottom: 30px;
	padding-bottom: 16px;
	letter-spacing: 0.08em;
	border-bottom: 1px solid var(--color-beige);
	position: relative;
}

.subPage_heading::before {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background-color: var(--color-orange);
	border-radius: 2px;
	position: absolute;
	bottom: -1px;
	left: 0;
}

.subPage_text {
	line-height: 2.2;
	margin-bottom: 22px;
	font-size: 15px;
	letter-spacing: 0.04em;
	color: rgba(10, 42, 51, 0.8);
}

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

.subPage_text-center {
	text-align: center;
}

/* Sub Page Table */
.subPage_tableWrap {
	margin-top: 10px;
}

.subPage_table {
	width: 100%;
	font-size: 15px;
	border-collapse: separate;
	border-spacing: 0;
	background-color: var(--color-white);
	border-radius: 10px;
	overflow: hidden;
}

.subPage_table th {
	font-weight: 500;
	text-align: left;
	vertical-align: top;
	padding: 18px 20px;
	width: 150px;
	white-space: nowrap;
	color: var(--color-green);
	background-color: rgba(42, 140, 159, 0.05);
	border-bottom: 1px solid var(--color-beige);
}

.subPage_table td {
	padding: 18px 20px;
	vertical-align: top;
	border-bottom: 1px solid var(--color-beige);
	line-height: 1.8;
}

.subPage_table tr:last-child th,
.subPage_table tr:last-child td {
	border-bottom: none;
}

.subPage_table td a {
	color: var(--color-green);
	font-weight: 500;
}

/* Sub Page Map */
.subPage_map {
	margin-top: 20px;
	border-radius: 10px;
	overflow: hidden;
}

.subPage_map > iframe {
	display: block;
	width: 100%;
	border: none;
}

.subPage_mapLink {
	margin-top: 12px;
	text-align: right;
}

.subPage_mapLink > a {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-green);
}

/* ========================================
   Philosophy Page
======================================== */
.philosophy_catch {
	text-align: center;
	font-size: 32px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-green);
	letter-spacing: 0.12em;
	margin-bottom: 24px;
	line-height: 1.7;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--color-beige);
}

.philosophy_items {}

.philosophy_item {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	background-color: var(--color-white);
	border-radius: 12px;
	padding: 35px 35px 35px 30px;
	margin-bottom: 20px;
	border: 1px solid var(--color-beige);
}

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

.philosophy_number {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background-color: var(--color-orange);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 22px;
	font-weight: bold;
	font-family: var(--font-roboto);
}

.philosophy_headline {
	font-size: 19px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-deep-green);
	margin-bottom: 14px;
	letter-spacing: 0.06em;
}

/* ========================================
   Greeting Page
======================================== */
.greeting_cols {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.greeting_col-img {
	width: 280px;
	flex-shrink: 0;
}

.greeting_col-txt {
	flex: 1;
}

.greeting_headline {
	font-size: 24px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-green);
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-beige);
	letter-spacing: 0.1em;
}

.greeting_sign {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid var(--color-beige);
}

.greeting_sign_position {
	font-size: 13px;
	color: var(--color-text-gray);
}

.greeting_sign_name {
	font-size: 26px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-deep-green);
	letter-spacing: 0.15em;
	margin-top: 4px;
}

/* ========================================
   Service Page
======================================== */
.service_items {}

.service_item {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	padding: 40px 0;
	border-bottom: 1px dashed var(--color-light-gray);
}

.service_item:first-child {
	padding-top: 0;
}

.service_item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.service_item_icon {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background-color: var(--color-pale-beige);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service_item_body {
	flex: 1;
}

.service_item_title {
	font-size: 19px;
	font-weight: 600;
	font-family: var(--font-serif);
	color: var(--color-deep-green);
	margin-bottom: 14px;
	letter-spacing: 0.06em;
}

/* ========================================
   Sub Page Responsive
======================================== */
@media screen and (max-width: 999px) {
	.gBody-sub {
		padding-top: 70px;
		padding-bottom: 60px;
	}

	.subPage_visual {
		padding: 50px 0 40px;
	}

	.subPage_title {
		font-size: 26px;
		letter-spacing: 0.08em;
	}

	.subPage_title_en {
		font-size: 11px;
		margin-top: 6px;
	}

	.subPage_section {
		padding: 50px 0;
	}

	.subPage_heading {
		font-size: 19px;
		letter-spacing: 0.06em;
	}

	.subPage_text {
		font-size: 14px;
		line-height: 2;
	}

	.subPage_table th {
		width: 100px;
		padding: 12px 10px;
		font-size: 12px;
	}

	.subPage_table td {
		padding: 12px 10px;
		font-size: 13px;
	}

	.philosophy_catch {
		font-size: 22px;
		letter-spacing: 0.06em;
	}

	.philosophy_item {
		padding: 22px 18px;
		gap: 14px;
	}

	.philosophy_number {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.philosophy_headline {
		font-size: 17px;
		letter-spacing: 0.04em;
	}

	.greeting_cols {
		flex-direction: column;
		gap: 28px;
	}

	.greeting_col-img {
		width: 100%;
		max-width: 240px;
		margin: 0 auto;
	}

	.greeting_headline {
		font-size: 20px;
		letter-spacing: 0.06em;
	}

	.greeting_sign_name {
		font-size: 20px;
		letter-spacing: 0.1em;
	}

	.service_item {
		flex-direction: column;
		gap: 14px;
		align-items: center;
		text-align: center;
		padding: 28px 0;
	}

	.service_item_title {
		font-size: 17px;
	}

	.service_item_icon {
		width: 68px;
		height: 68px;
	}
}

@media screen and (max-width: 599px) {
	.subPage_title {
		font-size: 22px;
		letter-spacing: 0.06em;
	}

	.subPage_heading {
		font-size: 17px;
	}

	.subPage_text {
		font-size: 13px;
	}

	.philosophy_catch {
		font-size: 18px;
	}

	.philosophy_item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 12px;
	}
}
