/* 共通 ------------------------------------------------ */
html {
  font-size: 6.51vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 13.021vw;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
body {
  font-family: "Noto Sans JP", system-ui, -apple-system,
	BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 0.21rem;
  line-height: 2;
  color: #000;
}
.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.wrap {
  width: min(11.6rem, 90%);
  margin: 0 auto;
}
.pop {
	font-family: "Poppins", sans-serif;
}
.heading {
	text-align: center;
}
.en_title {
  display: inline-block;
  position: relative;
	margin-bottom: 0.1rem;
	font-family: "Poppins", sans-serif;
	font-size: 0.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #008040;
	text-align: center;
}
.en_title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.12em;
  background: #008040;
}
.en_title::before {
  content: "";
  position: absolute;
  left: 45%;
  bottom: -0.5em;
  width: 0.12em;
  height: 0.6em;
  background: #008040;
  transform: translateX(-50%) skewX(20deg);
}
.jp_title {
	font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #008040;
	text-align: center;
}
@media screen and (max-width: 768px) {
	body {
    font-size: 0.24rem;
    line-height: 1.8;
  }
  .wrap {
    width: 94%;
  }
}
/* header ----------------------------------------------- */
.l-header {
  background: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0.90rem;
	padding: 0 0.4rem;
}
.header-logo {
  width: 4rem;
}
.header-logo img {
  width: 100%;
}
.header-cta {
  gap: 0.1rem;
}
.header-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
	width: 2rem;
	height: 0.53rem;
  padding: 0.14rem;
  border-radius: 5rem;
  font-size: 0.16rem;
  font-weight: 700;
  line-height: 1.6;
	color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.header-cta .btn:hover {
  transform: scale3d(1.04, 1.04, 1);
}
.header-cta .btn-tel {
	background: #fff;
	border: 1px solid #FF520E;
	color: #FF520E;
}
.header-cta .btn-web {
	background: #F6B125;
	background: linear-gradient(90deg, rgba(246, 177, 37, 1) 0%, rgba(255, 82, 14, 1) 100%);
}
.header-cta .btn-app {
	background: #00F411;
	background: linear-gradient(90deg, rgba(0, 244, 17, 1) 0%, rgba(2, 172, 21, 1) 100%);
}
.header-lang .lang-link {
	display: inline-flex;
  align-items: center;
  justify-content: center;
	width: 0.6rem;
	height: 0.53rem;
  padding: 0.14rem;
	border: 2px solid #008040;
  font-size: 0.16rem;
	font-weight: 700;
	color: #008040;
  text-decoration: none;
}
.lang-link.jp {
	border-right: 1px solid #fff;
  border-radius: 3rem 0 0 3rem;
}
.lang-link.en {
	border-left: 1px solid #fff;
	border-radius: 0 3rem 3rem 0;
}
.header-lang .lang-link.is-active {
	background: #008040;
	color: #fff;
}
@media screen and (max-width: 768px) {
  .header-inner {
    height: auto;
    padding: 0.16rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.24rem;
  }
  .header-logo {
    width: 4rem;
  }
  .header-cta {
    width: 100%;
    display: flex;
    gap: 0.08rem;
  }
  .header-cta .btn {
    flex: 1;
    width: auto;
    height: 0.5rem;
    font-size: 0.25rem;
    padding-inline: 0.16rem;
  }
	.header-lang {
		position: absolute;
		top: 0.16rem;
		right: 0.16rem;
	}
	.header-lang .lang-link {
		font-size: 0.2rem;
	}
}

/* FV --------------------------------------------------- */
.fv-inner {
  display: flex;
  justify-content: space-between;
}
.fv-copy {
  width: 44.7%;
	background: url("../img/fv-copy_bg.webp") top center;
	background-size: cover;
	padding: 0.7555rem 0.78rem;
	text-align: center;
}
.fv-label {
	text-align: center;
}
.fv-label img {
	width: 4.13rem;
}
.fv-title {
  margin-bottom: 0.15rem;
  font-size: 0.66rem;
	font-weight: 700;
  line-height: 1.3;
	color: #fff;
}
.fv-point {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
	justify-content: center;
  gap: 0.06rem;
  font-size: 0.18rem;
	font-weight: 700;
	line-height: 1.3;
}
.fv-point li {
  background: #FDF303;
  border-radius: 0.3rem;
  padding: 0.06rem 0.2rem;
	color: #008040;
}
.fv-badges {
  display: flex;
  flex-wrap: wrap;
	justify-content: center;
  gap: 0.08rem;
  margin-top: 0.3rem;
}
.fv-badges .badge {
  width: 1.57rem;
  height: 1.57rem;
}
.fv-image {
	position: relative;
  width: 55.3%;
	background: url("../img/fv.webp") center center;
	background-size: cover;
}
.fv-nav {
  position: absolute;
	top: 0.2rem;
	right: 6%;
	left: 6%;
	width: 88%;
}
.fv-nav ul {
  display: flex;
	justify-content: space-between;
	padding: 0 0.4rem;
	background: #fff;
	border-radius: 0.5rem;
}
.fv-nav ul li {
  line-height: 1;
}
.fv-nav ul li a {
	display: block;
	padding: 0.2rem 0;
  font-size: 0.16rem;
	font-weight: 700;
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 768px) {
	.fv-inner {
    flex-direction: column;
  }
  .fv-copy {
    width: 100%;
    padding: 0.5rem 0.2rem 0.7rem;
  }
  .fv-label img {
    width: 5rem;
  }
  .fv-title {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  .fv-point {
    font-size: 0.25rem;
  }
  .fv-badges .badge {
    width: 2.1rem;
    height: 2.1rem;
  }
  .fv-image {
    width: 100%;
    min-height: 5.5rem;
  }
  .fv-nav {
    top: -0.37rem;
    left: 4%;
    right: 4%;
    width: 92%;
  }
  .fv-nav ul {
    padding: 0.12rem 0.24rem;
  }
  .fv-nav ul li a {
    font-size: 0.18rem;
    padding: 0.16rem 0;
  }	
}

/* 実績 -------------------------------------------------- */
.sec-achievement {
	padding: 0.5rem 0;
  background: #E4F3F2;
}
.sec-achievement .wrap {
	padding: 0 0.1rem;
}
.sec-achievement .wrap h2 {
	margin-bottom: 0.24rem;
	text-align: center;
}
.sec-achievement .wrap h2 img {
	width: 9.10rem;
}
.sec-achievement .wrap p {
	font-size: 0.11rem;
	font-weight: 400;
	line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .sec-achievement {
    padding: 0.6rem 0;
  }
  .sec-achievement .wrap h2 img {
    width: 100%;
  }
  .sec-achievement .wrap p {
    font-size: 0.22rem;
		line-height: 1.8;
  }
}
/* INFO + ACCESS ---------------------------------------- */
.sec-info-access {
	padding: 1.2rem 0 0.4rem;
  background: #F8F7F3;
}
.info-access-inner {
  gap: 0.8rem 0;
}
.info-box {
	position: relative;
	z-index: 1;
  width: 100%;
	box-shadow: 10px 10px 34px 0px rgba(0,0,0,0.11);
}
.info-box_l {
	width: 48.5%;
}
.info-box_l img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.info-box_r {
	width: 51.5%;
	background: #fff;
}
.info-box_r h2 {
	margin-bottom: 0.3rem;
	padding-left: 0.3rem;
	background: #008040;
	font-size: 0.32rem;
	font-weight: 700;
	color: #fff;
}
.info-list {
	margin-bottom: 0.3rem;
	margin-left: 0.3rem;
}
.info-list li {
  position: relative;
	margin-bottom: 0.24rem;
	padding-left: 0.48rem;
	list-style-type: none;
	font-size: 0.2rem;
	font-weight: 700;
	line-height: 1.3;
	color: #008040;
}
.info-list li:last-of-type {
	margin-bottom: 0;
}
.info-list li::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 0.36rem;
  height: 0.36rem;
  background: url("../img/info-list_icon.svg") no-repeat center center;
  background-size: cover;
}

.access-box {
	position: relative;
	z-index: 0;
	justify-content: space-between;
  width: 100%;
  padding: 0.8rem;
  background: #F8F7F3;
}
.access-detail {
  width: 52%;
}
.access-detail h3 {
	margin-bottom: 0.27rem;
	font-size: 0.2rem;
  font-weight: 700;
	line-height: 1.2;
	color: #008040;
}
.access-detail address {
  margin-bottom: 0.26rem;
	font-size: 0.16rem;
	font-style: normal;
  font-weight: 500;
	line-height: 1.2;
}
.access-detail a.access_tel {
	position: relative;
  margin-bottom: 0.26rem;
	padding-left: 0.51rem;
	font-family: "Poppins", sans-serif;
	font-size: 0.25rem;
	font-style: normal;
  font-weight: 700;
	line-height: 1;
	text-decoration: none;
	color: #008040;
}
.access-detail a.access_tel::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 0.36rem;
  height: 0.36rem;
  background: url("../img/access_tel_icon_01.svg") no-repeat center center;
  background-size: cover;
}
.access-detail .open {
  width: 100%;
	margin-top: 0.25rem;
	padding: 0.08rem 0.2rem 0.2rem 0.2rem;
	background: #fff;
}
.access-detail .hour {
  width: 100%;
	margin-bottom: 0.08rem;
	color: #008040;
  text-align: center;
}
.access-detail .hour th {
	padding-top: 0.1rem;
  padding-bottom:  0.1rem;
  border-bottom: 1px solid rgba(0,128,64.3);
  font-size: 0.16rem;
  font-weight: 700;
	text-align: center;
}
.access-detail .hour tbody tr th:first-of-type {
  width: 27%;
	color: #000;
  text-align: left;
}
.access-detail .hour tbody tr td:first-of-type {
	padding-right: 10px;
  font-family: "Poppins", sans-serif;
	font-size: 0.16rem;
	color: #000;
  text-align: left;
}
.access-detail .hour td {
	padding-top: 0.1rem;
  padding-bottom:  0.1rem;
  border-bottom: 1px solid rgba(0,128,64.3);
  font-size: 0.18rem;
	font-weight: 700;
  vertical-align: middle;
	text-align: center;
}
.access-detail p {
  font-size: 0.12rem;
	font-weight: 700;
	color: #008040;
}
.access-map {
  width: 44%;
}
.access-map iframe {
  width: 100%;
	height: 100%;
}

.access-btns {
  display: flex;
	justify-content: center;
	align-items: center;
  gap: 0.16rem;
	width: 100%;
	margin-top: 0.6rem;
}
.access-btn {
	position: relative;
  display: flex;
	justify-content: center;
	align-items: center;
	width: 2.8rem;
	height: 0.8rem;
	padding-left: 0.25rem;
	border-radius: 0.5rem;
	font-size: 0.18rem;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	color: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.access-btn:hover {
  transform: scale3d(1.04, 1.04, 1);
}
.access-btn::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0.1rem;
	transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.access-btn-tel {
	background: #fff;
	border: 1px solid #FF520E;
	color: #FF520E;
}
.access-btn-tel::before {
	background-image: url("../img/access_tel.svg");
}
.access-btn-web {
	background: #F6B125;
	background: linear-gradient(90deg, rgba(246, 177, 37, 1) 0%, rgba(255, 82, 14, 1) 100%);
}
.access-btn-web::before {
	background-image: url("../img/access_web.svg");
}
.access-btn-app {
	background: #00F411;
	background: linear-gradient(90deg, rgba(0, 244, 17, 1) 0%, rgba(2, 172, 21, 1) 100%);
}
.access-btn-app::before {
	background-image: url("../img/access_app.svg");
}
@media screen and (max-width: 768px) {
  .sec-info-access {
    padding: 0.8rem 0 0.6rem;
  }
  .info-box {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  }
  .info-box_l,
  .info-box_r {
    width: 100%;
  }
  .info-box_r h2 {
    font-size: 0.4rem;
    padding: 0.18rem 0.24rem;
  }
  .info-list {
    margin: 0.24rem 0.24rem 0.3rem;
  }
  .info-list li {
    font-size: 0.28rem;
    margin-bottom: 0.18rem;
    padding-left: 0.5rem;
  }
  .access-box {
    flex-direction: column;
    padding: 0.6rem 0.2rem;
  }
  .access-detail,
  .access-map {
    width: 100%;
  }
  .access-map {
    margin-top: 0.4rem;
    height: 3.8rem;
  }
  .access-map iframe {
    height: 100%;
  }
  .access-detail h3 {
    font-size: 0.3rem;
		line-height: 1.5;
  }
	.access-detail address {
		font-size: 0.29rem;
		line-height: 1.5;
	}
  .access-detail a.access_tel {
		padding-left: 0.7rem;
    font-size: 0.6rem;
  }
	.access-detail a.access_tel::after {
		width: 0.6rem;
		height: 0.6rem;
	}
  .access-detail .hour th,
  .access-detail .hour td {
    font-size: 0.3rem;
    padding-top: 0.08rem;
    padding-bottom: 0.08rem;
  }
	.access-detail .hour tbody tr td:first-of-type {
		font-size: 0.25rem;
	}
	.access-detail p {
		font-size: 0.25rem;
	}
  .access-btns {
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.4rem;
  }
  .access-btn {
    width: 100%;
    max-width: none;
    justify-content: center;
    padding-left: 0;
		font-size: 0.35rem;
  }
	.access-btn::before {
    left: 0.2rem;
		width: 0.5rem;
		height: 0.5rem;
	}
}
/* REASON ------------------------------------------------ */
.sec-reason {
	padding: 1.2rem 0;
	background: #008040;
}
.sec-reason .heading {
	margin-bottom: 0.5rem;
}
.sec-reason .heading .jp_title {
	color: #fff;
}
.sec-reason .en_title, .jp_title span {
	color: #FDF303;
}
.sec-reason .en_title::after {
  background: #FDF303;
}
.sec-reason .en_title::before {
  background: #FDF303;
}
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.reason-item {
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
}
.reason-text {
  width: 58%;
	padding: 0.5rem;
}
.reason-label {
	display: inline-block;
	margin-bottom: 0.2rem;
	padding: 0 0.075rem;
	background: #FDF303;
	font-family: "Poppins", sans-serif;
  font-size: 0.2rem;
  font-weight: 700;
  color: #008040;
}
.reason-text h3 {
	margin-bottom: 0.34rem;
  font-size: 0.32rem;
	font-weight: 700;
	line-height: 1.4;
	color: #008040;
}
.reason-text p {
  font-size: 0.16rem;
	font-weight: 500;
	line-height: 1.4;
}
.reason-text p.small {
	margin-top: 0.25rem;
  font-size: 0.12rem;
	color: rgba(0,0,0,.6);
}
.reason-img {
  width: 42%;
}
.reason-img img {
  width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
  .sec-reason {
    padding: 0.8rem 0;
  }
  .sec-reason .heading {
    margin-bottom: 0.4rem;
  }
  .reason-list {
    gap: 0.32rem;
  }
  .reason-item {
    flex-direction: column;
  }
  .reason-text,
  .reason-img {
    width: 100%;
  }
  .reason-text {
    padding: 0.4rem 0.32rem;
  }
	.reason-label {
		font-size: 0.25rem;
	}
  .reason-text h3 {
    font-size: 0.35rem;
  }
  .reason-text p {
    font-size: 0.28rem;
		line-height: 1.8;
  }
	.reason-text p.small {
		font-size: 0.2rem;
	}
}

/* CASE -------------------------------------------------- */
.sec-case {
	padding: 1.2rem 0;
  background: #E4F3F2;
}
.sec-case .heading {
	margin-bottom: 0.5rem;
}
.case-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.2rem;
}
.case-item {
	list-style-type: none;
}
.case-item figure {
  height: 1.8rem;
	border-radius: 0.12rem;
}
.case-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	border-radius: 0.12rem;
}
.case-label {
	position: relative;
	padding: 0.2rem 0.3rem 0.2rem 0;
  font-size: 0.2rem;
	font-weight: 700;
	line-height: 1.5;
}
.case-label::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  background: url("../img/case_arrow.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .sec-case {
    padding: 0.8rem 0 1rem;
  }
  .case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.18rem;
  }
  .case-item figure {
    height: auto;
  }
  .case-label {
    font-size: 0.3rem;
    padding-right: 0.26rem;
  }
	.case-label::after {
		width: 0.5rem;
		height: 0.5rem;
	}
}

/* BEFORE & AFTER --------------------------------------- */
.sec-ba {
	padding: 1.2rem 0;
  background: #F8F7F3;
}
.sec-ba .heading {
	margin-bottom: 0.5rem;
}
.ba-grid {
  gap: 0.4rem;
}
.ba-item {
  width: 48%;
}
.ba-item img {
  width: 100%;
	margin-bottom: 0.11rem;
}
dl.naiyou {
	padding: 0.15rem 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
	font-size: 0.16rem;
	line-height: 1.3;
	letter-spacing: 0.06em;
}
dl.naiyou dt {
  width: 17%;
	font-weight: 700;
	text-align: center;
}
dl.naiyou dt span {
	display: block;
	padding: 0.03rem;
  background: #008040;
	border-radius: 4px;
	color: #FDF303;
}
dl.naiyou dd {
  width: 83%;
	padding-left: 0.12rem;
	font-weight: 500;
}
.ba-item p {
	margin-top: 0.15rem;
	margin-bottom: 0.15rem;
	font-size: 0.14rem;
	font-weight: 400;
  color: rgba(0,0,0,.5);
}
dl.sejyutusya {
	font-size: 0.14rem;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.06em;
}
dl.sejyutusya dt {
	align-items: center;
	justify-content: center;
  width: 14%;
	background: #908D82;
	border-radius: 4px;
	color: #fff;
	text-align: center;
}
dl.sejyutusya dd {
  width: 86%;
	padding: 0.15rem;
	background: #E6E2D2;
	border-radius: 0 4px 4px 0;
	color: #8A8160;
}
@media screen and (max-width: 768px) {
	.ba-grid {
    gap: 0.3rem;
  }
  .ba-item {
    width: 100%;
  }
	dl.naiyou {
		padding: 0.2rem 0;
		font-size: 0.25rem;
	}
	dl.naiyou dt {
		width: 21%;
	}
	dl.naiyou dt span {
		padding: 0.05rem;
	}
	dl.naiyou dd {
		width: 79%;
		padding-left: 0.2rem;
	}
	.ba-item p {
		margin-top: 0.2rem;
		margin-bottom: 0.2rem;
		font-size: 0.2rem;
	}
	dl.sejyutusya {
		font-size: 0.2rem;
	}
}
/* PRICE ------------------------------------------------- */
.sec-price {
	padding: 1.2rem 0;
  background: #fff;
}
.sec-price .heading {
	margin-bottom: 0.5rem;
}
.price_head {
	justify-content: space-between;
	margin-bottom: 0.4rem;
}
.price_child {
	width: 49%;
	background: #F8F7F3;
	text-align: center;
}
.price_child h3 {
	background: #F57C43;
	font-size: 0.28rem;
	font-weight: 700;
	color: #fff;
}
.price_child p {
	padding: 0.2rem;
	font-family: "Poppins", sans-serif;
	font-size: 0.5rem;
	font-weight: 700;
	color: #F57C43;
}
.price_child:last-of-type {
	background: rgba(0,0,0,.1);
}
.price_child:last-of-type h3 {
	background: #000;
}
.price_child:last-of-type p {
	color: #000;
}
.sec-price table {
	width: 100%;
}
.sec-price table tr:nth-of-type(even) {
	background: #E4F4F1;
}
.sec-price table tr th {
	width: 50%;
	padding: 0.05rem 0;
  background: #008040;
	border: 4px solid #008040;
	border-top: none;
	border-right: 4px solid #fff;
	border-bottom: none;
	font-size: 0.28rem;
	font-weight: 700;
	color: #fff;
  text-align: center;
}
.sec-price table tr th:last-child {
	border-right: 4px solid #008040;
	border-left: 4px solid #fff;
}
.sec-price table tr td {
	width: 50%;
  border: 4px solid #ccc;
  padding: 0.18rem;
  font-size: 0.20rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-align: center;
}
.sec-price table tr:nth-of-type(2) td {
	border-top: none;
}
.sec-price table tr td:last-child {
	font-family: "Poppins", sans-serif;
  font-size: 0.30rem;
}
@media screen and (max-width: 768px) {
  .sec-price {
    padding: 0.8rem 0 1rem;
  }
  .price_head {
    flex-direction: column;
    gap: 0.3rem;
  }
  .price_child {
    width: 100%;
  }
	.price_child h3 {
		font-size: 0.4rem;
	}
  .price_child p {
    font-size: 0.55rem;
  }
  .sec-price table tr th {
		width: 70%;
    font-size: 0.3rem;
    padding: 0.08rem 0;
		border: 1px solid #008040;
		border-top: none;
		border-right: 1px solid #fff;
		border-bottom: none;
  }
	.sec-price table tr th:last-child {
		border-right: 1px solid #008040;
		border-left: 1px solid #fff;
	}
  .sec-price table tr td {
		width: 30%;
    font-size: 0.25rem;
    padding: 0.14rem;
		border: 1px solid #ccc;
  }
  .sec-price table tr td:last-child {
    font-size: 0.3rem;
  }
}
/* DOCTOR ------------------------------------------------ */
.doctor-photo {
  width: 43%;
}
.doctor-photo img {
  width: 100%;
}
.doctor-text {
  width: 57%;
	padding: 0.8rem 0.8rem 0.8rem 0.6rem;
	background: #008040;
}
.doctor-label {
	display: inline-flex;
	align-items: center;
	margin-bottom: 0.4rem;
	padding: 0 0.2rem;
	background: #FDF303;
  font-size: 0.30rem;
  font-weight: 700;
	color: #008040;
}
.doctor-label .en {
	margin-left: 0.12rem;
	font-family: "Poppins", sans-serif;
  font-size: 0.20rem;
}
.doctor-name {
	margin-bottom: 0.1rem;
  font-size: 0.5rem;
  font-weight: 700;
	color: #FDF303;
}
.doctor-name span {
	margin-left: 0.15rem;
  font-size: 0.3rem;
}
.doctor-text h3 {
	margin-bottom: 0.4rem;
  font-size: 0.28rem;
  font-weight: 700;
	line-height: 1.5;
	color: #FDF303;
}
.doctor-text p {
  font-size: 0.18rem;
  font-weight: 500;
	line-height: 1.9;
	color: #fff;
}
@media screen and (max-width: 768px) {
  .doctor-photo,
  .doctor-text {
    width: 100%;
  }
  .doctor-text {
    padding: 0.6rem 0.4rem;
    margin-top: 0.4rem;
  }
	.doctor-label {
		font-size: 0.45rem;
	}
	.doctor-label .en {
		font-size: 0.35rem;
	}
  .doctor-name {
    font-size: 0.65rem;
  }
  .doctor-name span {
    font-size: 0.4rem;
  }
  .doctor-text h3 {
    font-size: 0.33rem;
  }
  .doctor-text p {
    font-size: 0.28rem;
  }	
}

/* GALLERY ---------------------------------------------- */
.sec-gallery {
  background: #fff;
  padding-top: 0.2rem;
}
.gallery-slider {
  overflow: hidden;
}
.gallery-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.gallery-slider .swiper-slide {
  width: 6.10rem;
}
.gallery-slider figure {
  overflow: hidden;
}
.gallery-slider img {
  display: block;
  width: 100%;
  height: auto;
}
.sec-gallery_link {
	margin-top: 0.2rem;
	padding-bottom: 0.03rem;
	background: #E4F4F1;
	text-align: center;
}
.sec-gallery_link a {
	position: relative;
	padding-right: 0.33rem;
	background: #E4F4F1;
	font-size: 0.16rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #008040;
}
.sec-gallery_link a::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  background: url("../img/case_arrow.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
	.sec-gallery {
		padding-top: 0.3rem;
	}
	.gallery-slider .swiper-slide {
    width: 6rem;
  }
	.sec-gallery_link {
		margin-top: 0.3rem;
		padding-top: 0.2rem;
		padding-bottom: 0.2rem;
	}
  .sec-gallery_link a {
		padding-right: 0.5rem;
    font-size: 0.3rem;
  }
	.sec-gallery_link a::after {
		width: 0.3rem;
		height: 0.3rem;
	}
}

/* access--bottom ----------------------------------------------- */
.sec-info-access--bottom {
	padding: 0.8rem 0;
}
@media screen and (max-width: 768px) {
	  .sec-info-access--bottom {
    padding: 0.6rem 0 0.8rem;
  }
}
/* fiexd ----------------------------------------------- */
.fiexd {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 200;
  width: 100%;
  padding: 0.12rem 0 0.11rem;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.fiexd.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.fiexd .access-btns {
	margin-top: 0;
}
.fiexd .access-btn {
	width: 2rem;
	height: 0.5rem;
	padding-left: 0.2rem;
}
.fiexd .access-btn::before {
	left: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
}
@media screen and (max-width: 768px) {
	.fiexd {
		padding: 0.2rem 3%;
	}
	.fiexd .access-btns {
		flex-direction: row;
		gap: 0.5%;
	}
	.fiexd .access-btn {
		width: 33%;
		height: 0.6rem;
		padding-left: 0.2rem;
		font-size: 0.2rem;
	}
}
/* footer ----------------------------------------------- */
footer {
	padding: 0.98rem 0 0.5rem;
	background: #E4F4F1;
	text-align: center;
}
footer h2 {
	margin-bottom: 0.5rem;
}
footer h2 img {
	width: 4rem;
}
.footer-nav {
	margin-bottom: 0.5rem;
}
.footer-nav ul.flex {
	justify-content: center;
	gap: 0.52rem;
}
.footer-nav ul li a {
	font-size: 0.16rem;
	font-weight: 700;
	color: #000;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 0.8rem 5% 0.5rem;
  }
	footer h2 img {
		width: 4.5rem;
	}
  .footer-nav ul.flex {
    flex-wrap: wrap;
    gap: 0.24rem 0.6rem;
  }

  .footer-nav ul li a {
    font-size: 0.28rem;
  }	
}





