/* --- 共通設定 --- */
body {
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	overflow-x: hidden; 
}
.font-serif-jp {
	font-family: 'Noto Serif JP', serif;
}
/* --- メインビジュアル --- */
.swiper {
	width: 100%;
	height: 100vh;
}
.slide-content h2, .slide-content p, .slide-content .btn {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}
.swiper-slide-active .slide-content h2 {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}
.swiper-slide-active .slide-content p {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}
.swiper-slide-active .slide-content .btn {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.7s;
}
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.swiper-slide-active img {
	transform: scale(1.05);
}
.custom-nav-btn {
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	z-index: 30;
	cursor: pointer;
}
.custom-nav-btn:hover {
	background: white;
	color: #0e7490;
	border-color: white;
}
@media (max-width: 768px) {
	.custom-nav-btn { display: none; }
}
.swiper-button-next::after, .swiper-button-prev::after { content: none; }
.swiper-pagination-bullet {
	width: 40px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: all 0.3s;
}
.swiper-pagination-bullet-active {
	background: #fff;
	width: 60px;
}
.scroll-down { animation: bounce 2s infinite; }
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-10px);}
	60% {transform: translateY(-5px);}
}
.logo-img {
	height: 40px;
	width: auto;
	max-width: 100%;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
@media (min-width: 768px) {
	.logo-img { height: 54px; }
}
@media (max-width: 640px) {
	.logo-img { height: 48px; }
}
@media (min-width: 768px) {
	.logo-img.md\:h-10 { height: 3.5rem !important; }
}
@media (max-width: 767px) {
	footer .logo-img { height: 3rem !important; }
}
.bg-fixed-concept {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
@media (max-width: 768px) {
	.bg-fixed-concept { background-attachment: scroll; }
}
.horizontal-container {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden; 
}
.horizontal-section {
	width: 100vw;
	height: 100vh;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-color: #f8fafc;
	border-right: 1px solid rgba(0,0,0,0.05);
}
.parallax-img-wrap {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 0;
}
.parallax-img {
	width: 130%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: -15%;
}
.content-box {
	position: relative;
	z-index: 10;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	padding: 3rem;
	max-width: 600px;
	width: 90%;
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
	opacity: 0;
	transform: translateY(30px);
}
.vertical-text {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.5em;
	font-size: 1.2rem;
	color: rgba(0,0,0,0.3);
	z-index: 5;
}
.proxy {
	position: absolute;
	visibility: hidden;
}
.point-card {
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.point-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.point-badge {
	background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
}
/* --- 診療案内  --- */
.service-circle {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ccfbf1 0%, #e0e7ff 50%, #f3e8ff 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(255,255,255,0.5);
}
.service-circle::before {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 1px dashed rgba(14, 116, 144, 0.2);
	transition: all 0.5s ease;
}
.service-circle:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
}
.service-circle:hover::before {
	transform: rotate(180deg);
	border-color: rgba(14, 116, 144, 0.5);
}
.service-icon {
	font-size: 2.5rem;
	color: #0e7490;
	margin-bottom: 0.5rem;
}
.service-title {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.25rem;
	color: #0e7490;
	font-weight: 500;
}
.servicesSwiper {
	padding-bottom: 25px !important; 
	overflow: visible; 
}
.servicesSwiper .swiper-pagination {
	bottom: 0 !important; 
}
.servicesSwiper .swiper-pagination-bullet {
	background: #cbd5e1;
	opacity: 1;
}
.servicesSwiper .swiper-pagination-bullet-active {
	background: #0e7490;
}
.servicesSwiper.swiper,
.servicesSwiper .swiper {
	height: 50vh !important;
}
@media (max-width: 768px) {
	.servicesSwiper.swiper,
	.servicesSwiper .swiper {
		height: 45vh !important;
	}
}
@media (max-width: 480px) {
	.servicesSwiper.swiper,
	.servicesSwiper .swiper {
		height: 40vh !important;
	}
}
/* --- お知らせ  --- */
.news-item {
	position: relative;
	transition: background-color 0.3s ease;
}
.news-arrow {
	transition: transform 0.3s ease, color 0.3s ease;
}
.news-item:hover .news-arrow {
	transform: translateX(5px);
	color: #0e7490;
}
.news-date {
	font-family: 'Montserrat', sans-serif;
}
.access-table th, .access-table td {
	padding: 0.8rem;
	border-bottom: 1px solid #e2e8f0;
	text-align: center;
}
.access-table th {
	font-weight: 500;
	color: #475569;
	font-size: 0.9rem;
}
.access-table td {
	color: #334155;
}
.access-circle {
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	border-radius: 50%;
	border: 1px solid #0e7490;
	color: #0e7490;
	font-size: 12px;
}
.access-cross {
	color: #cbd5e1;
	font-size: 14px;
}
.access-note {
	font-size: 0.8rem;
	color: #64748b;
	margin-top: 0.5rem;
}
.footer-top-btn {
	position: absolute;
	top: 0;
	right: 5%; 
	transform: translateY(-100%); 
	width: 100px;
	height: 0px; 
	background-color: #0e7490; 
	clip-path: ellipse(60% 100% at 50% 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 12px;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.3s;
	text-decoration: none;
}
.footer-top-btn:hover {
	background-color: #155e75;
}
.footer-top-btn span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
}
#mobile-menu .logo-img {
    height: 3rem !important;
}
#mobile-menu {
	background-color: rgba(15, 23, 42, 0.7) !important;
}
