@charset "utf-8";
/* CSS Document */
*{
	box-sizing:border-box;
	padding:0;
	margin:0;
	word-break:normal;
	word-wrap:break-word;

}
body{
	font-family: 'yu-gothic-pr6n',"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	background-color:#fff;
	color:#333;
	font-size: 15px;
	line-height: 1.6;
}
@media screen and (max-width: 1024px) {
	body{
		font-size: 14px;
	}
}
img{
	vertical-align:bottom;
	margin:0;
	padding:0;
	border:0;
	max-width:100%;
}
.clearfix:before,
.clearfix:after{
	display: table;
  	content: " ";
}
.clearfix:after{
	clear: both;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
table {
  background-color: transparent;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
ul li{
	list-style:none;
}
h1,h2,h3,h4,h5,h6,p{
	margin:0px;
}

.os-animation{
    opacity: 0;
}  

.os-animation.animated{
    opacity: 1;
}
.fixedcontainer{
	width:1080px;
	margin:0 auto;
	padding:0px;
}
a{
	color: inherit;
}
a:visited,
a:link,
a:hover,
a:active,
a:focus{
	outline:none;
	text-decoration:none;
}
a:hover{
	opacity:0.8;
	transition:opacity 0.5s ease;
}

/* Color Variables */
:root {
	--primary-green: #A4CA53;
	--light-green: #F4FAF6;
	--text-dark: #333;
	--text-light: #f2f2f2;
	--white: #fff;
	--gray-light: #f2f2f2;
	--gray-medium: #DADCD9;
}

.bold{
	font-weight:bold;
}
.btline{
	text-decoration:underline;	
}
.underline{
	text-decoration:underline;
}
.text-center{
	text-align:center;
}
.text-left{
	text-align:left;
}
.text-right{
	text-align:right;
}
.visible-sp{
	display:none;
}
.hidden-sp{
	display:block;
}
.visible-xs{
	display:none;
}
.hidden-xs{
	display:block;
}
.visible-500{
	display:none;
}
.hidden-500{
	display:block;
}
.flex{
  display:-webkit-flex;
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    flex-direction:row;
    flex-wrap: nowrap;
}

/*-------------header----------------------*/
header {
	background: var(--white);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.header_in{
	padding: 12px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	height: 64px;
	width: auto;
}

.header_links>ul {
	display: flex;
	justify-content: flex-start;
	font-weight: bold;
	align-items: center;
}

.header_links>ul>li{
	margin-left: 15px;
	position: relative;
}

.header_links>ul>li a{
	display: block;
	padding: 10px 10px;
	text-align: center;
	color: var(--text-dark);
	font-weight: 500;
}
.header_links>ul>li a:hover{
	color: var(--primary-green);
}
.header_links>ul li.contact_btn a img {
	width: 20px;
	margin-right: 5px;
	vertical-align: top;
	margin-top: 6px;
}
.header_links>ul li.tel_btn a img {
	width: 16px;
	margin-right: 5px;
	vertical-align: top;
	margin-top: 3px;
}
.header_links>ul li.order_btn a img {
	width: 16px;
	margin-right: 5px;
	vertical-align: top;
	margin-top: 4px;
}
/* Dropdown styles */
.dropdown {
	position: relative;
}

.dropdown .arrow {
	font-size: 10px;
	margin-left: 5px;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	border-radius: 4px;
	min-width: 200px;
	z-index: 1001;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu li {
	margin: 0;
	border-bottom: 1px solid var(--gray-medium);
	display: block;
}

.dropdown-menu li:last-child {
	border-bottom: none;
}

.dropdown-menu li a {
	padding: 12px 20px;
	display: block;
	font-size: 14px;
}

.dropdown-menu li a:hover {
	background: var(--gray-light);
}

.header_links ul li.contact_btn a{
	border: 1px solid var(--primary-green);
	padding: 8px 16px;
	color: var(--primary-green);
	background: var(--white);
}
.header_links ul li.tel_btn a{
	border: 1px solid var(--primary-green);
	padding: 8px 16px;
	color: var(--primary-green);
	background: var(--white);
}
.header_links ul li.order_btn a{
	background-color: var(--primary-green);
	color: var(--white);
	padding: 8px 16px;
	border: 1px solid var(--primary-green);
}

/*----------- Main Content ---------------*/

main {
	margin-top: 90px;
}

/* Hero Section */
.fv {
	position: relative;
	height: 500px;
	overflow: hidden;
}

.fv_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.fv_bg:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
}
.fv_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fv_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
	width: 90%;
}

.fv_text h1 {
	color: var(--white);
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.2rem;
}

/* Section Headers */
.section_header {
	margin-bottom: 40px;
}

.section_subtitle {
	position: relative;
	color: var(--primary-green);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
	padding-left: 50px;
}
.section_subtitle:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 40px;
	height: 1px;
	background: var(--primary-green);
}
.section_title {
	color: var(--text-dark);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

/* News Section */
.news_section {
	padding: 100px 0;
	background: var(--light-green);
}
.news_section .fixedcontainer{
	display: flex;
	justify-content: space-between;
}
.news_content{
	width: 780px;
}

.news_item {
	display: flex;
	align-items: center;
	padding: 15px 10px;
	border-top: 1px solid var(--gray-medium);
}
.news_item:hover{
	background: var(--white);
}

.news_item:last-child {
	border-bottom: 1px solid var(--gray-medium);
}

.news_date {
	font-size: 14px;
	margin-right: 80px;
	min-width: 100px;
}

.news_title {
	font-weight: 600;
}

.more_btn {
	margin-top: 36px;
}

.more_btn a {
	display: inline-block;
	min-width: 180px;
	text-align: center;
	background: var(--primary-green);
	color: var(--white);
	padding: 12px 30px;
	transition: background 0.3s ease;
	position: relative;
}
.more_btn a::after{
	content: '▶';
	font-size: 10px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

/* Concept Section */
.concept_section{
	padding: 100px 0;
}
.concept_content{
	display: flex;
	justify-content: space-between;
}
.concept_img{
	width: 510px;
}
.concept_text{
	width: 510px;
}
.link_2_box{
	margin: 60px 0;
}
.link_2_box ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.link_2_box ul li {
    position: relative;
    overflow: hidden;
    width: 510px;
    height: 320px;
    box-sizing: border-box;
}

.link_2_box ul li .bg {
    position: absolute;
    z-index: 1;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 320px;
    background-image: url(../img/clinic.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 3.0s ease-out;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    will-change: transform;
}

.link_2_box ul li:last-child .bg {
    background-image: url(../img/staff.jpg);
}

.link_2_box ul li a {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: block;
}

.link_2_box ul li .text {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.5px;
}

.link_2_box ul li .text span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}


.link_2_box ul li .btn2 {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 1;
    display: block;
    width: 58px;
    height: 58px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.12s ease-in 0s;
}

.link_2_box ul li .btn2:before {
    position: absolute;
    z-index: 2;
    display: block;
    content: "";
    top: 25px;
    left: 22px;
    width: 6.5px;
    height: 6.5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.12s ease-in 0s;
}

.link_2_box ul li:hover .bg {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.95);
}

.link_2_box ul li:hover .btn2 {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    background-color: #A4CA53;
    border: 1px solid #A4CA53;
}

.link_2_box ul li:hover .btn2:before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.imgShadow {
    position: relative;
}

.imgShadow:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    z-index: 1;
}

.imgShadow * {
    position: relative;
    z-index: 2;
}

/* Quick Links Section */
.quick_links_section {
	padding: 60px 0;
	background: var(--white);
}

.quick_links {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.quick_link_item {
	background: var(--primary-green);
	color: var(--white);
	padding: 40px 30px;
	text-align: center;
	flex: 1;
	max-width: 300px;
	transition: transform 0.3s ease;
}

.quick_link_item:hover {
	transform: translateY(-5px);
	transition: transform 0.3s ease;
}

.quick_link_icon {
	margin-bottom: 20px;
}

.quick_link_icon img {
	width: 60px;
	height: 60px;
	filter: brightness(0) invert(1);
}

.quick_link_subtitle {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
	opacity: 0.8;
}

.quick_link_title {
	font-size: 18px;
	font-weight: 700;
}

/* Treatment Section */
.treatment_section {
	padding: 100px 0;
	background: var(--light-green);
}

.treatment_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.treatment_item {
	background: var(--white);
	padding: 30px;
	transition: transform 0.3s ease;
	display: flex;
	justify-content: space-between;
}

.treatment_item:hover {
	transform: translateY(-5px);
	transition: transform 0.3s ease;
}


.treatment_icon {
	width: 100px;
	text-align: center;
}

.treatment_text{
	width: 310px;
}

.treatment_icon img {
	width: 70px;
	height: 70px;
}

.treatment_name {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 16px;
}

/* Column & Blog Section */
.column_blog_section {
	padding: 60px 0;
	background: var(--white);
}

.blog_list {
	display: flex;
	gap: 30px;
}

.blog_item {
	flex: 1;
	overflow: hidden;
}


.blog_image {
	height: 190px;
	overflow: hidden;
}

.blog_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog_content {
	margin-top: 10px;
}

.blog_date {
	font-size: 14px;
	display: block;
	margin-bottom: 2px;
}

.blog_title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	line-height: 1.4;
}

.blog_text {
	font-size: 14px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}
.column_blog_section .more_btn{
	text-align: center;
}

/* Access Section */
.access_section {
	padding: 100px 0;
	background: var(--light-green);
}

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

.access_info {
	flex: 1;
}
.access_info_in{
	background-color: #fff;
	padding: 30px;
}
.access_item {
	margin-bottom: 30px;
}
.access_item:last-child{
	margin-bottom: 0;
}
.access_icon {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.access_icon img {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.access_text h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 5px;
}

.access_text p {
	color: var(--text-light);
}

.address {
	margin: 30px 0;
}

.address p {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
}

.hours_table {
	margin-bottom: 20px;
}

.hours_table table {
	width: 100%;
	border: 1px solid var(--gray-medium);
	overflow: hidden;
}

.hours_table th,
.hours_table td {
	padding: 12px;
	text-align: center;
	border: 1px solid #fff;
}

.hours_table th {
	background: var(--primary-green);
	color: var(--white);
	font-weight: 300;
}

.hours_table td {
	background: var(--gray-light);
}

.hours_note {
	font-size: 14px;
	margin-top: 10px;
}

.access_map {
	flex: 1;
}

.map_container {
	overflow: hidden;
}
.video_container {
}

/* Footer */
.footer_in1 {
	background: var(--primary-green);
	color: var(--white);
	padding: 40px 0;
}

.footer_content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer_logo img {
	height: 60px;
	width: auto;
}

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

.footer_nav_column h4 {
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 10px;
	color: var(--white);
}
.footer_nav_column>a{
	display: block;
	margin-bottom: 10px;
}
.footer_nav_column ul {
	list-style: none;
}

.footer_nav_column ul li {
	margin-bottom: 8px;
	line-height: 1;
}

.footer_nav_column ul li a {
	color: var(--white);
	font-size: 12px;
	transition: opacity 0.3s ease;
}
.footer_nav_column ul li a::before{
	content: "▶ ";
	font-size: 8px;
}
.footer_nav_column ul li a:hover {
	opacity: 1;
}

.footer_buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer_buttons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	padding: 10px 10px;
	font-size: 14px;
	transition: all 0.3s ease;
	background: var(--white);
	color: var(--primary-green);
}
.footer_contact_btn a img{
	width: 16px;
	height: 16px;
	margin-right: 8px;
}
.footer_tel_btn a img{
	width: 16px;
	height: 16px;
	margin-right: 8px;
}
.footer_order_btn a img {
	width: 16px;
	height: 16px;
	margin-right: 8px;
}

.footer_in2 {
	background: var(--primary-green);
	color: var(--white);
	padding: 20px 0;
	text-align: center;
}

.footer_in2 p {
	font-size: 12px;
}

/* Additional Interactive Styles */

/* Header scroll effect */
header.scrolled {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}


/* Hover effects for treatment items */
.treatment_item.hovered {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Click effect for quick links */
.quick_link_item.clicked {
	transform: scale(0.95);
}

/* Hover effects for blog items */
.blog_item.hovered {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Back to top button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--primary-green);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top:hover {
	background: var(--dark-green);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Loading animation */
body:not(.loaded) {
	overflow: hidden;
}

body:not(.loaded)::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

body:not(.loaded)::after {
	content: '';
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border: 4px solid var(--gray-medium);
	border-top: 4px solid var(--primary-green);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 10000;
}

@keyframes spin {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Menu open state */
body.menu-open {
	overflow: hidden;
}

/* Form validation styles */
input.error,
textarea.error {
	border-color: #ff4444 !important;
	box-shadow: 0 0 5px rgba(255, 68, 68, 0.3) !important;
}

/* Lazy loading placeholder */
img.lazy {
	opacity: 0;
	transition: opacity 0.3s ease;
}

img.lazy.loaded {
	opacity: 1;
}

/* Smooth transitions for all interactive elements */
* {
	transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
	outline: 2px solid var(--primary-green);
	outline-offset: 2px;
}

/* Print styles */
@media print {
	header,
	footer,
	.back-to-top,
	.menu-trigger {
		display: none !important;
	}
	
	main {
		margin-top: 0;
	}
	
	.fv {
		height: auto;
		position: static;
	}
	
	.fv_text {
		position: static;
		transform: none;
		color: var(--text-dark);
	}
	
	.fv_text h1 {
		text-shadow: none;
	}
}


/*common*/
.sec{
	padding: 100px 0;
}
.sec_top{
	padding-top: 100px;
}
.sec_bottom{
	padding-bottom: 100px;
}
.bg_light_green{
	background-color: #F4FAF6;
}
.bg_white{
	background-color: #fff;
}
.flex_div{
	display: flex;
	justify-content: space-between;
}
.flex_div.reverse{
	flex-direction: row-reverse;
}
.flex_img{
	width: 510px;
	text-align: center;
}
.flex_img img{
	max-height: 320px;
}
.flex_text{
	width: 510px;
}
.flex_text h3{
	font-size: 24px;
	margin-bottom: 20px;
}
.mb50{
	margin-bottom: 50px;
}
.mt50{
	margin-top: 50px;
}
.mb20{
	margin-bottom: 20px;
}
.p40{
	padding: 40px;
}
.sub_page_fv{
	padding: 120px 0;
}
.page_title{
	font-size: 54px;
	font-weight: 700;
	margin-bottom: 20px;
}
.breadcrumb a{
	color: #666;
}
.sub_page_ttl_en{
	font-size: 120px;
	text-align: right;
	color: #f2f2f2;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 10px;
}
@media screen and (max-width: 1024px) {
	.sub_page_fv{
		padding: 60px 0;
	}
	.page_title{
		font-size: 32px;
		margin-bottom: 0;
	}
	.sub_page_ttl_en{
		font-size: 60px;
		letter-spacing: 0;
	}
	.breadcrumb{
		font-size: 12px;
	}
	.sec{
		padding: 50px 0;
	}
	.sec_top{
		padding-top: 50px;
	}
	.sec_bottom{
		padding-bottom: 50px;
	}
	.flex_div{
		display: block;
	}
	.flex_img{
		width: 100%;
	}
	.flex_text{
		width: 100%;
		margin-top: 20px;
	}
	.mb50{
		margin-bottom: 20px;
	}
	.mt50{
		margin-top: 20px;
	}
	.mb20{
		margin-bottom: 10px;
	}
	.p40{
		padding: 20px;
	}
	.flex_text h3{
		font-size: 18px;
		margin-bottom: 10px;
	}
	
}

.implant_diff_item{
	padding: 40px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.implant_diff_item:last-child{
	margin-bottom: 0;
}
.implant_diff_left{
	width: 260px;
}
.implant_diff_right{
	width: 680px;
}
.implant_diff_title{
	font-size: 24px;
	color: var(--primary-green);
	margin-bottom: 30px;
}
.implant_diff_img{
	width: 260px;
}
.implant_diff_right h3{
	font-size: 20px;
	margin-bottom: 10px;
}
.implant_diff_list{
	margin-top: 20px;
	border-top: 1px solid #e0e0e0;
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.implant_diff_merit{
	width: calc(50% - 10px);
}
.implant_diff_merit h4{
	font-size: 18px;
	margin-bottom: 10px;
}
.implant_diff_merit ul li{
	list-style: inside;
}
.price_link{
	text-align: center;
	margin-top: 50px;
}
.price_btn{
	display: inline-block;
	padding: 15px 0px;
	width: 240px;
	background-color: var(--primary-green);
	color: #fff;
	font-size: 700;
	position: relative;
}
.price_btn::after{
	content: "▶";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	font-size: 10px;
}
@media screen and (max-width: 1024px) {
	.implant_diff_item{
		padding: 20px;
		display: block;
	}
	.implant_diff_left{
		width: 100%;
	}
	.implant_diff_right{
		width: 100%;
	}
	.implant_diff_title{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.implant_diff_img{
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.implant_diff_right h3{
		font-size: 16px;
	}
	.implant_diff_merit h4{
		font-size: 14px;
		margin-bottom: 0;
	}
	.implant_diff_list{
		display: block;
	}
	.implant_diff_merit{
		width: 100%;
		margin-bottom: 20px;
	}
	.implant_diff_merit:last-child{
		margin-bottom: 0;
	}
	.price_link{
		margin-top: 20px;
	}
}
.clinic_div{
	display: flex;
	justify-content: space-between;
}
.clinic_img{
	width: 400px;
}
.clinic_text{
	width: 640px;
}
.clinic_text h3{
	font-size: 24px;
	margin-bottom: 20px;
}
.clinic_text p{
	font-size: 14px;
}

.feature_div{
	display: flex;
	justify-content: space-between;
}
.feature_div.reverse{
	flex-direction: row-reverse;
}
.feature_img{
	width: 540px;
}
.feature_text{
	width: 460px;
}
.feature_text p{
	font-size: 14px;
}
.feature_text h3{
	font-size: 20px;
	margin-bottom: 20px;
}
.feature_num{
	color: var(--primary-green);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.facility_div{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.facility_item{
	width: 320px;
}
.facility_text h3{
	margin: 10px 0;
	font-size: 20px;
}

@media screen and (max-width: 1024px) {
	.clinic_div{
		display: block;
	}
	.clinic_img{
		width: 100%;
	}
	.clinic_text{
		width: 100%;
	}
	.clinic_text h3{
		font-size: 18px;
		margin-bottom: 10px;
		margin-top: 10px;
	}
	.clinic_text p{	
		font-size: 12px;
	}
	.feature_div{
		display: block;
	}
	.feature_img{
		width: 100%;
	}
	.feature_text{
		width: 100%;
		margin-top: 10px;
	}
	.feature_text h3{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.facility_div{
		display: block;
	}
	.facility_item{
		width: 100%;
		margin-bottom: 20px;
	}
	.facility_item:last-child{
		margin-bottom: 0;
	}
	.facility_text h3{
		font-size: 18px;
	}
	.facility_img{
		text-align: center;
	}
}
.cavitle_item{
	display: flex;
	justify-content: space-between;
	padding: 40px;
	background-color: #fff;
	margin-bottom: 50px;
}
.cavitle_item:last-child{
	margin-bottom: 0;
}
.cavitle_img{
	width: 180px;
}
.cavitle_text{
	width: calc(100% - 220px);
}
.cavitle_text h3{
	font-size: 24px;
	color: var(--primary-green);
	margin-bottom: 10px;
}
.symptoms_content{
	background-color: #fff;
	padding: 30px;
}
.symptoms_content ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.symptoms_content ul li{
	width: 32%;
	line-height: 2;
	font-size: 14px;
	font-weight: 700;
}
.symptoms_content ul li::before{
	content: "◼︎";
	color: #A4CA53;
	margin-right: 10px;
}
.cause_img{
	text-align: center;
}
.flow_div{
	overflow: hidden;
}
.flow_item{
	background-color: #fff;
	padding: 30px;
	width: 420px;
	position: relative;
	margin-top: -50px;
}
.flow_item:first-child{
	margin-top: 0;
}
.flow_item::before{
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: var(--primary-green);
	left: 540px;
	top: 0;
}
.flow_item:first-child::before{
	height: 50%;
	bottom: 0;
	top: auto;
}
.flow_item:last-child::before{
	height: 50%;
	top: 0;
	bottom: auto;
}
.flow_item:nth-child(2n)::before{
	left: auto;
	right: 539px;
}
.flow_count{
	position: absolute;
	left: 540px;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 20px;
	border: 1px solid var(--primary-green);
	color: var(--primary-green);
	font-weight: 700;
	z-index: 1;
}
.flow_count::before{
	content: '';
	position: absolute;
	width: 100px;
	right: 40px;
	top: 50%;
	border-top: 1px dashed var(--primary-green);
}
.flow_item:nth-child(2n){
	margin-left: auto;
	margin-right: 0;
}
.flow_item:nth-child(2n) .flow_count{
	left: auto;
	right: 540px;
	transform: translate(50%, -50%);
}
.flow_item:nth-child(2n) .flow_count::before{
	right: auto;
	left: 40px;
}
.flow_num{
	font-weight: 700;
	font-size: 14px;
	color: var(--primary-green);
}
.flow_num span{
	font-size: 20px;
	margin-left: 5px;
}
.flow_title{
	font-size: 20px;
	margin-bottom: 10px;
}
.flow_img{
	margin-top: 10px;
}
@media screen and (max-width: 1024px) {
	.cavitle_item{
		padding: 20px;
		margin-bottom: 20px;
		display: block;
	}
	.cavitle_img{
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.cavitle_img img{
		max-width: 180px;
	}
	.cavitle_text{
		width: 100%;
	}
	.cavitle_text h3{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.cavitle_text p{
		font-size: 12px;
	}
	.symptoms_content{
		padding: 20px;
	}
	.symptoms_content ul li{
		width: 100%;
		font-size: 12px;
	}
	.symptoms_content ul li::before{
		font-size: 12px;
	}
	.flow_div{
		display: block;
	}
	.flow_item{
		width: 100%;
		padding: 20px;
		margin-bottom: 20px;
		margin-top: 0;
	}
	.flow_item:last-child{
		margin-bottom: 0;
	}
	.flow_item::before{
		display: none;
	}
	.flow_count{
		display: none;
	}
}

.symptoms_list{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.symptoms_item{
	width: calc(50% - 30px);
	padding: 30px;
	background-color: #fff;
}
.symptoms_num{
	font-size: 14px;
	color: var(--primary-green);
	margin-bottom: 5px;
}
.symptoms_item h3{
	font-size: 24px;
	margin-bottom: 10px;
}
.symptoms_text{
	text-align: center;
}
.consult_ttl{
	font-size: 24px;
}
@media screen and (max-width: 1024px) {
	.symptoms_list{
		gap: 20px;
	}
	.symptoms_item{
		width: 100%;
		padding: 20px;
	}
	.symptoms_num{
		font-size: 12px;
	}
	.symptoms_item h3{
		font-size: 18px;
	}
	.consult_ttl{
		font-size: 18px;
	}
}
.pediatric_content{
	display: flex;
	justify-content: space-between;
}
.pediatric_item{
	padding: 20px 10px;
	width: 300px;
	background-color: #fff;
	border: 1px solid var(--primary-green);
}
.pediatric_item h3{
	text-align: center;
	font-size: 20px;
	margin-bottom: 10px;
}
.pediatric_img{
	text-align: center;
	margin-bottom: 10px;
}
.pediatric_text{
	font-size: 14px;
}
.diet_div{
	display: flex;
	justify-content: space-between;
}
.diet_img{
	width: 320px;
}
.diet_text{
	width: calc(100% - 380px);
}
.diet_num{
	font-size: 14px;
	color: var(--primary-green);
	margin-bottom: 10px;
}
.diet_text h3{
	font-size: 20px;
	margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
	.pediatric_content{
		display: block;
	}
	.pediatric_item{
		width: 100%;
		margin-bottom: 20px;
	}
	.pediatric_item:last-child{
		margin-bottom: 0;
	}
	.diet_div{
		display: block;
	}
	.diet_img{
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.diet_text{
		width: 100%;
	}
	.diet_num{
		font-size: 12px;
	}
}

.reservation_btn{
	margin-top: 30px;
}
.reservation_btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	gap: 10px;
	background: var(--primary-green);
	color: var(--white);
	padding: 10px 20px;
	transition: background 0.3s ease;
	position: relative;
}
.step_div{
	display: flex;
	justify-content: space-between;
	padding-bottom: 60px;
	position: relative;
}
.step_div:last-child{
	padding-bottom: 0;
}
.step_div::before{
	content: '';
	position: absolute;
	width: 2px;
	left: 40px;
	height: 100%;
	background-color: var(--primary-green);
	z-index: -1;
}
.step_div:last-child::before{
	content: none;
}
.step_count{
	width: 80px;
	height: 80px;
	background-color: var(--primary-green);
	border-radius: 50%;
	text-align: center;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	padding-top: 15px;
}
.step_count span{
	display: block;
}
.step_count_en{
	font-size: 14px;
	margin-bottom: 5px;
}
.step_count_num{
	font-size: 32px;
}
.step_item{
	width: calc(100% - 120px);
	padding-top: 20px;
}
.step_item h3{
	font-size: 24px;
	margin-bottom: 10px;
}
.step_item_in{
	display: flex;
	justify-content: space-between;
}
.step_img{
	width: 300px;
}
.step_text{
	width: calc(100% - 360px);
}
@media screen and (max-width: 1024px) {
	.step_count{
		width: 60px;
		height: 60px;
		padding-top: 12px;
	}
	.step_count_num{
		font-size: 24px;
	}
	.step_count_en{
		font-size: 10px;
	}
	.step_div{
		padding-bottom: 30px;
	}
	.step_div::before{
		left: 30px;
	}
	.step_item{
		width: calc(100% - 80px);
		padding-top: 10px;
	}
	.step_item h3{
		font-size: 20px;
	}
	.step_item_in{
		display: block;
	}
	.step_img{
		width: 100%;
		margin-bottom: 20px;
	}
	.step_text{
		width: 100%;
	}
	.reservation_btn{
		margin-top: 20px;
	}
}
.symptoms_img{
	text-align: center;
	margin-bottom: 10px;
}
.symptoms_img img{
	max-width: 180px;
}
.symptoms_item.bg_light_green{
	background-color: #F4FAF6;
}
@media screen and (max-width: 1024px) {
	.symptoms_img img{
		max-width: 120px;
	}
}
.table_div{
	font-size: 14px;
	overflow-x: auto;
}
.table_div table{
	width: 100%;
	min-width: 1000px;
}
.table_div table thead th{
	background-color: var(--primary-green);
	border: 1px solid #ccc;
	color: #fff;
	padding: 20px;
}
.table_div table tbody th{
	background-color: #f2f2f2;
	border: 1px solid #ccc;
	padding: 20px;
}
.table_div table tbody td{
	border: 1px solid #ccc;
	padding: 20px;
}
@media screen and (max-width: 1024px) {
	.table_div{
		font-size: 12px;
	}
	.table_div table thead th{
		padding: 10px;
	}
	.table_div table tbody th{
		padding: 10px;
	}
	.table_div table tbody td{
		padding: 10px;
	}
}
.implant_diff_item.bg_light_green{
	background-color: #F4FAF6;
}

.article_main{
	display: flex;
	justify-content: space-between;
}
.article_content{
	width: calc(100% - 380px);
}
.article_list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}
.article_item{
	width: 320px;
}
.article_item_img{
	margin-bottom: 10px;
	height: 190px;
}
.article_item_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article_item_date{
	font-size: 14px;
	margin-bottom: 10px;
}
.article_item_date span{
	font-size: 12px;
	background-color: var(--primary-green);
	color: #fff;
	padding: 5px 10px;
	border-radius: 20px;
	margin-left: 10px;
}
.article_item h4{
	font-size: 18px;
	margin-bottom: 5px;
}

.cat_list{
	width: 320px;
}
.cat_list h3{
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--primary-green);
	letter-spacing: 1px;
}
.cat_list ul{
	list-style: none;
}
.cat_list ul li{
	border-bottom: 1px solid #ccc;
}
.cat_list ul li:first-child{
	border-top: 1px solid #ccc;
}
.cat_list ul li a{
	display: block;
	padding: 10px;
	color: #666;
}
.cat_list ul li a:hover{
	color: var(--primary-green);
}
@media screen and (max-width: 1024px) {
	.article_main{
		display: block;
	}
	.article_content{
		width: 100%;
	}
	.article_list{
		gap: 20px;
	}
	.article_item_img{
		height: 60vw;
		max-height: 180px;
	}

	.cat_list{
		margin-top: 50px;
	}
	.cat_list h3{
		margin-bottom: 10px;
	}
	.cat_list ul li a{
		padding: 5px;
	}
	.article_item{
		width: 100%;
	}
	.article_item_date{
		font-size: 12px;
	}
	.article_item_date span{
		padding: 3px 10px;
		margin-left: 5px;
	}
	.article_item h4{
		font-size: 16px;
	}
}
.article_single_title{
	font-size: 32px;
	margin-bottom: 50px;
}
.article_single_img{
	margin-bottom: 50px;
	text-align: center;
}
.article_single_content h2{
	font-size: 24px;
	margin-bottom: 20px;
	background-color: var(--primary-green);
	color: #fff;
	padding: 10px;
}
.article_single_content h3{
	font-size: 20px;
	margin-bottom: 20px;
	border-bottom: 2px solid var(--primary-green);
	padding-bottom: 5px;
}
.article_single_content h4{
	font-size: 18px;
	border-left: 2px solid var(--primary-green);
	padding-left: 10px;
	margin-bottom: 20px;
}
.article_single_content p{
	font-size: 14px;
}
@media screen and (max-width: 1024px) {
	.article_single_title{
		font-size: 24px;
		margin-bottom: 20px;
	}
	.article_single_img{
		margin-bottom: 20px;
	}
	.article_single_content h2{
		font-size: 20px;
	}
	.article_single_content h3{
		font-size: 18px;
	}
	.article_single_content h4{
		font-size: 16px;
	}
}
.privacy h3{
	margin-bottom: 10px;
}
.price_table table thead th{
	padding: 15px 10px;
}
.price_table table thead th span{
	font-size: 80%;
}
.price_table table tbody th,.price_table table tbody td{
	text-align: center;
	padding: 15px 10px;
}
.price_table td:last-child{
	text-align: left;
	max-width: 300px;
}
.price_table td:nth-child(3){
	text-align: center;
}
.deduction_ttl{
	font-size: 32px;
	text-align: center;
}
.deduction_div{
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.deduction_div>p{
	font-size: 32px;
}
.deduction_item{
	width: 300px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--primary-green);
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	background-color: #fff;
}
.deduction_item:first-child{
	font-size: 18px;
	background-color: var(--primary-green);
	color: #fff;
	letter-spacing: 1px;
}
.deduction_note{
	display: flex;
	justify-content: space-between;
}
.deduction_note ul{
	width: 500px;
	background-color: #fff;
	padding: 25px 20px;
	border: 1px solid var(--primary-green);
}
.deduction_note ul li{
	list-style: none;
}
.deduction_note ul li::before{
	content: "◼︎";
	color: var(--primary-green);
	margin-right: 5px;
}
@media screen and (max-width: 1024px) {
	.price_table table tbody th, .price_table table tbody td{
		padding: 5px;
	}
	.price_table table thead th{
		padding: 5px;
	}
	.deduction_ttl{
		font-size: 24px;
	}
	.deduction_div{
		display: block;
	}
	.deduction_div>p{
		font-size: 24px;
	}
	.deduction_item{
		margin: 0 auto;
	}
	.deduction_div>p{
		text-align: center;
	}
	.deduction_note{
		display: block;
	}
	.deduction_note ul{
		width: 100%;
		margin-top: 20px;
	}
	.deduction_note ul li{
		font-size: 14px;
	}
}
.reservation_tel_btn{
	width: 100%;
	display: block;
	padding: 20px 0;
	background-color: var(--primary-green);
	color: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 32px;
	line-height: 1;
}
.reservation_tel_btn span{
	font-size: 18px;
	font-weight: 400;
}
.reservation_tel_btn p{
	display: flex;
	align-items: center;
	justify-content: center;
}
.reservation_tel_btn img{
	width: 32px;
	margin-right: 5px;
	vertical-align: middle;
}
.reservation_web_btn{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 0;
	background-color: var(--primary-green);
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 28px;
}
.reservation_web_btn img{
	width: 32px;
	margin-right: 10px;
	vertical-align: middle;
}
.reservation_item{
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.reservation_item:last-child{
	margin-bottom: 0;
}
.reservation_item_ttl{
	width: 250px;
}
.reservation_item_ttl p{
	font-size: 16px;
	color: var(--primary-green);
}
.reservation_item_ttl h3{
	font-size: 20px;
}
.reservation_item_img{
	width: 250px;
}
.reservation_item_text{
	width: calc(100% - 640px);
}
@media screen and (max-width: 1024px) {
	.reservation_tel_btn{
		font-size: 24px;
		padding: 15px 0;
	}
	.reservation_tel_btn span{
		font-size: 14px;
		margin-top: 5px;
	}
	.reservation_web_btn{
		font-size: 20px;
	}
	.reservation_tel_btn img{
		width: 28px;
	}
	.reservation_web_btn{
		padding: 20px 0;
	}
	.reservation_web_btn img{
		width: 26px;
	}
	.reservation_item{
		display: block;
	}
	.reservation_item_ttl{
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}
	.reservation_item_img{
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}
	.reservation_item_img img{
		max-width: 250px;
	}
	.reservation_item_text{
		width: 100%;
	}
}
.flex_img h3{
	text-align: left;
	font-size: 24px;
}
.recruit_img_box{
	display: flex;
}
.recruit_img_box div{
	width: 33.33%;
}
.recruit_img_box img{
	width: 100%;
}

.recruit_flex{
	display: flex;
	justify-content: space-between;
}
.recruit_info_list{
	width: 510px;
}
.recruit_info h3{
	color: var(--primary-green);
	font-size: 24px;
	margin-bottom: 20px;
}
.recruit_info_item{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.recruit_info_item:last-child{
	margin-bottom: 0;
}
.recruit_info_item h4{
	width: 120px;
	position: relative;
}
.recruit_info_item h4::after{
	content: '';
	width: 50px;
	height: 1px;
	background-color: #ccc;
	position: absolute;
	right: 0;
	top: 12px;
}
.recruit_info_item p{
	width: calc(100% - 140px);
}
@media screen and (max-width: 1024px) {
	.recruit_flex{
		display: block;
	}
	.recruit_info{
		width: 100%;
		margin-bottom: 30px;
	}
	.recruit_info_list{
		width: 100%;
	}
	.recruit_info:last-child{
		margin-bottom: 0;
	}
	.recruit_info h3{
		font-size: 20px;
	}
	.flex_img h3{
		font-size: 20px;
	}
}
.staff_info_item{
	display: flex;
	margin-top: 20px;
}
.staff_info{
	font-size: 14px;
}
.staff .flex_img img{
	max-height: initial;
}
.staff .flex_text h3{
	font-size: 20px;
}
.staff_info_item h4{
	width: 100px;
}
.staff_info_item p{
	width: calc(100% - 120px);
}
@media screen and (max-width: 1024px) {
	.staff_info_item{
		display: block;
	}
}

.doctor_list{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.doctor_item{
	width: 320px;
}
.doctor_img{
	width: 100%;
	text-align: center;
}
.doctor_img img{
	max-height: 360px;
}
.doctor_info{
	width: 100%;
}
.doctor_info_sub{
	font-size: 14px;
	color: var(--primary-green);
	margin-top: 10px;
}
.doctor_info h4{
	font-size: 20px;
}
.doctor_info h4 span{
	font-size: 14px;
	color: #666;
	margin-left: 10px;
}
.doctor_info_text{
	font-size: 14px;
}

@media screen and (max-width: 1024px) {
	.doctor_list{
		display: block;
	}
	.doctor_item{
		width: 100%;
		margin-bottom: 20px;
	}
	.doctor_item:last-child{
		margin-bottom: 0;
	}
	.doctor_info_sub{
		font-size: 12px;
	}
}