@charset "UTF-8";
/*------------------------------------------------------------
  Clearfix
------------------------------------------------------------*/
/*------------------------------------------------------------
  Font
------------------------------------------------------------*/

@font-face {
    font-family: 'Roboto';
    src: url('../../fonts/Roboto-Bold.eot');
    src: url('../../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
    url('../../fonts/Roboto-Bold.woff2') format('woff2'),
    url('../../fonts/Roboto-Bold.woff') format('woff'),
    url('../../fonts/Roboto-Bold.ttf') format('truetype'),
    url('../../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../../fonts/Roboto-Regular.eot');
    src: url('../../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('../../fonts/Roboto-Regular.woff2') format('woff2'),
    url('../../fonts/Roboto-Regular.woff') format('woff'),
    url('../../fonts/Roboto-Regular.ttf') format('truetype'),
    url('../../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/*------------------------------------------------------------
  Media
------------------------------------------------------------*/
/*------------------------------------------------------------
  Flex Box
------------------------------------------------------------*/
/*------------------------------------------------------------
  Reset
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
    font-size: 1em;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

html {
    font-size: 62.5%;
}

body {
    -webkit-text-size-adjust: 100%;
}
body * {
    box-sizing: border-box;
}

body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif !important;
    color: #2B2B2B;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

table,
input,
textarea,
select,
option {
    line-height: 1.1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
    height: auto;
}

a {
    transition: 0.3s ease-in-out;
    text-decoration: none;
}
.wpcf7-list-item{
    margin-left: 0 !important
}
@media screen and (min-width: 768px) {
    .trans:hover {
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }
}

form label {
    cursor: pointer;
}

.wrapper {
    max-width: 1220px;
    padding: 0 10px;
    margin: 0 auto;
}

.is-pc {
    display: block;
}
@media screen and (max-width: 767px) {
    .is-pc {
        display: none !important;
    }
}

.is-sp {
    display: none !important;
}
@media screen and (max-width: 767px) {
    .is-sp {
        display: block !important;
    }
}

.u-center {
    text-align: center !important;
}

.u-left {
    text-align: left !important;
}

main {
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    main {
        padding-top: 57px;
    }
}
@media screen and (max-width: 500px) {
    main {
        padding-top: 53px;
    }
}

@font-face {
    font-family: Montserrat;
    src: url(Montserrat-Black.ttf);
}
/*------------------------------------------------------------
  Layout
------------------------------------------------------------*/
.l-main {
    width: 100%;
    min-height: 600px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/*------------------------------------------------------------
  Header
------------------------------------------------------------*/
.nav-icon {
    width: 30px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 17px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
@media screen and (min-width: 768px) {
    .nav-icon {
        display: none;
    }
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    left: 0;
}

.nav-icon span:nth-child(1) {
    top: 0px;
}

.nav-icon span:nth-child(2) {
    top: 10px;
}

.nav-icon span:nth-child(3) {
    top: 20px;
}

.nav-icon.open span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.nav-icon.open span:nth-child(2) {
    opacity: 0;
    left: -30px;
}

.nav-icon.open span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.c-header {
    padding: 13px 0 0;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 120px;
}
.c-header_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 8px;
}
.c-header_contact {
    display: flex;
    align-items: center;
}
.c-header .hotline {
    display: flex;
    align-items: center;
}
.c-header .hotline span {
    font-size: 22px;
    font-weight: bold;
    line-height: 33px;
    background: linear-gradient(270deg, #FF1F1F 0%, rgba(255, 105, 105, 0.932292) 50%, #FF1F1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-right: 10px;
}
.c-header .hotline_phone {
    display: flex;
    align-items: center;
    background: linear-gradient(270deg, #FF1F1F 0%, rgba(255, 105, 105, 0.932292) 50%, #FF1F1F 100%);
    border-radius: 30px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    color: #FFFFFF;
    height: 32px;
    padding: 0 21px;
}
.c-header .hotline_phone img {
    margin-right: 11px;
}
.c-header .language {
    margin-left: 20px;
}
.c-header .language > li {
    display: flex;
    align-items: center;
}
.c-header .language > li span {
    font-size: 22px;
    font-weight: bold;
    color: #025899;
    margin-left: 10px;
}
.c-header_nav {
    background: #013da1;
    /*background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);*/
}
.c-header_nav .nav-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.c-header_nav .btn-search {
    width: 18px;
    position: relative;
    margin-top: 10px;
}
button{
    cursor: pointer !important;
}
.c-header_nav .btn-search a {
    position: relative;
    z-index: 2;
    filter: brightness(0) invert(1);
}
.c-header_nav .btn-search.is-active a {
    filter: unset
}
.c-header_nav .btn-search .m-input {
    position: absolute;
    width: 0;
    opacity: 0;
    right: -10px;
    top: -8px;
    padding-right: 35px;
    transition: 0.3s ease;
}
.c-header_nav .btn-search.is-active .m-input {
    width: 300px;
    opacity: 1;
}
.c-header_nav .nav-menu {
    flex: 1;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -20px;
    flex-wrap: wrap;
}
.c-header_nav .nav-menu > li {
    padding: 9px 0;
    margin: 0 20px;
    position: relative;
}
.c-header_nav .nav-menu > li::before {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
    opacity: 0;
    background: #DFAA23;
}
.c-header_nav .nav-menu > li.has-menu::after, .c-header_nav .nav-menu > li.menu-item-has-children::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: url("../images/ico_arrow.svg") no-repeat;
    right: -15px;
    top: 15px;
    transition: 0.3s ease;
    filter: brightness(0) invert(1);
}
.c-header_nav .nav-menu > li.has-menu.is-active::after, .c-header_nav .nav-menu > li.menu-item-has-children.is-active::after {
    transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
    .c-header_nav .nav-menu > li.has-menu:hover .sub-menu, .c-header_nav .nav-menu > li.menu-item-has-children:hover .sub-menu {
        display: block;
    }
}
.c-header_nav .nav-menu > li.is-search {
    display: flex;
    align-items: center;
}
.c-header_nav .nav-menu > li.is-search .is-icon {
    margin-left: 15px;
}
.c-header_nav .nav-menu > li > a {
    font-weight: bold;
    font-size: 15px;
    line-height: 22px;
    color: #FFF;
    text-transform: uppercase;
}
@media screen and (min-width: 768px) {
    .c-header_nav .nav-menu > li.current-menu-item::before,
    .c-header_nav .nav-menu > li:hover::before {
        opacity: 1;
        width: 100%;
    }
}
.c-header_nav .nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 10px 10px;
    padding: 16px 0;
    display: none;
    z-index: 2;
}
.c-header_nav .nav-menu .sub-menu > li {
    margin-bottom: 5px;
}
.c-header_nav .nav-menu .sub-menu > li:last-of-type {
    margin-bottom: 0;
}
.c-header_nav .nav-menu .sub-menu a {
    display: block;
    font-size: 17px;
    line-height: 25px;
    color: #025899;
    padding: 3px 13px;
}
@media screen and (min-width: 768px) {
    .c-header_nav .nav-menu .sub-menu a:hover {
        background: #013da1;
        color: #FFF;
    }
}
@media screen and (max-width: 1000px) {
    .c-header_nav .nav-menu {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 767px) {
    .c-header {
        width: 100%;
        background: #025899;
        padding: 14px 0 9px;
        z-index: 4;
    }
    .c-header_inner {
        padding-right: 40px;
        padding-bottom: 0;
        align-items: center;
    }
    .c-header .hotline span {
        display: none;
    }
    .c-header .hotline_phone {
        font-size: 15px;
    }
    .c-header .hotline_phone img {
        height: 15px;
    }
    .c-header .language > li img {
        height: 20px;
    }
    .c-header .language > li span {
        font-size: 15px;
    }
    .c-header_nav {
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: none;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }
    .c-header_nav.show {
        opacity: 1;
        visibility: visible;
    }
    .c-header_nav .btn-close {
        position: absolute;
        top: 17px;
        right: 12px;
        z-index: 2;
    }
    .c-header_nav .wrapper {
        height: 100%;
        padding: 0;
    }
    .c-header_nav .nav-wrap {
        width: 300px;
        background-color: #fff;
        height: 100%;
        padding: 50px 10px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: auto;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        position: relative;
    }
    .c-header_nav .nav-wrap .m-btn {
        position: relative;
        margin: 0 auto;
    }
    .c-header_nav .nav-wrap .m-btn a {
        font-size: 18px;
        height: 35px;
    }
    .c-header_nav .nav-menu {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        flex: unset;
    }
    .c-header_nav .nav-menu > li {
        width: 100%;
        padding: 0;
        margin: 0;
        margin-bottom: 36px;
    }
    .c-header_nav .nav-menu > li > a {
        font-size: 16px;
        line-height: 24px;
    }
    .c-header_nav .nav-menu > li.menu-item-has-children::after {
        width: 15px;
        height: 10px;
        background: url("../images/ico_arrow_sp.svg") no-repeat;
        right: 0;
        top: 7px;
        filter: brightness(0.9);
    }
    .c-header_nav .nav-menu .sub-menu {
        position: relative;
        min-width: 100%;
        box-shadow: none;
        padding: 0;
        margin-top: 16px;
        top: auto;
    }
    .c-header_nav .nav-menu .sub-menu li:last-of-type {
        margin-bottom: 0;
    }
    .c-header_nav .nav-menu .sub-menu a {
        padding-left: 5px;
    }
    .c-header_nav .btn-search {
        width: auto;
        margin: 0 -10px;
        padding: 20px 10px 0;
        right: 0;
        top: 0;
        border-top: 1px solid #F7F3F3;
        margin-top: 20px;
    }
    .c-header_nav .btn-search .is-icon {
        position: absolute;
        height: 40px;
        width: 57px;
        background: #025899;
        border-radius: 0 20px 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
    }
    .c-header_nav .btn-search .m-input {
        position: relative;
        right: 0;
        width: 100%;
        opacity: 1;
        top: auto;
        height: 40px;
        box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        border: 0.5px solid #535353;
        padding-right: 50px;
    }
    .c-header .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.9);
    }
}
@media screen and (max-width: 500px) {
    .c-header_logo {
        width: 100px;
    }
    .c-header .hotline_phone {
        text-indent: -9999px;
        padding: 10px;
    }
    .c-header .hotline_phone img {
        margin-right: 0;
    }
}

.modal-contact .inner {
    background: #025899;
    border-radius: 30px;
    text-align: center;
    padding: 33px 25px;
    max-width: 343px;
    margin: 0 auto;
}
.modal-contact .inner strong {
    font-size: 22px;
    line-height: 33px;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.modal-contact .inner .title {
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 9px;
}
.modal-contact .inner .text {
    color: #fff;
    margin-bottom: 34px;
}
.modal-contact .inner .text:last-of-type {
    margin-bottom: 0;
}
.modal-contact .inner .row {
    margin-bottom: 18px;
}
.modal-contact .inner .m-btn {
    margin-bottom: 13px;
    margin-top: 34px;
}
.modal-contact .inner .m-btn a {
    width: 100%;
    font-size: 18px;
    height: 40px;
}

.iframe-modal .mfp-wrap {
    position: fixed !important;
    top: 0 !important;
    overflow: auto;
}
.iframe-modal .mfp-bg {
    background: #fff;
    opacity: 0.9;
}
.iframe-modal .mfp-content {
    position: unset;
}
.iframe-modal button.mfp-close {
    text-indent: -9999px;
    background: url(../images/btn_close.svg) no-repeat center;
    top: 5px;
    right: 3px;
    opacity: 1;
}

/*------------------------------------------------------------
  Footer
------------------------------------------------------------*/
.c-footer_upper {
    background: #013da1;
}
.c-footer_inner {
    display: flex;
    justify-content: space-between;
    padding: 42px 0 22px;
}
.c-footer_block .title {
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 33px;
    color: #FFF;
}
.c-footer_info {
    padding: 30px 0 75px;
}
.c-footer_info .inner {
    display: flex;
    justify-content: space-between;
    color: #025899;
    font-size: 16px;
    line-height: 24px;
}
@media screen and (max-width: 767px) {
    .c-footer {
        padding-bottom: 45px;
    }
    .c-footer_inner {
        flex-direction: column;
        gap: 8px;
        padding-top: 20px;
    }
    .c-footer_info {
        padding-top: 10px;
    }
    .c-footer_info .wrapper {
        padding: 0;
    }
    .c-footer_info .inner {
        flex-direction: column;
        gap: 10px;
    }
    .c-footer_info .gp {
        padding: 0 27px 10px 17px;
        border-bottom: 1px solid #025899;
    }
    .c-footer_info .copyright {
        padding: 0 3px 0 17px;
    }
    .c-footer_block:nth-child(1) {
        order: 3;
    }
    .c-footer_block .title {
        font-size: 18px;
        line-height: 27px;
    }
}

.l-social {
    display: flex;
    align-items: center;
    margin-top: 14px;
    margin-bottom: 25px;
}
.l-social li {
    margin-right: 20px;
}
@media screen and (max-width: 767px) {
    .l-social {
        margin-bottom: 10px;
    }
}

.l-payment {
    display: flex;
    align-items: center;
    margin-top: 14px;
    margin-bottom: 37px;
}
.l-payment li {
    margin-right: 15px;
    filter: brightness(0) invert(1);
}

.l-certi {
    display: flex;
    align-items: center;
    margin-left: -7px;
}
.l-certi li {
    margin-right: 7px;
}

.l-address {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    margin-top: 10px;
}
.l-address > li p {
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: left center;
    margin-bottom: 6px;
    filter: brightness(0) invert(1);
}
.l-address > li p.addr {
    background-image: url(../images/ico_location.svg);
    background-position: left 2px center;
}
.l-address > li p.phone {
    background-image: url(../images/ico_phone_sp.svg);
}
.l-address > li p.phone.is-hotline {
    font-weight: bold;
}

.work-time {
    display: flex;
    align-items: center;
    filter: brightness(0) invert(1);
}
.work-time strong {
    font-size: 16px;
    line-height: 24px;
    color: #0D6799;
    padding-left: 24px;
    font-weight: normal;
    background: url(../images/ico_time.svg) no-repeat left center;
    margin-right: 22px;
}
.work-time .l-time {
    font-size: 16px;
    line-height: 24px;
    color: #0D6799;
    width: 271px;
    max-width: 100%;
}
.work-time .l-time li {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.25px solid #025899;
    padding: 0 5px;
}
.work-time .l-time li:last-of-type {
    border: none;
}
@media screen and (max-width: 767px) {
    .work-time {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .work-time .l-time {
        padding-left: 20px;
    }
}

.l-info {
    margin-top: 10px;
}
.l-info > li {
    margin-bottom: 6px;
}
.l-info a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #025899;
    padding-left: 27px;
    background: url(../images/ico_arrow_menu.svg) no-repeat left center;
    filter: brightness(0) invert(1);
}
.l-info a:hover {
    text-decoration: underline;
}

/*------------------------------------------------------------
  Side
------------------------------------------------------------*/
/*------------------------------------------------------------
  Button
------------------------------------------------------------*/
input.m-btn,
.m-btn a,
.m-btn button {
    display: inline-flex;
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    color: #FFF;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    background: #013da1;
    border-radius: 20px;
    border: none;
}
.m-btn.is-reverse a {
    background: #025899;
    color: #fff;
}
.m-btn.is-small a {
    font-size: 15px !important;
    line-height: 22px !important;
}
.wpcf7-spinner{
    position: absolute !important;
}
.m-btn{
    cursor: pointer;
}
@media screen and (min-width: 768px) {
    .m-btn a:hover,
    .m-btn button:hover {
        background: #025899;
        color: #fff;
    }
    .m-btn.is-reverse a:hover {
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        color: #025899;
    }
}
@media screen and (max-width: 767px) {
    input.m-btn,
    .m-btn a,
    .m-btn button {
        font-size: 16px;
        height: 35px;
    }
}

.link {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    background: linear-gradient(270deg, #FF1F1F 0%, rgba(255, 105, 105, 0.932292) 50%, #FF1F1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.btn-download {
    text-align: center;
}
.btn-download a {
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    background: #025899 url(../images/dieutri/sp/ico_download.svg) no-repeat left 36px center;
    padding: 6px 35px 6px 68px;
    border-radius: 20px;
    font-weight: bold;
}

/*------------------------------------------------------------
  Title
------------------------------------------------------------*/
.ttl-primary {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    line-height: 45px;
    color: #025899;
    margin-bottom: 30px;
}
.ttl-primary.is-white {
    color: #fff;
}
.ttl-primary.is-red {
    background: linear-gradient(270deg, #FF1F1F 0%, rgba(255, 105, 105, 0.932292) 50%, #FF1F1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.ttl-primary--is-medium {
    font-size: 25px;
    line-height: 38px;
}
@media screen and (max-width: 767px) {
    .ttl-primary {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }
}

.ttl-secondary {
    font-weight: bold;
    font-size: 22px;
    line-height: 33px;
    color: #025899;
}
@media screen and (max-width: 767px) {
    .ttl-secondary {
        font-size: 16px;
        line-height: 24px;
    }
}

.ttl-bl {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
}

.ttl-border {
    text-align: center;
    font-size: 22px;
    line-height: 33px;
    color: #025899;
    position: relative;
}
.ttl-border::before {
    position: absolute;
    content: "";
    width: 240px;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #d9d9d9;
}
.ttl-border span {
    display: inline-block;
    padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
    .ttl-border {
        font-size: 18px;
        line-height: 27px;
    }
    .ttl-border::before {
        display: none;
    }
}

.ttl-background {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    padding: 5px;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    border-radius: 20px;
}

/*------------------------------------------------------------
  Text
------------------------------------------------------------*/
/*------------------------------------------------------------
  Form
------------------------------------------------------------*/
.m-input {
    background: #FFFFFF;
    border: 1px solid #025899;
    border-radius: 30px;
    height: 34px;
    font-size: 18px;
    line-height: 27px;
    color: #2B2B2B;
    padding: 0 17px;
    appearance: none;
    box-shadow: none;
    width: 100%;
}

.m-contact {
    background: url("../images/top/bg_contact.jpg.webp") no-repeat center/cover;
    padding: 70px 0px 65px;
}
.m-contact strong {
    display: block;
    text-align: center;
    font-size: 22px;
    line-height: 33px;
    color: #025899;
    margin-bottom: 2px;
}
.m-contact .ttl-primary {
    margin-bottom: 2px;
}
.m-contact p {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    margin-top: 2px;
    margin-bottom: 25px;
}
.m-contact form {
    text-align: center;
}
.m-contact .row-input {
    max-width: 534px;
    margin: 0 auto 22px;
}
@media screen and (max-width: 767px) {
    .m-contact {
        padding: 38px 15px;
        background: url("../images/top/sp/bg_contact.png") no-repeat center/cover;
    }
    .m-contact strong {
        font-size: 18px;
        line-height: 27px;
        margin: 0 -15px;
    }
    .m-contact .ttl-primary {
        font-size: 22px;
        line-height: 33px;
        margin-bottom: 10px;
    }
    .m-contact p {
        font-size: 16px;
        line-height: 24px;
        color: #535353;
    }
    .m-contact .m-btn button {
        width: 100%;
    }
    .m-contact.is-reverse {
        background: #fff;
        padding: 0 10px;
    }
    .m-contact.is-reverse .wrapper {
        padding: 29px 20px 45px;
        background: #025899;
        border-radius: 20px;
    }
    .m-contact.is-reverse .ttl-primary {
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }
    .m-contact.is-reverse p {
        color: #fff;
    }
    .m-contact.is-reverse strong {
        color: #fff;
    }
}

.form-reserve {
    background: #025899;
    border: 1px solid #025899;
    border-radius: 20px 20px;
    overflow: hidden;
}
.form-reserve .f-title {
    text-align: center;
    color: #fff;
    font-size: 22px;
    line-height: 33px;
    padding: 12px 0px 7px;
}
.form-reserve .f-title strong {
    display: block;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-top: 2px;
}
.form-reserve .form-inner {
    background: url(../images/bg_form.jpg) no-repeat left top/cover;
    padding: 34px 63px 25px;
}
.form-reserve .form-inner .row {
    margin-bottom: 20px;
}
.form-reserve .form-inner .gr-check .ttl {
    display: block;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    margin-bottom: 13px;
}
.form-reserve .l-checkbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 7px 0;
    width: 100%;
    margin-bottom: 30px;
}
.form-reserve .l-checkbox > li {
    width: 50%;
}
.form-reserve .m-btn button {
    width: 100%;
    cursor: pointer;
    height: 50px;
    border-radius: 30px;
}
@media screen and (max-width: 767px) {
    .form-reserve .f-title {
        font-size: 16px;
        line-height: 1.5;
    }
    .form-reserve .form-inner {
        padding: 15px;
    }
    .form-reserve .l-checkbox {
        flex-direction: column;
    }
    .form-reserve .l-checkbox > li {
        width: 100%;
    }
}

.m-checkbox .label input {
    display: none;
}
.m-checkbox .label input:checked + span::after {
    opacity: 1;
    visibility: visible;
}
.m-checkbox .label span {
    font-size: 16px;
    line-height: 24px;
    color: #025899;
    position: relative;
    padding-left: 30px;
}
.m-checkbox .label span::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #2B2B2B;
    background: #fff;
    left: 0;
    top: -2px;
}
.m-checkbox .label span:after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    left: 4px;
    top: 2px;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.form-ct {
    max-width: 656px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}
.form-ct .head {
    text-align: center;
    font-size: 22px;
    line-height: 33px;
    font-weight: bold;
    color: #fff;
    padding: 12px 5px 12px;
    background: #025899;
}
.form-ct .body {
    padding: 8px 75px 18px;
    border: 1px solid #025899;
    border-radius: 0 0 30px 30px;
}
.form-ct .body .text {
    color: #025899;
    margin-bottom: 22px;
    text-align: center;
}
.form-ct .body .row {
    margin-bottom: 16px;
}
.form-ct .body .m-btn {
    text-align: center;
}
.form-ct .body .m-btn button {
    height: 35px;
    font-size: 18px;
}
.form-ct.is-rev {
    max-width: 100%;
    background: #025899;
}
.form-ct.is-rev .head {
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    color: #025899;
}
.form-ct.is-rev .body .text {
    color: #fff;
}
@media screen and (max-width: 767px) {
    .form-ct .body {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.m-select {
    background: #fff url("../images/ico_select.svg") no-repeat right 19px center;
}

/*------------------------------------------------------------
  Navi
------------------------------------------------------------*/
/*------------------------------------------------------------
  Table
------------------------------------------------------------*/
.table-common {
    border-collapse: collapse;
}
@media screen and (min-width: 767px) {
    .table-common {
        width: 1200px;
    }

    th.w01, td.w01 {
        width: 270px;
    }
}
.table-common th {
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    background: #025899;
    padding: 10px;
}
.table-common th.w02 {
    width: 390px;
}
.table-common th,
.table-common td {
    border: 1px solid #025899;
    padding: 9px;
}
.table-common th strong,
.table-common td strong {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
}
.table-common th .price.is-old,
.table-common td .price.is-old {
    color: #000;
    text-decoration: line-through;
}
.table-common ul.text {
    padding-left: 1em;
}
.table-common ul.text li {
    text-indent: -1em;
}

.table-scroll {
    overflow-y: hidden;
    overflow-x: auto;
}

/*------------------------------------------------------------
  List
------------------------------------------------------------*/
/*------------------------------------------------------------
  Slider
------------------------------------------------------------*/
/*------------------------------------------------------------
  Other
------------------------------------------------------------*/
.m-news {
    padding: 50px 0px 70px;
}

.l-news {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -31px;
}
.l-news_item {
    width: 33.3333%;
    padding: 0 31px;
}
.l-news_item .images {
    margin-bottom: 28px;
    border-radius: 20px;
    overflow: hidden;
}
.l-news_item .images img {
    width: 100%;
}
.l-news_item .info .tag {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #025899;
    display: inline-block;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    border-radius: 20px;
    padding: 5px 16px;
}
.l-news_item .info .title {
    margin-top: 18px;
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    color: #025899;
    margin-bottom: 14px;
}
.l-news_item .info .text {
    font-size: 18px;
    line-height: 27px;
    color: #000;
    margin-bottom: 20px;
}
.l-news_item .info .m-btn a {
    height: 33px;
    font-size: 18px;
    font-weight: normal;
}
@media screen and (max-width: 767px) {
    .l-news {
        flex-direction: column;
        gap: 15px;
    }
    .l-news_item {
        width: 100%;
    }
    .l-news_item .images {
        height: 240px;
        position: relative;
        margin-bottom: 20px;
        border-radius: 10px;
    }
    .l-news_item .images img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
    }
    .l-news_item .info .title {
        margin: 10px 0;
        font-size: 18px;
        line-height: 27px;
    }
    .l-news_item .info .text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}

.pagination {
    font-size: 16px;
    line-height: 24px;
    margin-top: 70px;
}
.pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pagination .page-numbers {
    color: #025899;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid;
}
.pagination .page-numbers.current {
    background: #025899;
    color: #fff;
    border-color: #025899;
}
.pagination .page-numbers.inactive {
    display: none;
}
.pagination .page-numbers.dots:hover {
    color: #025899;
    background: #fff;
}
.pagination .page-numbers:hover {
    background: #025899;
    color: #fff;
    border-color: #025899;
}
.pagination .page-numbers:hover svg path {
    fill: #fff;
}
.pagination .prev {
    transform: rotate(180deg);
}

.breadcrumbs {
    margin-top: 16px;
    margin-bottom: 10px;
}

.l-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 24px;
}
.l-breadcrumbs a {
    color: #025899;
}
.l-breadcrumbs span {
    color: #025899;
}
.l-breadcrumbs > li {
    position: relative;
}
.l-breadcrumbs > li::after {
    display: inline-block;
    content: "/";
    font-size: 16px;
    line-height: 24px;
    color: #025899;
    margin: 0 5px;
}
.l-breadcrumbs > li:last-of-type::after {
    display: none;
}

.box-information {
    border-top: 1px solid #979797;
    padding-top: 18px;
}
.box-information .ttl-primary {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 21px;
}
.box-information .l-social {
    justify-content: center;
    margin-bottom: 35px;
}
.box-information .l-address {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 30px;
}
.box-information .l-address span {
    color: #2B2B2B;
    font-weight: bold;
    margin-right: 4px;
}

.l-outstand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.l-outstand li {
    position: relative;
}
.l-outstand li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    z-index: 1;
}
.l-outstand a {
    display: block;
    font-size: 18px;
    line-height: 27px;
    padding: 8px 15px;
    background: #e4f4ff;
    color: #2b2b2b;
}
@media screen and (max-width: 767px) {
    .l-outstand a {
        font-size: 16px;
        line-height: 24px;
    }
}

.text {
    color: #000;
    font-size: 18px;
    line-height: 27px;
    text-align: justify;
}
@media screen and (max-width: 767px) {
    .text {
        color: #535353;
    }
}

.swiper-container {
    position: relative;
}

.swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-size: 100% !important;
    z-index: 1;
}

.swiper-next {
    background: url(../images/ico_next.svg) no-repeat center;
    right: 0;
}

.swiper-prev {
    background: url(../images/ico_prev.svg) no-repeat center;
    left: 0;
}

.l-doctors_thumb .thumb-item .name {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #025899;
    text-align: center;
    padding: 13px 2px;
}
.l-doctors_thumb .thumb-item .name span,
.l-doctors_thumb .thumb-item .name strong {
    display: block;
    font-size: 18px;
    line-height: 1;
}
.l-doctors_thumb .thumb-item .name span {
    color: #fff;
    margin-bottom: 4px;
}
.l-doctors_thumb .thumb-item .name strong {
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
    .l-doctors_thumb .thumb-item .name {
        padding: 5px 2px;
    }
    .l-doctors_thumb .thumb-item .name span {
        font-size: 14px;
    }
    .l-doctors_thumb .thumb-item .name strong {
        font-size: 16px;
    }
}
.l-doctors_thumb a {
    height: 275px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .l-doctors_thumb a {
        height: 50vw;
    }
    .l-doctors_thumb a img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
}

.l-doctors.is-special .l-doctors_info {
    padding-left: 30px;
}
.l-doctors.is-special .l-doctors_info .l-cer-img {
    border: none;
    padding: 0 10px;
    width: 97%;
    overflow: visible;
}
.l-doctors.is-special .l-doctors_info .l-cer-img_wrap {
    overflow: hidden;
}
.l-doctors.is-special .l-doctors_info .certificate {
    margin-bottom: 0;
}
.l-doctors.is-special .swiper-prev {
    left: -23px;
}
.l-doctors.is-special .swiper-next {
    right: -23px;
}
.l-doctors.is-special .l-doctors_item {
    margin-bottom: 30px;
}
.l-doctors.is-special .l-cer-img_item > div img {
    height: 152px;
}

.l-doctors_thumb.is-special .slick-list {
    padding: 0 !important;
    margin: 0 -15px;
}
.l-doctors_thumb.is-special .slick-next {
    right: -40px;
}
.l-doctors_thumb.is-special .slick-prev {
    left: -40px;
}
.l-doctors_thumb.is-special .thumb-item {
    padding: 10px 15px;
}
.l-doctors_thumb.is-special .thumb-item_inner {
    position: relative;
    padding: 1px;
}
.l-doctors_thumb.is-special .thumb-item_inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%), linear-gradient(0deg, #F7F7F7, #F7F7F7);
    opacity: 0;
}
.l-doctors_thumb.is-special .thumb-item.slick-current .thumb-item_inner::before {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .l-doctors.is-special .l-doctors_info {
        order: 2;
        padding: 20px 25px 0;
    }
    .l-doctors.is-special .l-doctors_info .l-cer-img {
        display: none;
    }
    .l-doctors.is-special .l-doctors_info .certificate {
        margin-bottom: 0;
    }
    .l-doctors.is-special .swiper-prev {
        left: 1px;
    }
    .l-doctors.is-special .swiper-next {
        right: 1px;
    }
    .l-doctors.is-special .l-cer-img_item > div img {
        height: 120px;
    }
    .l-doctors.is-special .l-doctors_images {
        width: auto;
        margin-top: 30px;
        order: 1;
        padding: 0 10px;
        position: relative;
        overflow: visible;
        margin-bottom: 0;
    }
    .l-doctors.is-special .l-doctors_images .bg {
        position: relative;
    }
    .l-doctors.is-special .l-doctors_images .bg::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        top: -7px;
    }
    .l-doctors.is-special .l-doctors_images .bg img {
        position: relative;
    }
    .l-doctors.is-special .l-doctors_images .img {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 61%;
    }
    .l-doctors.is-special .l-doctors_images .img img {
        width: 100%;
    }
    .l-doctors.is-special .l-doctors_images::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        left: 0;
        bottom: 0;
        z-index: 1;
    }
    .l-doctors_thumb.is-special .thumb-item {
        padding: 5px;
    }
    .l-doctors_thumb.is-special .slick-slider {
        padding: 0 40px;
    }
    .l-doctors_thumb.is-special .slick-list {
        margin: 0;
        padding: 0 10px;
    }
    .l-doctors_thumb.is-special .slick-prev {
        left: 10px;
    }
    .l-doctors_thumb.is-special .slick-next {
        right: 10px;
    }
}
.l-items_block {
    margin-bottom: 10px;
}
.l-items_block .item-name {
    text-align: center;
    color: #fff;
    background: #025899;
    padding: 8px;
}
.l-items_block .body {
    background: #e4f4ff;
    padding: 15px 10px;
}
.l-items_block .l-dd {
    margin-bottom: 15px;
}
.l-items_block .l-dd li {
    padding-left: 1rem;
    text-indent: -1rem;
    font-size: 18px;
    line-height: 27px;
}
.l-items_block .price-box {
    display: flex;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    font-weight: bold;
    margin-bottom: 10px;
}
.l-items_block .price-box dt {
    width: 160px;
}
.l-items_block .price-box dd .price.old {
    color: #2b2b2b;
    text-decoration: line-through;
}
.l-items_block .price-box dd span {
    display: block;
}
.l-items_block .m-btn {
    text-align: center;
}

.intro {
    background: linear-gradient(270deg, #EAF6FF 0%, rgba(255, 255, 255, 0.5) 52.8%, #E4F4FF 104.5%);
    padding: 50px 0px 25px;
}
@media screen and (max-width: 767px) {
    .intro {
        padding: 20px 0;
    }
}

.form-support > p{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.form-support {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    border-radius: 30px;
    padding: 10px 44px;
    margin-bottom: 30px;
}
.form-support .title {
    font-size: 22px;
    font-weight: bold;
    line-height: 33px;
    color: #025899;
}
.form-support .m-input {
    width: 365px;
    max-width: 100%;
    margin: 0;
}
.form-support .btn-sub {
    appearance: none;
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    color: #FFFFFF;
    padding: 0 19px;
    background: #025899;
    border-radius: 20px;
    box-shadow: none;
    border: none;
    cursor: pointer;
}
@media screen and (max-width: 960px) {
    .form-support {
        flex-direction: column;
        gap: 10px;
        border-radius: 20px;
        background: #025899;
        padding: 75px 30px 20px;
        position: relative;
        overflow: hidden;
    }
    .form-support .m-input {
        width: 100%;
    }
    .form-support .title {
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        color: #025899;
        font-size: 20px;
        line-height: 30px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        padding: 12px 0;
    }
    .form-support .btn-sub {
        width: 100%;
        font-size: 18px;
        height: 40px;
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        border-radius: 20px;
        color: #025899;
        margin-top: 15px;
    }
}

.tv-clip {
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
    flex-wrap: wrap;
    gap: 20px 0;
}
.tv-clip li {
    width: 50%;
    padding: 0 10px;
}
.tv-clip .fig-title {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    font-weight: normal;
    margin-top: 21px;
    padding-left: 30px;
    padding-right: 30px;
}
@media screen and (max-width: 767px) {
    .tv-clip {
        flex-direction: column;
        gap: 20px;
    }
    .tv-clip li {
        width: 100%;
    }
}

.vidplay {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.vidplay::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #e3e3e3;
    opacity: 0.3;
    border-radius: 20px;
}
.vidplay::after {
    position: absolute;
    content: "";
    width: 44px;
    height: 44px;
    background: url(../images/ico_play.svg) no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-indent: -9999px;
    width: 30px;
    height: 30px;
    background-size: 100% !important;
    border: none;
    z-index: 1;
    cursor: pointer;
}
.slick-arrow.slick-prev {
    background: url(../images/ico_prev.svg) no-repeat center;
    left: 0;
}
.slick-arrow.slick-next {
    background: url(../images/ico_next.svg) no-repeat center;
    right: 0;
}
@media screen and (max-width: 767px) {
    .slick-arrow {
        width: 20px;
        height: 20px;
    }
}

.mv-top img {
    width: 100%;
}

.key-service {
    padding: 50px 0 40px;
}
.key-service .wrapper {
    overflow: hidden;
    max-width: 1300px;
}
.key-service .slick-slide {
    display: flex;
    justify-content: center;
}
.key-service .slick-list {
    padding: 0 !important;
    width: 420px;
    margin: 0 auto;
    overflow: visible;
}
.key-service .slick-track {
    padding: 30px 0;
    display: flex;
    align-items: center;
    min-height: 590px;
}
.key-service .service-slide {
    margin-top: -30px;
}
.key-service .service-slide_item {
    position: relative;
}
.key-service .service-slide_item::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background: url("../images/ico_tooth.svg") no-repeat;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    z-index: 1;
}
.key-service .service-slide_item a {
    width: 365px;
    display: block;
    background: #D9D9D9;
    border-radius: 20px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    overflow: hidden;
    position: relative;
    height: 400px;
}
.key-service .service-slide_item .service-name {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    border-radius: 20px;
    padding: 25px 31px 40px;
    display: flex;
    flex-direction: column;
    background-color: #025899;
}
.key-service .service-slide_item .service-name::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    right: 31px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
}
.key-service .service-slide_item .service-name span {
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    color: #FFFFFF;
}
.key-service .service-slide_item .service-name strong {
    font-size: 30px;
    font-weight: bold;
    line-height: 45px;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    max-width: 220px;
    margin-top: -7px;
    border-bottom: 1px solid #D9D9D9;
}
.key-service .service-slide_item .service-name.is-implant::before {
    background-image: url(../images/top/img_implant.png);
}
.key-service .service-slide_item .service-name.is-nieng::before {
    background-image: url(../images/top/img_nieng.png);
}
.key-service .service-slide_item .service-name.is-dieutri::before {
    background-image: url(../images/top/img_dieutri.png);
}
.key-service .service-slide_item .service-name.is-su::before {
    background-image: url(../images/top/img_rangsu.png);
}
.key-service .service-slide_item.slick-current a {
    height: 530px;
}
@media screen and (max-width: 767px) {
    .key-service .slick-list {
        width: 300px !important;
    }
    .key-service .service-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 0;
        padding-bottom: 30px;
    }
    .key-service .service-slide_item {
        max-width: 310px;
    }
    .key-service .service-slide_item a {
        width: 100%;
        max-width: 100%;
        height: 340px;
    }
    .key-service .service-slide_item .service-name {
        padding: 10px 31px 25px;
    }
    .key-service .service-slide_item .service-name span {
        font-size: 20px;
    }
    .key-service .service-slide_item .service-name strong {
        font-size: 30px;
        line-height: 1.5;
        max-width: 80%;
    }
    .key-service .service-slide_item .service-name::before {
        background-size: 100%;
        width: 85px;
        height: 85px;
        right: 25px;
    }
    .key-service .service-slide_item.slick-current a {
        height: 420px;
    }
    .key-service .service-slide_item::before {
        width: 42px;
        height: 42px;
        background-size: 100%;
    }
}

.m-doctors {
    background: #f7f7f7;
    padding-bottom: 95px;
}
.m-doctors .l-doctors {
    background: url(../images/top/bg_doctor.jpg.webp) no-repeat center/cover;
    padding-top: 37px;
}
.m-doctors .l-doctors_item {
    display: flex;
    justify-content: space-between;
}
.m-doctors .l-doctors_inner {
    margin-top: -40px;
    position: relative;
}
.m-doctors .l-doctors_inner::before {
    position: absolute;
    content: "";
    height: 3px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    z-index: 1;
}
.m-doctors .l-doctors .doc-info {
    flex: 1;
    padding-top: 35px;
}
.m-doctors .l-doctors .doc-info .title {
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
}
.m-doctors .l-doctors .doc-info .name {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #025899;
    margin-bottom: 20px;
}
.m-doctors .l-doctors .doc-img {
    width: 35%;
    position: relative;
    padding-bottom: 20px;
    padding-top: 10px;
}
.m-doctors .l-doctors .doc-img .bg {
    position: relative;
}
.m-doctors .l-doctors .doc-img .bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    top: -7px;
}
.m-doctors .l-doctors .doc-img .bg img {
    position: relative;
}
.m-doctors .l-doctors .doc-img .img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 67%;
}
.m-doctors .l-doctors_thumb {
    margin-top: 40px;
}
.m-doctors .l-doctors_thumb .slick-list {
    padding: 0 !important;
    margin: 0 -15px;
}
.m-doctors .l-doctors_thumb .slick-next {
    right: -40px;
}
.m-doctors .l-doctors_thumb .slick-prev {
    left: -40px;
}
.m-doctors .l-doctors_thumb .thumb-item {
    padding: 10px 15px;
}
.m-doctors .l-doctors_thumb .thumb-item_inner {
    position: relative;
    padding: 1px;
}
.m-doctors .l-doctors_thumb .thumb-item_inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    background: #013da1;
    opacity: 0;
}
.m-doctors .l-doctors_thumb .thumb-item.slick-current .thumb-item_inner::before {
    opacity: 1;
}
.m-doctors .l-doctors_thumb a {
    height: 275px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 1290px) {
    .m-doctors .slick-slider {
        padding: 0 40px;
    }
    .m-doctors .l-doctors_thumb .slick-prev {
        left: -5px;
    }
    .m-doctors .l-doctors_thumb .slick-next {
        right: -5px;
    }
}
@media screen and (max-width: 767px) {
    .m-doctors {
        padding-bottom: 12px;
    }
    .m-doctors .slick-slider {
        padding: 0 30px;
    }
    .m-doctors .l-doctors {
        background-position: left top;
    }
    .m-doctors .l-doctors .wrapper {
        padding: 0;
    }
    .m-doctors .l-doctors_inner {
        margin-top: 20px;
        padding: 0;
    }
    .m-doctors .l-doctors_inner::before {
        display: none;
    }
    .m-doctors .l-doctors_item {
        flex-direction: column;
        margin-bottom: 0;
    }
    .m-doctors .l-doctors_thumb {
        margin-top: 12px;
    }
    .m-doctors .l-doctors_thumb .thumb-item {
        padding: 5px;
    }
    .m-doctors .l-doctors_thumb a {
        height: 50vw;
        position: relative;
    }
    .m-doctors .l-doctors_thumb a img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
    .m-doctors .l-doctors .doc-info {
        order: 2;
        padding: 20px 25px;
    }
    .m-doctors .l-doctors .doc-info .title {
        font-size: 18px;
        line-height: 27px;
    }
    .m-doctors .l-doctors .doc-info .name {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 5px;
    }
    .m-doctors .l-doctors .doc-img {
        width: auto;
        margin-top: 30px;
        order: 1;
        padding: 0 10px;
        position: relative;
    }
    .m-doctors .l-doctors .doc-img .img {
        width: 61%;
    }
    .m-doctors .l-doctors .doc-img .img img {
        width: 100%;
    }
    .m-doctors .l-doctors .doc-img::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        left: 0;
        bottom: 0;
        z-index: 1;
    }
    .m-doctors .l-doctors .m-btn {
        text-align: center;
    }
}

.m-prize {
    background: #025899;
    padding: 30px 0;
}
.m-prize .l-prize {
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.m-prize .l-prize .vec {
    margin-bottom: 25px;
}
.m-prize .l-prize .vec img {
    margin: 0 auto;
}
.m-prize .l-prize p {
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
}
@media screen and (max-width: 767px) {
    .m-prize .l-prize {
        flex-wrap: wrap;
        gap: 30px 0;
        margin: 0 -20px;
    }
    .m-prize .l-prize > li {
        width: 50%;
        padding: 0 18px;
    }
    .m-prize .l-prize .vec img {
        height: 45px;
    }
    .m-prize .l-prize p {
        font-size: 16px;
        line-height: 24px;
    }
}

.m-reward {
    background: linear-gradient(270deg, #EAF6FF 0%, rgba(255, 255, 255, 0.5) 52.8%, #E4F4FF 104.5%);
    padding: 50px 0 13px;
}
.m-reward_inner {
    display: flex;
    justify-content: space-between;
}
.m-reward_inner .img {
    display: flex;
    align-items: flex-end;
}
.m-reward .info {
    font-size: 18px;
    line-height: 27px;
    max-width: 670px;
}
.m-reward .info .text {
    text-align: justify;
}
.m-reward .img_item {
    margin-left: 50px;
}
.m-reward .img_item:first-of-type {
    margin-left: 10px;
}
@media screen and (max-width: 767px) {
    .m-reward {
        padding: 20px 0;
    }
    .m-reward_inner {
        flex-direction: column;
        gap: 20px;
    }
    .m-reward .info {
        display: none;
    }
    .m-reward .img {
        justify-content: center;
        padding: 0 20px;
    }
}

.l-reward {
    padding-left: 25px;
    margin-top: 5px;
}
.l-reward li {
    padding-left: 35px;
    background: url(../images/ico_check.svg) no-repeat left top 3px;
}

.m-video {
    padding: 50px 0 30px;
}
.m-video_inner {
    display: flex;
}
.m-video_main {
    width: 650px;
}
.m-video_main .vidplay::after {
    width: 38px;
    height: 38px;
    background-size: 100%;
}
@media screen and (max-width: 767px) {
    .m-video {
        padding: 20px 0;
    }
    .m-video_inner {
        flex-direction: column;
        gap: 20px;
    }
    .m-video_main {
        width: 100%;
    }
    .m-video .m-btn {
        text-align: center;
    }
}

.l-video {
    flex: 1;
    padding-left: 18px;
    height: 394px;
    overflow-x: hidden;
    overflow-y: auto;
}
.l-video > li {
    display: flex;
    margin-bottom: 13px;
}
.l-video > li .vidplay {
    width: 188px;
}
.l-video > li .vidplay::after {
    width: 17px;
    height: 17px;
    background-size: 100%;
}
.l-video > li .video-info {
    flex: 1;
    padding-left: 19px;
}
.l-video > li .video-info .title {
    font-size: 18px;
    line-height: 27px;
    font-weight: normal;
}
.l-video > li .video-info .view {
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
    color: #025899;
}

@media screen and (max-width: 767px) {
    .l-video {
        flex: auto;
        padding-left: 0;
        height: auto;
        overflow: auto;
        display: flex;
        flex-wrap: wrap;
        margin: 0 -3px;
    }
    .l-video > li {
        width: 50%;
        padding: 0 3px;
        display: none;
    }
    .l-video > li:nth-child(1), .l-video > li:nth-child(2) {
        display: block;
    }
    .l-video > li .video-info {
        display: none;
    }
    .l-video > li .vidplay {
        width: 100%;
    }
}
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #025899 #D9D9D9;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    width: 7px;
    width: 7px;
}

*::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #D9D9D9;
}

*::-webkit-scrollbar-track:hover {
    background-color: #B8C0C2;
}

*::-webkit-scrollbar-track:active {
    background-color: #B8C0C2;
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #025899;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #036EBF;
}

*::-webkit-scrollbar-thumb:active {
    background-color: #036EBF;
}

.m-customer {
    background: linear-gradient(270deg, #EAF6FF 0%, rgba(255, 255, 255, 0.5) 52.8%, #E4F4FF 104.5%);
    padding: 30px 0;
}
.m-customer .slick-list {
    margin: 0 -23px;
}
.m-customer .slick-next {
    right: -40px;
}
.m-customer .slick-prev {
    left: -40px;
}
.m-customer_item {
    width: 370px;
    padding: 10px 23px;
}
.m-customer_item .image {
    width: 100%;
    height: 317px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.m-customer_item .image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.m-customer_item .info {
    margin-top: 27px;
}
.m-customer_item .info .cus-name {
    font-size: 22px;
    font-weight: bold;
    line-height: 33px;
    color: #025899;
    margin-bottom: 10px;
}
.m-customer_item .info .text {
    font-size: 18px;
    line-height: 27px;
    color: #000;
    margin-bottom: 45px;
}
.m-customer_item .info .m-btn {
    text-align: center;
}
.m-customer_item .info .m-btn a {
    height: 33px;
    font-weight: normal;
    font-size: 18px;
}
.m-customer_inner {
    padding: 20px 30px 48px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}
@media screen and (max-width: 1290px) {
    .m-customer_inner {
        padding: 15px;
    }
    .m-customer_item .info .text {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    .m-customer .slick-slider {
        padding: 0 40px;
    }
    .m-customer .slick-prev {
        left: -5px;
    }
    .m-customer .slick-next {
        right: -5px;
    }
}
@media screen and (max-width: 767px) {
    .m-customer {
        padding: 20px 0;
    }
    .m-customer .ttl-primary {
        margin-bottom: 5px;
    }
    .m-customer .slick-slider {
        padding: 0 20px;
    }
    .m-customer_item {
        padding: 10px;
    }
    .m-customer_item .image {
        height: 79vw;
    }
    .m-customer_item .info {
        margin-top: 13px;
    }
    .m-customer_item .info .cus-name {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 6px;
    }
    .m-customer_item .info .text {
        font-size: 16px;
        line-height: 24px;
        text-align: justify;
        color: #535353;
        margin-bottom: 20px;
    }
    .m-customer_item .info .m-btn a {
        font-weight: bold;
    }
}

.m-paper {
    padding: 50px 0;
}
.m-paper .slick-list {
    margin: 0 -23px;
}
.m-paper .slick-next {
    right: -40px;
}
.m-paper .slick-prev {
    left: -40px;
}
.m-paper_item {
    width: 370px;
}
.m-paper_inner {
    padding: 10px 23px;
}
.m-paper_wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.p-doctung .m-paper_wrap{
    max-height: 668px;
    width: 100%;
}
.m-paper_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 78px;
    text-align: center;
    background: #F7F7F7;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.m-paper_btn .m-btn {
    text-align: center;
}
.m-paper_btn .m-btn a {
    height: 33px;
    font-weight: normal;
    font-size: 18px;
}
@media screen and (max-width: 1290px) {
    .m-paper .slick-slider {
        padding: 0 40px;
    }
    .m-paper .slick-prev {
        left: -5px;
    }
    .m-paper .slick-next {
        right: -5px;
    }
}
@media screen and (max-width: 767px) {
    .m-paper {
        padding: 20px 0;
    }
    .m-paper .ttl-primary {
        margin-bottom: 5px;
    }
    .m-paper_inner {
        padding: 10px;
    }
    .m-paper .slick-slider {
        padding: 0 20px;
    }
    .m-paper_item img {
        width: 100%;
    }
}

.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.slick-dots li {
    height: 8px;
    width: auto;
    margin: 0 2px;
}
.slick-dots li.slick-active button {
    width: 29px;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    border-radius: 50px;
}
.slick-dots button {
    text-indent: -9999px;
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #025899;
    display: block;
    padding: 0;
    transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
    .slick-dots {
        margin-top: 12px;
    }
    .slick-dots li {
        height: 6px;
    }
    .slick-dots li.slick-active button {
        width: 21px;
    }
    .slick-dots button {
        width: 6px;
        height: 6px;
    }
}

div#contact-menu {
    position: fixed;
    z-index: 3;
    right: 25px;
    top: 175px;
    width: 80px;
    text-align: center;
    box-shadow: 0 19px 35px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
    border-radius: 35px;
    padding: 25px 0 20px;
    background: #fff;
}

div#contact-menu ul {
    list-style: none;
    padding: 0;
}

div#contact-menu ul li {
    padding: 2px 0;
}

div#contact-menu ul li a {
    font-size: 14px;
    white-space: nowrap;
    color: #0d6799;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}
div#contact-menu ul li a img {
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    div#contact-menu {
        bottom: 0;
        left: 0;
        top: auto;
        width: 100%;
        padding: 10px 0 1px;
        background: #025899;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 30px 30px 0px 0px;
    }
    div#contact-menu > ul {
        display: flex;
        flex-direction: row;
    }
    div#contact-menu > ul > li {
        width: 25%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    div#contact-menu > ul > li img {
        height: 35px;
    }
    div#contact-menu > ul > li a {
        color: #fff;
        font-weight: normal;
    }
}
.certificate {
    font-size: 18px;
    line-height: 27px;
    max-width: 648px;
    margin-bottom: 30px;
}
.certificate li {
    position: relative;
    padding-left: 15px;
}
.certificate li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0;
    top: 11px;
    background: #000;
}
@media screen and (max-width: 767px) {
    .certificate {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .m-news {
        padding: 20px 0;
    }
    .m-news .slick-slider {
        padding: 0 5px;
    }
    .m-news .slick-arrow {
        transform: none;
        top: 120px;
    }
    .m-news .slick-next {
        right: 24px;
    }
    .m-news .slick-prev {
        left: 24px;
    }
    .m-news .l-news {
        display: block;
    }
}

.m-kienthuc {
    padding-top: 70px;
    padding-bottom: 50px;
}
.m-kienthuc .l-news_item .info .text {
    font-size: 15px;
    line-height: 22px;
}
.m-kienthuc .l-news_item .info .m-btn a {
    font-size: 15px;
}
.m-kienthuc_main {
    margin-bottom: 70px;
}
.m-kienthuc_main .l-news_item {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.m-kienthuc_main .l-news_item .images {
    width: 46.3%;
    order: 2;
    margin-bottom: 0;
    margin-left: 10px;
}
.m-kienthuc_main .l-news_item .info {
    flex: 1;
    max-width: 590px;
    order: 1;
}
.m-kienthuc_list .l-news {
    gap: 50px 0;
}
@media screen and (max-width: 767px) {
    .m-kienthuc {
        padding: 40px 0;
    }
    .m-kienthuc_main {
        margin-bottom: 20px;
    }
    .m-kienthuc_main .l-news_item {
        flex-direction: column;
    }
    .m-kienthuc_main .l-news_item .images {
        width: 100%;
        order: 1;
        margin-left: 0;
        margin-bottom: 28px;
    }
    .m-kienthuc_list .l-news {
        gap: 30px 0;
    }
}

.tag {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #025899;
    display: inline-block;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    border-radius: 20px;
    padding: 5px 16px;
}

.time {
    font-size: 16px;
    line-height: 24px;
    color: #025899;
    padding-left: 24px;
    background: url(../images/ico_clock_blue.svg) no-repeat left center;
    margin-right: 25px;
}

.m-detail {
    padding-bottom: 50px;
}
.m-detail_inner {
    display: flex;
}
.m-detail_side {
    width: 360px;
}
.m-detail_side-bnr {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}
.m-detail_side-bnr img {
    width: 100%;
}
.m-detail_detail {
    flex: 1;
    padding-right: 60px;
}
.m-detail_bnr {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}
.m-detail_bnr img {
    width: 100%;
}
.m-detail_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 21px;
}
.m-detail_head-right {
    display: flex;
}
.m-detail_head-right .fl {
    display: flex;
}
.m-detail_head-right .view-rate {
    font-size: 16px;
    line-height: 24px;
    color: #025899;
}
.m-detail_head-right .rating {
    display: flex;
    gap: 2px;
    margin-right: 15px;
    margin-top: 2px;
}

.article-title {
    text-align: left;
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 20px;
}

.box-doctor {
    padding: 5px 25px 5px 17px;
    display: flex;
    align-items: center;
    background: #E4F4FF;
    border-radius: 20px;
    margin-bottom: 20px;
}
.box-doctor .right {
    width: 115px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.box-doctor .left {
    flex: 1;
    display: flex;
    align-items: center;
}
.box-doctor .image {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #fff;
    flex-shrink: 0;
    margin-right: 13px;
}
.box-doctor .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.box-doctor .name {
    font-size: 15px;
    line-height: 22px;
    color: #000;
    margin-bottom: 5px;
}
.box-doctor .name strong {
    font-size: 16px;
    line-height: 24px;
    color: #025899;
    margin-left: 8px;
}
.box-doctor .doc-title {
    font-size: 15px;
    line-height: 22px;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.box-doctor .doc-title > li {
    position: relative;
    padding-left: 25px;
}
.box-doctor .doc-title > li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    left: 9px;
    top: 9px;
    background: #000;
}
.box-doctor .m-btn a {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    height: 25px;
    font-weight: normal;
}

.box-anchors {
    background: #F7F7F7;
    padding: 19px 30px;
    margin-bottom: 20px;
}
.box-anchors .title {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 16px;
    color: #2b2b2b;
}
.box-anchors .btn-hide {
    color: #025899;
    margin-left: 7px;
}
@media screen and (max-width: 767px) {
    .box-anchors {
        margin: 0 -10px 30px;
        padding: 12px 10px 20px;
    }
}

.l-anchors {
    font-size: 16px;
    line-height: 24px;
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}
.l-anchors a {
    color: #025899;
}
.l-anchors a:hover {
    text-decoration: underline;
}
.l-anchors ol li {
    position: relative;
    padding-left: 25px;
}
.l-anchors ol li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    left: 9px;
    top: 9px;
    background: #025899;
}

.m-article {
    margin-bottom: 35px;
}
.m-article p {
    color: #000;
    font-size: 18px;
    line-height: 33px;
    margin-bottom: 20px;
    text-align: justify;
}
.m-article h3 {
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    margin-bottom: 20px;
}
.m-article figure {
    margin-bottom: 20px;
}
.m-article figcaption {
    font-size: 16px;
    line-height: 24px;
    color: #025899;
    text-align: center;
    margin-top: 15px;
}
.m-article ol {
    font-size: 18px;
    line-height: 27px;
    text-align: justify;
    list-style: decimal;
    padding-left: 1.5em;
    margin-bottom: 20px;
}
.m-article .signature {
    display: block;
    text-align: right;
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
    margin-top: 35px;
}
.m-article .tb-scroll {
    overflow-y: hidden;
    overflow-x: auto;
}
.m-article table {
    /*  width: 780px;*/
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.m-article table th,
.m-article table td {
    border: 1px solid #025899;
}
.m-article table th {
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    padding: 12px 10px;
    background: #025899;
    color: #fff;
}
.m-article table th:first-child {
    width: 365px;
}
.m-article table td {
    font-size: 18px;
    line-height: 27px;
    padding: 13px 10px;
    text-align: center;
    min-height: 75px;
}
.m-article table td:first-child {
    text-align: left;
}
.m-article ul {
    list-style-type: disc;
    font-size: 18px;
    line-height: 27px;
    text-align: justify;
    padding-left: 1.5em;
    margin-bottom: 20px;
    padding-left: 1.5em;
}
@media screen and (max-width: 767px) {
    .m-article .text-intro {
        margin: 0 -10px;
        background: #e4f4ff;
        padding: 10px;
    }
    .m-article table {
        width: 100%;
    }
    .m-article table th:first-child {
        width: 170px;
    }
    .m-article table th {
        font-size: 16px;
        line-height: 24px;
    }
    .m-article table td {
        font-size: 15px;
        line-height: 22px;
        text-align: left;
    }
}

@media screen and (max-width: 960px) {
    .m-detail_inner {
        flex-direction: column;
    }
    .m-detail_detail {
        width: 100%;
        padding: 0;
    }
    .m-detail_side {
        width: 100%;
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
        align-items: flex-start;
    }
}
@media screen and (max-width: 767px) {
    .m-detail_head-right {
        flex-wrap: wrap;
        gap: 10px;
    }
    .m-detail_side {
        flex-direction: column;
        align-items: center;
    }
    .box-doctor {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .box-doctor .right {
        width: auto;
        flex-direction: row;
    }
    .box-doctor .m-btn a {
        width: 115px;
    }
}
.p-contact .m-contact {
    margin-top: 23px;
}
@media screen and (max-width: 767px) {
    .p-contact main {
        display: flex;
        flex-direction: column;
    }
    .p-contact main .m-maps {
        order: 1;
    }
    .p-contact main .contact-information {
        order: 2;
    }
    .p-contact main .m-contact {
        order: 3;
        margin-bottom: 13px;
    }
}

.contact-information {
    background: #025899;
    padding: 19px 0 26px;
}
.contact-information .l-cm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.contact-information .l-cm li img {
    height: 62px;
    width: auto;
}
@media screen and (max-width: 875px) {
    .contact-information .l-cm {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .contact-information .l-cm li img {
        height: 50px;
    }
}

.m-maps {
    margin-top: 40px;
}
.m-maps_item {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 60px;
}
.m-maps_item .maps-info {
    width: 46.5833%;
}
.m-maps_item .maps-info .title {
    font-size: 22px;
    line-height: 33px;
    color: #025899;
    padding-bottom: 4px;
    border-bottom: 1px solid #025899;
    margin-bottom: 16px;
}
.m-maps_item .maps-info address {
    font-size: 18px;
    line-height: 27px;
    padding-left: 40px;
    background: url(../images/ico_location_bl.svg) no-repeat left top 4px;
    font-style: normal;
    margin-bottom: 7px;
}
.m-maps_item .maps-info .phone {
    font-size: 18px;
    line-height: 27px;
    padding-left: 40px;
    background: url(../images/ico_phone_bl.svg) no-repeat left top 4px;
}
.m-maps_item .maps-iframe {
    width: 48.75%;
}
.m-maps_item .maps-iframe iframe {
    display: block;
    width: 100%;
    height: 230px;
}
@media screen and (max-width: 767px) {
    .m-maps_item {
        flex-direction: column-reverse;
    }
    .m-maps_item .maps-info {
        width: 100%;
    }
    .m-maps_item .maps-info address,
    .m-maps_item .maps-info .phone {
        padding-left: 24px;
    }
    .m-maps_item .maps-iframe {
        width: 100%;
    }
}

.page-mv {
    margin-bottom: 30px;
}

.m-story {
    margin-bottom: 50px;
}

.l-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-bottom: 30px;
    margin-top: -23px;
}
.l-filter a {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: #fff;
    padding: 4px 25px;
    background: #025899;
    border-radius: 30px;
    display: block;
}
@media screen and (max-width: 767px) {
    .l-filter {
        flex-direction: column;
        margin-top: 0;
        gap: 15px;
    }
    .l-filter a {
        font-size: 18px;
        line-height: 27px;
        padding-left: 3px;
        padding-right: 3px;
        min-width: 260px;
        text-align: center;
    }
}

.l-story {
    gap: 50px 0;
}
.l-story .l-news_item .text {
    font-size: 15px;
    line-height: 22px;
}
@media screen and (max-width: 767px) {
    .l-story .l-news_item .text {
        font-size: 18px;
        line-height: 27px;
    }
}
@media screen and (max-width: 767px) {
    .l-story {
        gap: 20px 0;
    }
}

.p-story .m-detail {
    max-width: 855px;
    margin: 30px auto;
}
.p-story .m-detail_head {
    flex-direction: column;
}
.p-story .m-detail .post-title {
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 0;
}
.p-story .m-detail_video {
    margin-bottom: 40px;
}
.p-story .m-detail_video img {
    width: 100%;
}

.box-short {
    background: #e4f4ff;
    margin-bottom: 30px;
}
.box-short .title {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    padding: 9px 5px 6px;
}
.box-short .l-short {
    padding: 17px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.box-short .l-short > li {
    color: #000;
    font-size: 18px;
    line-height: 27px;
    background: url(../images/ico_check.svg) no-repeat left top 3px;
    padding-left: 34px;
}
.box-short .l-short > li span {
    font-weight: bold;
    color: #025899;
    margin-right: 11px;
}
@media screen and (max-width: 767px) {
    .box-short .l-short {
        gap: 0;
    }
    .box-short .l-short > li span {
        display: block;
    }
}

.ekip .ttl-primary {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
}

.l-ekip {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.l-ekip_item {
    width: 50%;
    padding: 20px;
    display: flex;
    align-items: flex-start;
}
.l-ekip_item .img {
    width: 165px;
    border-radius: 20px;
    overflow: hidden;
}
.l-ekip_item .info {
    flex: 1;
    padding-left: 25px;
}
.l-ekip_item .info span {
    display: block;
    font-size: 18px;
    line-height: 27px;
}
.l-ekip_item .info .pos {
    margin-bottom: 3px;
}
.l-ekip_item .info .ttl {
    color: #025899;
}
.l-ekip_item .info .name {
    font-weight: bold;
    color: #025899;
}
.l-ekip_item .info .gr-btn {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.l-ekip_item .info .m-btn a {
    font-weight: normal;
    width: 115px;
    padding-left: 5px;
    padding-right: 5px;
    height: 30px;
}
@media screen and (max-width: 767px) {
    .l-ekip_item {
        width: 100%;
    }
    .l-ekip_item.support {
        width: 50%;
        flex-direction: column;
    }
    .l-ekip_item.support .info {
        padding-left: 0;
        text-align: center;
        margin-top: 10px;
    }
}

.cus-images {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #025899;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    margin-bottom: 30px;
}
.cus-images .right {
    width: 275px;
}
.cus-images .left {
    flex: 1;
    padding-right: 30px;
    gap: 10px;
    display: flex;
}
.cus-images .left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cus-images .big-img {
    width: 274px;
    height: 357px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.cus-images .small-img {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.cus-images .small-img .ig {
    position: relative;
    height: 173px;
    border-radius: 20px;
    overflow: hidden;
}
.cus-images .small-img .ig::before {
    position: absolute;
    width: 90px;
    background: #025899;
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    padding: 3px 13px;
    bottom: 0;
    left: 0;
    border-top-right-radius: 20px;
    box-sizing: border-box;
    z-index: 1;
    text-align: center;
}
.cus-images .small-img .ig.after::before {
    content: "Trước";
}
.cus-images .small-img .ig.before::before {
    content: "Sau";
}
.cus-images .cus-info {
    padding-bottom: 15px;
    margin-bottom: 7px;
    border-bottom: 2px solid #025899;
}
.cus-images .cus-info .name {
    color: #000;
    font-size: 18px;
    line-height: 27px;
}
.cus-images .cus-info .name strong {
    font-size: 22px;
    line-height: 33px;
    color: #025899;
    margin-left: 8px;
}
.cus-images .cus-info .loc {
    font-size: 18px;
    line-height: 27px;
    color: #025899;
}
.cus-images .cus-service {
    font-size: 18px;
    line-height: 27px;
    color: #000;
    margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
    .cus-images {
        flex-wrap: wrap;
    }
    .cus-images .right {
        width: 100%;
    }
    .cus-images .left {
        width: 100%;
        padding-right: 0;
        flex: auto;
        margin-bottom: 17px;
    }
    .cus-images .big-img {
        width: 53%;
        height: 60vw;
        border-radius: 10px;
    }
    .cus-images .small-img .ig {
        height: 28.6vw;
        border-radius: 10px;
    }
    .cus-images .small-img .ig::before {
        width: 58px;
        font-size: 14px;
        line-height: 24px;
        padding: 1px 3px;
    }
    .cus-images .cus-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 10px;
    }
}

.m-cons {
    padding: 30px 0;
}

.l-cons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.l-cons_item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: #E4F4FF;
    border-radius: 10px;
}
.l-cons_item .img {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #025899;
}
.l-cons_item .info {
    flex: 1;
    padding-left: 55px;
}
.l-cons_item .info .ttl-bl {
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .l-cons_item {
        flex-direction: column;
        gap: 10px;
        position: relative;
        padding: 0;
        background: none;
    }
    .l-cons_item .img {
        width: 36px;
        height: 36px;
        position: absolute;
        left: 0;
        top: -5px;
    }
    .l-cons_item .img img {
        height: 19px;
    }
    .l-cons_item .info {
        padding: 0;
    }
    .l-cons_item .info .ttl-bl {
        padding-left: 50px;
    }
}

.m-trust {
    padding: 30px 0 0;
}

.l-trust {
    display: flex;
    margin: 0 -23px;
    gap: 30px 0;
    flex-wrap: wrap;
}
.l-trust_item {
    padding: 0 23px;
    width: 50%;
}
.l-trust_item .img {
    width: 294px;
    height: 294px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 0 auto -147px;
}
.l-trust_item .img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.l-trust_item .info {
    background: #E4F4FF;
    border: 1px solid #025899;
    border-radius: 20px;
    padding: 167px 17px 40px;
}
.l-trust_item .info .ttl-bl {
    text-align: center;
    margin-bottom: 20px;
}
.l-trust_item .m-btn {
    text-align: center;
    margin-top: 20px;
}
.l-trust_item .m-btn a {
    font-size: 18px;
    height: 34px;
}
@media screen and (max-width: 767px) {
    .l-trust_item {
        width: 100%;
    }
    .l-trust_item .img {
        width: 266px;
        height: 266px;
        margin-bottom: -133px;
    }
    .l-trust_item .info {
        padding-top: 150px;
    }
}

.m-reward.is-short .wrapper {
    max-width: 875px;
}
.m-reward.is-short .info {
    max-width: 480px;
}
.m-reward.is-short .img_item {
    margin-left: 20px;
}

.m-prize.is-short .wrapper {
    max-width: 875px;
}
.m-prize.is-short .l-prize .vec {
    margin-bottom: 17px;
}
.m-prize.is-short .l-prize .vec img {
    height: 46px;
}

.m-video.is-short .wrapper {
    max-width: 875px;
}
.m-video.is-short .m-video_inner {
    display: block;
}
.m-video.is-short .m-video_main {
    width: 100%;
    margin-bottom: 15px;
}
.m-video.is-short .l-video {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    margin: 0 -10px;
    padding-left: 0;
}
.m-video.is-short .l-video > li {
    width: 33.33333%;
    flex-direction: column;
    padding: 0 10px;
}
.m-video.is-short .l-video > li .vidplay {
    width: 100%;
}
.m-video.is-short .l-video > li .video-info {
    padding-left: 0;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .m-video.is-short .l-video > li {
        width: 50%;
        display: block;
    }
}

.box-information.is-short {
    max-width: 855px;
    margin: 0 auto 37px;
}
div.text > p{
    margin-bottom: 20px;
}
div.text > p:last-child{
    margin-bottom: 0;
}
.page-bnr {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 32px 0;
    margin-top: 50px;
    margin-bottom: 40px;
}
.page-bnr_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-bnr .left {
    flex: 1;
    max-width: 735px;
}
.page-bnr .left .ttl-primary {
    text-align: left;
    font-size: 34px;
    line-height: 51px;
    margin-bottom: 0;
}
.page-bnr .left strong {
    display: block;
    margin-bottom: 14px;
}
.page-bnr .left .text {
    color: #000;
    font-size: 18px;
    line-height: 33px;
    margin-bottom: 30px;
}
.page-bnr .right {
    width: 364px;
    height: 364px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}
.page-bnr .right img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .page-bnr {
        margin-top: 0;
    }
    .page-bnr_inner {
        flex-direction: column;
        gap: 20px;
    }
    .page-bnr .left {
        flex: auto;
    }
    .page-bnr .left .ttl-primary {
        font-size: 22px;
        line-height: 33px;
    }
    .page-bnr .left strong img {
        height: 24px;
    }
    .page-bnr .left .text {
        font-size: 16px;
        line-height: 24px;
    }
    .page-bnr .right {
        width: 300px;
        height: 300px;
    }
}

.m-about .ttl-secondary {
    margin-bottom: 20px;
}
.m-about .text {
    margin-bottom: 20px;
}
.m-about_block--is-col {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.m-about_block--is-col .right {
    width: 428px;
}
.m-about_block--is-col .left {
    flex: 1;
    padding-right: 90px;
}
@media screen and (max-width: 767px) {
    .m-about .ttl-secondary {
        font-size: 22px;
        line-height: 33px;
        margin-bottom: 10px;
    }
    .m-about_block--is-col {
        flex-direction: column;
        margin-bottom: 27px;
    }
    .m-about_block--is-col .right {
        width: 100%;
    }
    .m-about_block--is-col .left {
        flex: auto;
        padding-right: 0;
    }
    .m-about .text {
        color: #000;
    }
}

.box-nd {
    background: #e4f4ff;
    margin-bottom: 30px;
}
.box-nd .title {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    padding: 6px;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
}
.box-nd_inner {
    padding: 15px 20px;
}
.box-nd_inner .text:last-of-type {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .box-nd {
        margin: 0 -10px 28px;
    }
    .box-nd .title {
        text-align: left;
        font-size: 20px;
        line-height: 30px;
        padding: 8px 10px 4px 10px;
    }
    .box-nd_inner {
        padding: 12px 16px;
    }
}

.l-slogan {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -35px 60px;
    gap: 50px 0;
}
.l-slogan_item {
    width: 50%;
    padding: 0 35px;
    display: flex;
    align-items: center;
}
.l-slogan_item .img {
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    border: 1px solid #FFFFFF;
}
.l-slogan_item .info {
    flex: 1;
    padding-left: 20px;
}
.l-slogan_item .info strong {
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #025899;
    padding-bottom: 3px;
    border-bottom: 1px solid #025899;
    margin-bottom: 3px;
}
.l-slogan_item .info .text {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .l-slogan {
        margin: 0 0 27px;
        gap: 27px 0;
    }
    .l-slogan_item {
        width: 100%;
        padding: 0;
        align-items: flex-start;
    }
    .l-slogan_item:first-child .img img {
        height: 53px;
        left: 7px !important;
        top: 6px !important;
    }
    .l-slogan_item .img {
        width: 70px;
        height: 70px;
    }
    .l-slogan_item .img img {
        height: 38px;
    }
    .l-slogan_item .info strong {
        text-align: left;
        border: none;
        padding-bottom: 0;
    }
    .l-slogan_item .info .text {
        color: #000;
    }
}

.p-about .m-contact {
    margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
    .p-about .m-contact {
        margin-bottom: 30px;
    }
}

.p-reason .mv {
    margin-bottom: 30px;
}
.p-reason .intro {
    background: none;
}
.p-reason .m-contact {
    margin-bottom: 50px;
}

.m-noibat {
    margin-bottom: 30px;
}

.l-noibat {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
    gap: 18px 0;
}
.l-noibat > li {
    width: 50%;
    padding: 0 20px;
}
.l-noibat_item {
    display: flex;
    background: #E4F4FF;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.l-noibat_item .ico {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #025899;
}
.l-noibat_item .nd {
    flex: 1;
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    text-align: center;
}
.l-noibat_item .nd .text {
    margin-bottom: 0;
}

.m-commit {
    background: #f7f7f7;
    padding: 30px 0 20px;
}
.m-commit_ttl {
    text-align: center;
    margin-bottom: 40px;
}
.m-commit_ttl img {
    margin: 0 auto;
}
.m-commit_block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.m-commit_block:last-of-type {
    margin-bottom: 0;
}
.m-commit_block .img {
    width: 356px;
    overflow: hidden;
    border-radius: 20px;
}
.m-commit_block .img img {
    width: 100%;
}
.m-commit_block .l-commit {
    flex: 1;
    padding-left: 30px;
}
.m-commit_block--is-reverse .img {
    order: 2;
}
.m-commit_block--is-reverse .l-commit {
    padding-left: 0;
    padding-right: 30px;
}
.m-commit_block--is-reverse .l-commit_item:nth-child(odd) {
    background: none;
}
.m-commit_block--is-reverse .l-commit_item:nth-child(even) {
    background: #e4f4ff;
}

.l-commit_item {
    font-size: 18px;
    line-height: 27px;
    display: flex;
    align-items: center;
    padding: 17.5px 2px;
    min-height: 73px;
}
.l-commit_item p {
    display: flex;
}
.l-commit_item span {
    flex-shrink: 0;
    margin-right: 3px;
}
.l-commit_item:nth-child(odd) {
    background: #e4f4ff;
}
.l-commit_item .text {
    margin-bottom: 0;
}

@media screen and (max-width: 900px) {
    .l-noibat li {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .l-noibat_item .ico {
        width: 149px;
        padding: 10px;
    }
    .l-noibat_item .ico img {
        height: 35px;
    }
    .m-commit {
        background: #fff;
    }
    .m-commit_block {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
    }
    .m-commit_block .img {
        margin-bottom: 20px;
    }
    .m-commit_block .l-commit {
        padding: 0;
        order: 2;
        margin: 0 -10px;
    }
    .m-commit_block .l-commit_item {
        padding: 8px 13px;
    }
}
.doc-intro {
    background: #E4F4FF;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.p-doctors .m-contact {
    margin-bottom: 50px;
}

.l-doctors_item {
    display: flex;
    margin-bottom: 50px;
}
.l-doctors_images {
    width: 375px;
    overflow: hidden;
}
.l-doctors_images img {
    width: 100%;
}
.l-doctors_info {
    width: calc(100% - 375px);
    padding-left: 54px;
}
.l-doctors_info_inner {
    position: relative;
    padding-bottom: 190px;
    height: 100%;
}
.l-doctors_info .name {
    font-size: 22px;
    line-height: 33px;
    color: #025899;
    margin-bottom: 10px;
}
.l-doctors_info .certificate {
    max-width: 100%;
    padding-left: 8px;
}
.l-doctors .l-cer-img {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #025899;
    width: 100%;
    overflow: hidden;
}
.l-doctors .l-cer-img_item {
    width: auto !important;
}
.l-doctors .l-cer-img_item > div {
    padding: 5px;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
}
.l-doctors .l-cer-img_item > div img {
    height: 155px;
    width: auto;
}
.l-doctors .l-cer-img .slick-slider {
    width: 100%;
}
.l-doctors .l-cer-img .slick-arrow {
    display: none !important;
}
@media screen and (max-width: 767px) {
    .l-doctors_item {
        flex-direction: column;
    }
    .l-doctors_images {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .l-doctors_info {
        width: 100%;
        padding-left: 0;
    }
    .l-doctors_info .name {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
    }
    .l-doctors_info_inner {
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
    }
    .l-doctors_info_inner .m-btn {
        text-align: center;
        order: 1;
        margin-top: 20px;
    }
    .l-doctors .l-cer-img {
        position: relative;
        bottom: auto;
        left: auto;
        width: auto;
        margin: 0 -10px 0;
        padding: 0 10px;
        border: none;
    }
    .l-doctors .l-cer-img .swiper-btn {
        width: 20px;
        height: 20px;
        display: block;
    }
    .l-doctors .l-cer-img .swiper-btn.swiper-button-disabled {
        display: none;
    }
    .l-doctors .l-cer-img_item > div img {
        height: 110px;
    }
}

.p-doctung .mv {
    position: relative;
}
.p-doctung .mv .title {
    position: absolute;
    font-size: 2.08vw;
    color: #025899;
    top: 15.0769%;
    left: 52.7083%;
}
.p-doctung .mv .name {
    position: absolute;
    top: 24.4615%;
    left: 52.7083%;
    background: linear-gradient(270deg, #FF1F1F 0%, rgba(255, 105, 105, 0.932292) 50%, #FF1F1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 3.12vw;
    padding-top: 1%;
}
.p-doctung .mv .name::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, #FF1F1F 0%, rgba(255, 105, 105, 0.932292) 50%, #FF1F1F 100%);
}
.p-doctung .mv .text {
    position: absolute;
    top: 68.1538%;
    left: 53%;
    font-style: italic;
    font-size: 1.716vw;
    line-height: 1.1818;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-doctung .mv .title {
        top: 3.0769%;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        font-size: 7vw;
    }
    .p-doctung .mv .name {
        left: 50%;
        transform: translateX(-50%);
        font-size: 9.12vw;
        white-space: nowrap;
        padding-top: 2%;
        top: 9.4615%;
    }
    .p-doctung .mv .btn {
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        width: 44%;
        top: 41%;
    }
    .p-doctung .mv .btn img {
        width: 100%;
    }
    .p-doctung .mv .text {
        display: none;
    }
}

.about-bstung-banner{
    background: url("../images/bs-tung/bg.jpg.webp") no-repeat center/cover;
}
.about-bstung-banner .loibacsi{
    max-width: 800px;
}
.about-bs-banner{
    background: url("../../../../uploads/2023/08/anh-nen-scaled.webp") no-repeat center/cover;
}
.about-bs {
    padding: 50px 0;

    margin-bottom: 50px;
}
.about-bs .loibacsi {
    margin-top: 40px;
}
.about-bs .loibacsi quote {
    padding: 30px 10px;
    position: relative;
    display: block;
}
.about-bs .loibacsi quote::before, .about-bs .loibacsi quote::after {
    position: absolute;
    content: "";
    width: 29px;
    height: 20px;
    background-size: 100%;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .about-bs .loibacsi quote::before, .about-bs .loibacsi quote::after {
        width: 24px;
        height: 17px;
    }
}
.about-bs .loibacsi quote::before {
    top: 0;
    left: 0;
    background-image: url(../images/ico_quote.svg);
}
@media screen and (max-width: 767px) {
    .about-bs .loibacsi quote::before {
        top: 7px;
        left: 10px;
    }
}
.about-bs .loibacsi quote::after {
    bottom: 0;
    right: 0;
    background-image: url(../images/ico_quote_rev.svg);
}
@media screen and (max-width: 767px) {
    .about-bs .loibacsi quote::after {
        bottom: 10px;
        right: 7px;
    }
}
.about-bs .loibacsi .text {
    font-style: italic;
    color: #025899;
}
.about-bs .loibacsi .signature {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    text-align: right;
    margin-top: 27px;
}
.about-bs .wrap {
    display: flex;
    align-items: flex-end;
    gap: 40px;
}
.about-bs .wrap .loibacsi {
    flex: 1;
}
.about-bs .wrap .loibacsi .text {
    text-align: justify;
}
.about-bs .wrap .img-doc {
    width: 405px;
}
@media screen and (max-width: 860px) {
    .about-bs .wrap {
        flex-direction: column;
    }
    .about-bs .wrap .loibacsi {
        max-width: 100%;
    }
    .about-bs .wrap .loibacsi .text {
        text-align: justify;
    }
    .about-bs .wrap .img-doc {
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .about-bs .ttl-primary {
        margin-bottom: 20px;
    }
    .about-bs .loibacsi .img {
        max-width: 265px;
        margin: 0 auto 10px;
    }
}

.hocvan {
    margin-bottom: 50px;
}
.hocvan .gr-images {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.hocvan .gr-images .big-img {
    width: 66.916%;
}
.hocvan .gr-images .small-img {
    width: 32.333%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hocvan .l-doctors_info {
    padding-left: 30px;
}
.hocvan .l-doctors_info .l-cer-img {
    border: none;
    padding: 0 10px;
    width: 99%;
    overflow: visible;
}
.hocvan .l-doctors_info .l-cer-img_wrap {
    overflow: hidden;
}
.hocvan .l-doctors_info .certificate {
    margin-bottom: 0;
}
.hocvan .l-doctors .swiper-prev {
    left: -23px;
}
.hocvan .l-doctors .swiper-next {
    right: -23px;
}
.hocvan .l-doctors_item {
    margin-bottom: 30px;
}
.hocvan .text {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .hocvan {
        margin-bottom: 20px;
    }
    .hocvan .gr-images {
        flex-direction: column;
    }
    .hocvan .gr-images .big-img {
        width: 100%;
    }
    .hocvan .gr-images .small-img {
        width: 100%;
    }
    .hocvan .l-doctors .swiper-prev {
        left: 6px;
    }
    .hocvan .l-doctors .swiper-next {
        right: 6px;
    }
    .hocvan .l-doctors .certificate {
        margin-bottom: 20px;
    }
    .hocvan .l-doctors_info {
        padding-left: 0;
    }
    .hocvan .l-doctors_info .l-cer-img {
        padding: 0 14px;
        width: auto;
    }
}

.video .fig-title {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    margin-top: 19px;
}
@media screen and (max-width: 767px) {
    .video .fig-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
}

.m-doc-demo .text {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .m-doc-demo {
        background: #f7f7f7;
        padding: 20px 0;
        margin-bottom: 30px;
    }
}

.l-demo {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.l-demo_item {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 50px;
}
.l-demo_item .wrap {
    padding: 10px 16px;
    padding-right: 9px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    overflow: hidden;
}
.l-demo_item .demo-img {
    display: flex;
    justify-content: space-between;
    margin-bottom: 33px;
}
.l-demo_item .demo-img .img-big {
    width: 54.6112%;
}
.l-demo_item .demo-img .img-small {
    width: 44.11%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.l-demo_item .demo-img .img-small .img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.l-demo_item .demo-img .img-small .img::before {
    position: absolute;
    width: 90px;
    background: #025899;
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    padding: 3px 13px;
    bottom: 0;
    left: 0;
    border-top-right-radius: 20px;
    box-sizing: border-box;
}
.l-demo_item .demo-img .img-small .img.after::before {
    content: "Sau";
}
.l-demo_item .demo-img .img-small .img.before::before {
    content: "Trước";
}
.l-demo_item .demo-info_name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 21px;
}
.l-demo_item .demo-info_name .name {
    font-size: 22px;
    line-height: 27px;
    color: #025899;
}
.l-demo_item .demo-info_name .lca {
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
    color: #535353;
}
.l-demo_item .demo-info .type,
.l-demo_item .demo-info .implant {
    font-size: 18px;
    line-height: 27px;
    color: #535353;
    padding-left: 40px;
}
.l-demo_item .demo-info .type {
    background: url(../images/bs-tung/ico_plant.svg) no-repeat left top 3px;
    margin-bottom: 8px;
}
.l-demo_item .demo-info .implant {
    background: url(../images/bs-tung/ico_implant.svg) no-repeat left 6px top 4px;
}
@media screen and (max-width: 767px) {
    .l-demo_item {
        width: 100%;
        margin-bottom: 15px;
    }
    .l-demo_item .wrap {
        padding: 7px 7px 20px;
    }
    .l-demo_item .demo-img {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .l-demo_item .demo-img .img-big {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 4px;
    }
    .l-demo_item .demo-img .img-big img {
        width: 100%;
    }
    .l-demo_item .demo-img .img-small {
        width: auto;
        flex-direction: row;
        margin: 0 -3px;
    }
    .l-demo_item .demo-img .img-small .img {
        width: 50%;
        padding: 0 3px;
        border-radius: 10px;
    }
    .l-demo_item .demo-img .img-small .img::before {
        width: 59px;
        font-size: 16px;
        line-height: 24px;
        padding: 1px 0px;
        left: 3px;
        text-align: center;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    .l-demo_item .demo-img .img-small img {
        width: 100%;
    }
    .l-demo_item .demo-info .type,
    .l-demo_item .demo-info .implant {
        font-size: 16px;
        line-height: 24px;
    }
    .l-demo_item .demo-info_name {
        margin-bottom: 10px;
    }
    .l-demo_item .demo-info_name .name {
        font-size: 18px;
        line-height: 27px;
    }
}

.customer-review .text {
    margin-bottom: 20px;
}

.m-review {
    display: flex;
    margin-bottom: 15px;
}
.m-review_img {
    width: 49.25%;
    overflow: hidden;
    border-radius: 20px;
}
.m-review_img img {
    width: 100%;
    height: 385px;
}
.m-review_info {
    width: 50.75%;
    padding-left: 9px;
    border-radius: 20px;
}
.m-review_info .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: #025899;
    border-radius: 20px 20px 0 0;
    padding: 13px;
}
.m-review_info .body {
    background: #e4f4ff;
    padding: 31px 13px 25px;
    border-radius: 0 0 20px 20px;
}

@media screen and (min-width: 767px){
    .m-review_info .body {
        height: 300px;
    }
}

.m-review_info .body .text {
    position: relative;
    margin-bottom: 0;
}
.m-review_info .body .text::before, .m-review_info .body .text::after {
    position: absolute;
    content: "";
    width: 21px;
    height: 15px;
    background-size: 100%;
    background-repeat: no-repeat;
}
.m-review_info .body .text::before {
    top: -19px;
    left: 0;
    background-image: url(../images/ico_quote.svg);
}
.m-review_info .body .text::after {
    bottom: -19px;
    right: 0;
    background-image: url(../images/ico_quote_rev.svg);
}
.m-review_info .name {
    width: 100%;
    position: relative;
}
.m-review_info .name span {
    display: block;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
}
.m-review_info .name .nm {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    line-height: 33px;
}
.m-review_info .name .nm small {
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    margin-left: 14px;
    margin-top: 3px;
}
.m-review_info .lca {
    color: #fff;
    font-size: 18px;
    line-height: 27px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.m-review.is-reverse .m-review_info {
    order: 1;
    padding-left: 0;
    padding-right: 9px;
}
.m-review.is-reverse .m-review_img {
    order: 2;
}
@media screen and (max-width: 767px) {
    .m-review {
        flex-direction: column;
        gap: 20px;
    }
    .m-review_img {
        width: 100%;
        order: 1;
    }
    .m-review_info {
        width: 100%;
        order: 2 !important;
        padding: 0 !important;
    }
    .m-review_info .head {
        flex-direction: column;
        align-items: flex-start;
        padding: 6px;
        position: relative;
    }
    .m-review_info .head .lca {
        position: absolute;
        right: 0;
        top: 0;
    }
    .m-review_info .head .img {
        border-radius: 20px;
        overflow: hidden;
    }
    .m-review_info .head .name {
        width: 100%;
        position: relative;
        margin-top: 10px;
    }
    .m-review_info .head .name .nm {
        justify-content: space-between;
    }
}

.l-clip {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px 40px;
}
.l-clip li {
    width: 50%;
    padding: 0 16px;
}
@media screen and (max-width: 767px) {
    .l-clip {
        margin-left: 0;
        margin-right: 0;
        gap: 20px;
    }
    .l-clip li {
        width: 100%;
        padding: 0;
    }
}

.hinhdanh {
    margin-bottom: 20px;
}
.hinhdanh .wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.hinhdanh strong {
    font-weight: normal;
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .hinhdanh .wrap {
        flex-direction: column;
    }
}

.p-doctung .l-paper {
    display: flex;
    margin: 0 -23px;
}
.p-doctung .l-paper .slick-dots {
    display: none !important;
}
@media screen and (max-width: 767px) {
    .p-doctung .l-paper {
        margin: 0;
    }
}
.p-doctung .m-paper {
    background: #f7f7f7;
    padding-top: 17px;
}
.p-doctung .m-paper_item {
    width: 33.3333%;
}
.p-doctung .m-contact {
    margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
    .p-doctung .l-paper {
        flex-direction: column;
    }
    .p-doctung .m-paper_item {
        width: 100%;
    }
}

.p-basis .m-contact {
    margin-bottom: 50px;
}
.p-basis .mv {
    position: relative;
}
.p-basis .mv .ttx {
    position: absolute;
    font-size: 2.6vw;
    top: 23.0769%;
    left: 35%;
    font-weight: normal;
}
.p-basis .mv strong {
    position: absolute;
    display: flex;
    justify-content: center;
    background: #025899;
    height: 12.7692%;
    width: 38.1771%;
    top: 34.4615%;
    left: 26.875%;
}
.p-basis .mv strong img {
    width: 37.10777%;
}
.p-basis .mv .ttl {
    position: absolute;
    width: 38.1771%;
    left: 26.875%;
    top: 51.5385%;
}
.p-basis .mv .ttl img {
    width: 100%;
}
.p-basis .mv .btn {
    position: absolute;
    width: 14.0625%;
    top: 73.5385%;
    left: 38.8542%;
}
@media screen and (max-width: 767px) {
    .p-basis .mv .ttx {
        font-size: 6.2vw;
        top: 6.0769%;
        left: 50%;
        transform: translateX(-50%);
    }
    .p-basis .mv strong {
        height: auto;
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px;
        top: 14%;
    }
    .p-basis .mv strong img {
        width: 74.10777%;
    }
    .p-basis .mv .ttl {
        width: 77.1771%;
        left: 50%;
        transform: translateX(-50%);
        top: 27%;
    }
    .p-basis .mv .btn {
        top: 40.5385%;
        left: 50%;
        transform: translateX(-50%);
        width: 44%;
    }
}

.m-basis .ttl-secondary {
    margin-bottom: 20px;
}
.m-basis .ttl-bl {
    margin-bottom: 20px;
}
.m-basis .text {
    margin-bottom: 20px;
}
.m-basis .image {
    margin-bottom: 20px;
}
.m-basis .image img {
    margin: 0 auto;
}

.gr-img {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.gr-img .big-img {
    width: 60.4167%;
}
.gr-img .side-img {
    width: 38.9167%;
}
.gr-img .small-img {
    width: 38.9167%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}
.gr-img .small-img .img {
    width: 49.2505%;
}
.gr-img.gr02 .big-img {
    width: 49.5833%;
}
@media screen and (max-width: 767px) {
    .gr-img.gr02 {
        flex-direction: column;
        gap: 4px;
    }
    .gr-img.gr02 .big-img {
        width: 100%;
    }
}
.gr-img.gr03 .big-img {
    width: 59.75%;
}
.gr-img.gr03 .big-img.small {
    width: 39.0833%;
}
@media screen and (max-width: 767px) {
    .gr-img.gr03 {
        flex-direction: column;
        gap: 4px;
    }
    .gr-img.gr03 .big-img {
        width: 100%;
    }
}

.p-camket .article-title {
    margin-bottom: 10px;
    margin-top: 30px;
}

.p-service .mv {
    position: relative;
    display: block;
}
.p-service .mv .ttl {
    position: absolute;
    font-size: 2.08vw;
    top: 19.38461%;
    left: 9.375%;
    font-weight: normal;
    color: #025899;
}
.p-service .mv .txt {
    position: absolute;
    font-size: 1.352vw;
    top: 55.38461%;
    left: 9.375%;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
    color: #2b2b2b;
}
.p-service .mv .btn {
    position: absolute;
    width: 14.5%;
    left: 18.791%;
    top: 76.46153%;
}
.p-service .mv .btn img {
    width: 100%;
}
.p-service .l-doctors_info .l-cer-img {
    border: none;
    padding: 0 10px;
    width: 99%;
    overflow: visible;
}
.p-service .l-doctors_info .l-cer-img_wrap {
    overflow: hidden;
}
.p-service .l-doctors .swiper-prev {
    left: -23px;
}
.p-service .l-doctors .swiper-next {
    right: -23px;
}
.p-service .l-doctors_item {
    margin-bottom: 30px;
}
.p-service .l-doctors_info {
    padding-left: 30px;
}
.p-service .l-doctors_info .certificate {
    margin-bottom: 19px;
}
.p-service .l-prize {
    gap: 50px;
}
.p-service .m-prize {
    margin-top: 30px;
    padding: 50px 0;
}
.p-service .m-paper {
    background: #f7f7f7;
}
.p-service .m-paper .slick-dots {
    display: none !important;
}
.p-service .m-contact {
    margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
    .p-service .l-doctors .swiper-next {
        right: 10px;
    }
    .p-service .l-doctors .swiper-prev {
        left: 10px;
    }
    .p-service .l-doctors_info {
        padding-left: 0;
    }
    .p-service .l-doctors_info .l-cer-img {
        width: auto;
    }
    .p-service .l-demo {
        margin: 0;
    }
    .p-service .l-prize {
        gap: 20px 0;
        justify-content: center;
    }
    .p-service .mv .ttl {
        font-size: 6.08vw;
        top: 4.38461%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        white-space: nowrap;
    }
    .p-service .mv .ttl span {
        display: block;
        background: linear-gradient(270deg, #FF1F1F 0%, rgba(255, 105, 105, 0.932292) 50%, #FF1F1F 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        font-weight: bold;
        font-size: 8vw;
    }
    .p-service .mv .txt {
        display: none;
    }
    .p-service .mv .btn {
        top: 40.5385%;
        left: 50%;
        transform: translateX(-50%);
        width: 44%;
    }
}

.m-problem {
    background: #f7f7f7;
    padding: 50px 0;
    margin-bottom: 30px;
}
.m-problem_inner {
    display: flex;
}
.m-problem .left {
    flex: 1;
    padding-right: 55px;
}
.m-problem .right {
    width: 509px;
    border-radius: 30px;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .m-problem_inner {
        flex-direction: column;
        gap: 20px;
    }
    .m-problem .right {
        width: 100%;
    }
    .m-problem .left {
        padding-right: 0;
    }
}

.l-check li {
    font-size: 18px;
    line-height: 27px;
    padding-left: 35px;
    background: url(../images/ico_check.svg) no-repeat left top 3px;
}
@media screen and (max-width: 767px) {
    .l-check li {
        background-position: left 4px top 3px;
    }
}

.m-giaiphap {
    margin-bottom: 35px;
}

.l-giaiphap {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
}
.l-giaiphap li {
    width: 25%;
    text-align: center;
}
.l-giaiphap li .img {
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .l-giaiphap {
        flex-wrap: wrap;
        gap: 20px 0;
        margin: 0 -10px 30px;
    }
    .l-giaiphap li {
        width: 50%;
        padding: 0 10px;
    }
    .l-giaiphap li p {
        text-align: center;
    }
}

.box-phacdo {
    border-radius: 30px;
    overflow: hidden;
    display: flex;
}
.box-phacdo_inner {
    width: 50%;
    padding: 29px 40px;
    background: #025899;
}
.box-phacdo .img {
    width: 50%;
    position: relative;
}
.box-phacdo .img img {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.box-phacdo .ttl-primary {
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 9px;
}
.box-phacdo .text {
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}
.box-phacdo .text:last-of-type {
    margin-bottom: 0;
}
.box-phacdo .row {
    margin-bottom: 18px;
}
.box-phacdo .row:last-of-type {
    margin-bottom: 30px;
}
.box-phacdo .m-btn {
    text-align: center;
    margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
    .box-phacdo {
        flex-direction: column;
    }
    .box-phacdo_inner {
        width: 100%;
        order: 2;
        padding: 15px;
    }
    .box-phacdo .img {
        width: 100%;
        order: 1;
    }
    .box-phacdo .img img {
        position: relative;
    }
}

.m-chuyensau {
    padding: 20px 0;
    background: #f7f7f7;
    margin-bottom: 38px;
}

.box-quote {
    background: linear-gradient(90deg, #E4F4FF 0%, rgba(255, 255, 255, 0.5) 104.5%);
    padding: 11px 50px;
    position: relative;
}
.box-quote::before, .box-quote::after {
    position: absolute;
    content: "";
    width: 21px;
    height: 15px;
    background-size: 100%;
    background-repeat: no-repeat;
}
.box-quote::before {
    top: 6px;
    left: 8px;
    background-image: url(../images/ico_quote.svg);
}
.box-quote::after {
    bottom: 8px;
    right: 6px;
    background-image: url(../images/ico_quote_rev.svg);
}
.box-quote .text {
    font-style: italic;
    color: #025899;
}

.m-flow {
    padding-top: 50px;
    padding-bottom: 30px;
    background: #f7f7f7;
    margin-bottom: 30px;
}

.l-flow_item {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #E4F4FF 0%, rgba(255, 255, 255, 0.5) 104.5%);
    border-radius: 25px;
    overflow: hidden;
    border-left: 25px solid #025899;
    padding: 13px 0px 13px 40px;
    margin-bottom: 30px;
}
.l-flow_item:last-of-type {
    margin-bottom: 0;
}
.l-flow_item .img {
    width: 200px;
}
.l-flow_item .info {
    flex: 1;
    padding-right: 75px;
}
.l-flow_item .info .ttl-secondary {
    margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
    .l-flow_item {
        border-radius: 0;
        padding: 20px 7px;
        flex-direction: column;
        border: none;
        margin: 0 -10px 20px;
    }
    .l-flow_item .info {
        width: 100%;
        padding: 0;
        margin-bottom: 0;
    }
    .l-flow_item .info .text {
        margin-bottom: 0;
    }
    .l-flow_item .info .ttl-secondary {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 20px;
    }
    .l-flow_item .info .ttl-secondary img {
        width: 128px;
    }
    .l-flow_item .img {
        margin-top: 20px;
    }
}

.m-price {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .m-price .doc-intro {
        background: #fff;
        padding: 0;
    }
}

.box-uudai {
    background: #025899;
    padding: 33px 0px 43px;
    margin-bottom: 50px;
}
.box-uudai .l-outstand {
    margin-bottom: 0;
}
.box-uudai .l-outstand li a {
    padding-left: 40px;
}
.box-uudai .l-outstand li::after {
    position: absolute;
    content: ".";
    width: 4px;
    height: 4px;
    border-radius: 3px;
    left: 23px;
    top: 20px;
    background: #000;
}
@media screen and (max-width: 767px) {
    .box-uudai {
        padding-bottom: 20px;
    }
    .box-uudai .l-outstand li::before {
        display: none;
    }
    .box-uudai .l-outstand li::after {
        left: 8px;
        top: 18px;
        background: #fff;
    }
    .box-uudai .l-outstand li a {
        padding-left: 20px;
        background: none;
        color: #fff;
    }
    .box-uudai .l-outstand li a::before, .box-uudai .l-outstand li a::after {
        display: none;
    }
}

.l-uudai {
    margin: 0 -9px 40px;
    display: flex;
    flex-wrap: wrap;
}
.l-uudai_item {
    width: 25%;
    padding: 0 9px;
}
.l-uudai_item .inner {
    background: #FFFFFF;
    border: 2px solid #025899;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    overflow: hidden;
}
.l-uudai_item .heading {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    border-bottom: 2px solid #025899;
    padding: 15px 2px 7px;
}
.l-uudai_item .heading strong {
    display: block;
    font-size: 25px;
    line-height: 38px;
    color: #025899;
    margin-top: -5px;
}
.l-uudai_item .body {
    padding: 8px 0 18px;
}
.l-uudai_item .body .img {
    width: 200px;
    margin: 0 auto 20px;
    position: relative;
}
.l-uudai_item .body .img .ico {
    position: absolute;
    top: 6px;
    right: -29px;
    z-index: 1;
}
.l-uudai_item .body .img_inner {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border: 2px solid #025899;
    border-radius: 50%;
}
.l-uudai_item .body .img_inner img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.l-uudai_item .body .price {
    display: block;
    text-align: center;
    font-size: 25px;
    line-height: 1;
}
.l-uudai_item .body .price.text {
    font-size: 22px;
    line-height: 33px;
    color: #025899;
    margin-bottom: -8px;
}
.l-uudai_item .body .price.old-price {
    text-decoration: line-through;
}
.l-uudai_item .body .price.current-price {
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    color: #025899;
}
.l-uudai_item .body .price.new-price {
    font-size: 30px;
    line-height: 1;
    background: linear-gradient(270deg, #FF1F1F 0%, rgba(255, 105, 105, 0.932292) 50%, #FF1F1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: flex;
    justify-content: center;
    margin-top: 4px;
}
.l-uudai_item .body .price.new-price small {
    font-size: 20px;
}
.l-uudai_item .body .m-btn {
    text-align: center;
    margin-top: 20px;
}
.l-uudai_item .body .m-btn a {
    font-size: 18px;
    line-height: 27px;
    height: 34px;
}
@media screen and (max-width: 1150px) {
    .l-uudai {
        gap: 20px 0;
    }
    .l-uudai_item {
        width: 50%;
    }
}
@media screen and (max-width: 767px) {
    .l-uudai {
        margin: 0 -2px 20px;
    }
    .l-uudai_item {
        padding: 0 2px;
    }
    .l-uudai_item .heading {
        background: #025899;
        color: #fff;
        font-size: 14px;
        line-height: 24px;
        padding: 7px 2px 1px;
    }
    .l-uudai_item .heading strong {
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        font-size: 18px;
        line-height: 27px;
    }
    .l-uudai_item .body {
        padding-top: 15px;
    }
    .l-uudai_item .body .img {
        width: 100%;
        text-align: center;
    }
    .l-uudai_item .body .img .ico {
        width: 46px;
        height: 46px;
        right: 11px;
    }
    .l-uudai_item .body .img_inner {
        width: 116px;
        height: 116px;
        margin: 0 auto;
    }
    .l-uudai_item .body .price {
        font-size: 18px;
    }
    .l-uudai_item .body .price.current-price {
        font-size: 24px;
    }
    .l-uudai_item .body .price.new-price {
        font-size: 20px;
    }
    .l-uudai_item .body .price.new-price small {
        font-size: 16px;
    }
    .l-uudai_item .body .price.text {
        font-size: 16px;
        line-height: 24px;
    }
    .l-uudai_item .body .m-btn {
        margin-top: 10px;
    }
    .l-uudai_item .body .m-btn a {
        font-size: 16px;
        padding: 0 16px;
    }
    .l-uudai.is-reverse .heading {
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        color: #2b2b2b;
    }
    .l-uudai.is-reverse .heading strong {
        color: #025899;
        -webkit-text-fill-color: #025899;
    }
}

.m-faq {
    padding-bottom: 34px;
}

.l-faq_item {
    padding: 30px 0;
    border-bottom: 1px solid #025899;
}
.l-faq_item .heading {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.l-faq_item .m-btn a {
    font-size: 15px;
    line-height: 22px;
    height: 30px;
    padding: 0 2px;
    min-width: 79px;
}
.l-faq_item .answer {
    padding: 20px 0 0 26px;
    display: none;
}
.l-faq_item .answer .text span {
    font-weight: bold;
    color: #025899;
}
.l-faq_item .answer .text strong {
    display: block;
    font-weight: bold;
}
.l-faq.is-special .answer {
    padding-left: 0;
}
@media screen and (max-width: 767px) {
    .l-faq {
        margin: 0 -10px;
    }
    .l-faq_item {
        position: relative;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 70px;
    }
    .l-faq_item .m-btn {
        position: absolute;
        bottom: 20px;
        right: 18px;
    }
    .l-faq_item .m-btn a {
        font-weight: normal;
    }
    .l-faq .answer {
        padding-left: 0;
    }
}

.m-cus {
    padding-top: 40px;
}
.m-cus .slick-next {
    right: -25px;
}
.m-cus .slick-prev {
    left: -25px;
}
@media screen and (max-width: 767px) {
    .m-cus .slick-next {
        right: 2px;
    }
    .m-cus .slick-prev {
        left: 2px;
    }
}

.p-all-in .mv {
    position: relative;
    display: block;
}
.p-all-in .mv .text {
    position: absolute;
    left: 15.4166%;
    top: 19.5385%;
    font-size: 2.08vw;
    color: #025899;
    line-height: 1;
}
.p-all-in .mv .ttl {
    position: absolute;
    top: 28.76923%;
    left: 19.6875%;
    font-size: 2.6vw;
    background: linear-gradient(270deg, #FF1F1F 0%, rgba(255, 105, 105, 0.932292) 50%, #FF1F1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: bold;
}
.p-all-in .mv .txt {
    position: absolute;
    font-size: 1.352vw;
    top: 64.38461%;
    left: 9.28125%;
    font-style: italic;
    text-align: center;
    color: #2b2b2b;
    line-height: 1.5;
}
.p-all-in .mv .btn {
    position: absolute;
    width: 14.5%;
    left: 18.94791%;
    top: 79.6923%;
}
.p-all-in .mv .btn img {
    width: 100%;
}
.p-all-in .m-doc-demo {
    background: #f7f7f7;
    padding: 30px 0 1px;
    margin-bottom: 30px;
}
.p-all-in .box-phacdo {
    background: url(../images/allinone/bg.png) no-repeat right center/100% auto;
}
.p-all-in .box-phacdo_inner {
    width: 686px;
    max-width: 100%;
    padding: 50px 60px;
}
.p-all-in .box-phacdo_inner .text:last-of-type {
    margin-bottom: 20px;
}
.p-all-in .box-phacdo_inner .m-btn {
    margin-top: 40px;
}
.p-all-in .intro {
    background: #fff;
}
.p-all-in .m-paper {
    background: #f7f7f7;
}
.p-all-in .m-paper .slick-dots {
    display: none !important;
}
.p-all-in .m-contact {
    margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
    .p-all-in .box-phacdo_inner {
        width: 100%;
        padding: 20px;
    }
    .p-all-in .mv .ttl {
        font-size: 9.08vw;
        top: 11.38461%;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .p-all-in .mv .text {
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        font-size: 7vw;
        top: 6%;
    }
    .p-all-in .mv .txt {
        display: none;
    }
    .p-all-in .mv .btn {
        top: 40.5385%;
        left: 50%;
        transform: translateX(-50%);
        width: 44%;
    }
}

.m-worry {
    padding: 30px 0;
}
.m-worry .doc-intro {
    text-align: center;
}
.m-worry_content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(90deg, #E4F4FF 0%, rgba(255, 255, 255, 0.5) 104.5%);
    border-radius: 30px 0 0 30px;
    position: relative;
    padding: 14px 0 14px 60px;
}
.m-worry_content::before {
    position: absolute;
    content: "";
    width: 14px;
    height: calc(100% - 16px);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #025899;
    border-radius: 30px 0px 0px 30px;
}
.m-worry_content .img {
    width: 383px;
}
.m-worry_content .l-worry {
    max-width: 670px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 23px;
}
.m-worry_content .l-worry .ttl-secondary {
    margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
    .m-worry {
        background: linear-gradient(90deg, #E4F4FF 0%, rgba(255, 255, 255, 0.5) 104.5%);
    }
    .m-worry .doc-intro {
        background: none;
        padding: 0;
    }
    .m-worry_content {
        flex-direction: column-reverse;
        border: none;
        padding: 0;
    }
    .m-worry_content::before {
        display: none;
    }
    .m-worry_content .img {
        width: 100%;
    }
    .m-worry_content .l-worry {
        width: 100%;
    }

    .m-worry_content img.is-sp{
        margin: auto;
    }
}

.m-tech {
    padding: 30px 0;
    background: #f7f7f7;
}
.m-tech_info {
    margin-top: 45px;
    display: flex;
}
.m-tech_info .img {
    width: 330px;
}
.m-tech_info .content {
    flex: 1;
    padding-left: 40px;
}
.m-tech_info .content .ttl-secondary {
    border-bottom: 1px solid #025899;
    margin-bottom: 15px;
}
.m-tech_info .content_block {
    margin-bottom: 48px;
}
.m-tech_info .content_block:last-of-type {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .m-tech_info {
        flex-direction: column;
        gap: 20px;
    }
    .m-tech_info .img {
        width: 100%;
    }
    .m-tech_info .content {
        width: 100%;
        padding-left: 0;
    }
    .m-tech_info .content_block {
        margin-bottom: 20px;
    }
    .m-tech_info .content img {
        margin-bottom: 20px;
    }
}

.m-goods {
    padding: 30px 0;
}
.m-goods_block {
    display: flex;
    gap: 70px;
    margin-bottom: 30px;
}
.m-goods_block:last-of-type {
    margin-bottom: 0;
}
.m-goods_block .img {
    /*  width: 344px;*/
}
.m-goods_block .l-goods {
    flex: 1;
}
.m-goods_block.is-rev .img {
    order: 1;
}
.m-goods_block.is-rev .l-goods {
    order: 2;
}
@media screen and (max-width: 767px) {
    .m-goods_block {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .m-goods_block .img {
        width: 100%;
        order: 1;
    }
    .m-goods_block .l-goods {
        width: 100%;
        order: 2;
    }
}

.l-goods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.l-goods .ttl-secondary {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}
.l-goods .ttl-secondary::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0;
    top: 14px;
    background: #025899;
}
@media screen and (max-width: 767px) {
    .l-goods .ttl-secondary::before {
        left: 4px;
        top: 9px;
    }
}

.m-risks {
    margin-top: 30px;
    padding-bottom: 30px;
}
.m-risks .text {
    margin-bottom: 20px;
}

.l-risk {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
    margin: 0 -30px;
}
.l-risk_item {
    width: 50%;
    padding: 0 30px;
}
.l-risk_item.w100 {
    width: 100%;
}
.l-risk .ttl {
    max-width: 343px;
    padding: 9px 10px;
    padding-right: 0;
    background: #025899;
    border-radius: 0px 30px 0px 0px;
    margin-bottom: 20px;
}
.l-risk .ttl .ttl-secondary {
    color: #fff;
}
@media screen and (max-width: 767px) {
    .l-risk .ttl {
        padding-top: 3px;
        padding-bottom: 3px;
    }
}
@media screen and (max-width: 767px) {
    .l-risk_item {
        width: 100%;
    }
}

.m-why {
    background: url(../images/allinone/bg_why.jpg) no-repeat right center/cover;
    padding: 30px 0;
}
.m-why .text {
    max-width: 825px;
    text-align: justify;
}
@media screen and (max-width: 767px) {
    .m-why {
        background: #f7f7f7;
    }
}

.m-3points {
    padding: 30px 0;
}

.l-3points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.l-3points_item {
    display: flex;
    gap: 50px;
}
.l-3points_item .img {
    width: 400px;
}
.l-3points_item .info {
    flex: 1;
}
.l-3points_item .info .title {
    display: flex;
    align-items: center;
    max-width: 340px;
    background: #e4f4ff;
    border-radius: 20px;
    margin-bottom: 13px;
}
.l-3points_item .info .point {
    font-weight: bold;
    color: #fff;
    font-size: 34px;
    line-height: 51px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #025899;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 17px;
}
@media screen and (max-width: 767px) {
    .l-3points {
        gap: 40px;
    }
    .l-3points_item {
        flex-direction: column;
        gap: 20px;
    }
    .l-3points_item .img {
        width: 100%;
        order: 2;
        /*    display: none;*/
    }
    .l-3points_item .info {
        width: 100%;
    }
    .l-3points_item .info .point {
        font-size: 18px;
        width: 28px;
        height: 28px;
        margin-right: 13px;
    }
}

.bg-uudai {
    position: relative;
}
.bg-uudai img {
    width: 100%;
}
.bg-uudai .btn {
    position: absolute;
    width: 14.5%;
    left: 19.0625%;
    top: 80.18181%;
}
.bg-uudai .btn img {
    width: 100%;
}

.m-phacdo {
    max-width: 875px;
    margin: 0 auto;
    padding-bottom: 40px;
}
.m-phacdo .heading {
    text-align: center;
}
.m-phacdo .heading .ttl-primary {
    margin-bottom: 7px;
}
.m-phacdo .doc-intro {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .m-phacdo_inner {
        margin: 0 -10px;
    }
}

.l-dots {
    font-size: 18px;
    line-height: 27px;
    margin: 13px 0;
    padding-left: 18px;
}
.l-dots li {
    position: relative;
    padding-left: 20px;
}
.l-dots li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    top: 11px;
    left: 4px;
}

.note {
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    font-weight: bold;
    padding: 7px 17px 6px;
    margin-bottom: 30px;
}
.note .l-check li {
    color: #025899;
}

.l-steps_block {
    margin-bottom: 30px;
}
.l-steps_block .title {
    max-width: 475px;
    background: #E4F4FF;
    border-radius: 0px 20px 0px 0px;
    padding: 3px 13px;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    margin-bottom: 20px;
}
.l-steps_block .text {
    margin-bottom: 30px;
}
.l-steps_block .img {
    text-align: center;
    margin-bottom: 80px;
}
.l-steps_block .img:last-of-type {
    margin-bottom: 0;
}
.l-steps_block .img img {
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .l-steps_block .img {
        margin-bottom: 30px !important;
    }
}

.warning {
    margin-top: 30px;
    margin-bottom: 20px;
}
.warning .ttl {
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
    background: #025899;
    border-radius: 0px 20px 0px 0px;
    padding: 2px 22px;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}
.warning .text {
    margin-bottom: 15px;
}
.warning .text span {
    color: #025899;
}
.warning .img {
    border: 1px solid #025899;
    padding: 10px;
}

.box-chuthich {
    margin-bottom: 20px;
}
.box-chuthich .inner {
    padding: 14px 20px;
    padding-right: 5px;
    background: #e4f4ff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.box-chuthich .row {
    display: flex;
}
.box-chuthich .row-left {
    display: flex;
    gap: 2px;
    justify-content: flex-end;
    width: 50px;
}
.box-chuthich .row-left span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    background: #025899;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-chuthich .row-right {
    flex: 1;
    font-size: 16px;
    line-height: 24px;
    color: #025899;
    margin-left: 16px;
}

.p-promotion .mv {
    position: relative;
    display: block;
}
.p-promotion .mv .btn {
    position: absolute;
    width: 14.5%;
    left: 19.94791%;
    top: 81.6923%;
}
.p-promotion .mv .btn img {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .p-promotion .mv img {
        width: 100%;
    }
    .p-promotion .mv .btn {
        width: 32.5%;
        left: 50%;
        top: 41.6923%;
        transform: translateX(-50%);
    }
}
.p-promotion .intro {
    background: #F7F7F7;
}
.p-promotion .m-customer {
    background: #fff;
}
.p-promotion .m-video {
    background: #F7F7F7;
}
.p-promotion .m-contact {
    margin-bottom: 50px;
}
.p-promotion .l-uudai_item .heading {
    background: #025899;
    color: #fff;
}
.p-promotion .l-uudai_item .heading strong {
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
@media screen and (max-width: 1290px) {
    .p-promotion .slick-slider {
        padding: 0 40px;
    }
}
@media screen and (max-width: 767px) {
    .p-promotion .slick-slider {
        padding: 0;
    }
    .p-promotion .wrap-doctor {
        background: url(../images/promotion/sp/bg_doc.png) no-repeat left top/cover;
    }
    .p-promotion .m-contact {
        padding: 0;
    }
    .p-promotion .m-contact .modal-contact .inner {
        max-width: 100%;
        border-radius: 20px;
        padding: 25px 20px;
    }
    .p-promotion .m-contact .modal-contact .inner strong {
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        background: no-clip;
        -webkit-text-fill-color: #fff;
    }
    .p-promotion .m-contact .modal-contact .inner .title {
        font-size: 22px;
        line-height: 33px;
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        margin-bottom: 10px;
    }
}

.m-aboutident {
    padding-top: 40px;
    padding-bottom: 30px;
    position: relative;
    margin-top: -7%;
}
.m-aboutident::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/promotion/bg_yellow.svg) no-repeat top center/cover;
    top: -9px;
    left: 0;
    z-index: 1;
}
.m-aboutident::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/promotion/bg_blue.svg) no-repeat top center/cover;
    top: 0;
    left: 0;
    z-index: 2;
}
.m-aboutident .ttl-primary {
    color: #fff;
}
.m-aboutident .ttl-primary span {
    display: block;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.m-aboutident_inner {
    position: relative;
    z-index: 3;
}
.m-aboutident .m-about {
    display: flex;
    justify-content: center;
    gap: 50px;
}
@media screen and (max-width: 767px) {
    .m-aboutident {
        padding-top: 23px;
    }
    .m-aboutident::before {
        background: url(../images/promotion/sp/bg_yellow.svg) no-repeat top center/100% auto;
        top: -5px;
    }
    .m-aboutident::after {
        background: url(../images/promotion/sp/bg_blue.svg) no-repeat top center/cover;
    }
    .m-aboutident .ttl-primary span {
        font-size: 22px;
        line-height: 33px;
    }
    .m-aboutident .m-about {
        flex-direction: column;
        padding-left: 12px;
        padding-right: 17px;
        gap: 40px;
    }
    .m-aboutident .m-about li {
        position: relative;
        padding-left: 70px;
    }
    .m-aboutident .m-about li img {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .m-aboutident .m-about li .text {
        background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
        border-radius: 0px 30px 30px 0px;
        margin-bottom: 0;
        color: #025899;
        text-align: center;
        padding-top: 9px;
        padding-bottom: 9px;
    }
}

.m-promo {
    padding: 30px 0 20px;
}
.m-promo .ttl-primary {
    margin-bottom: 5px;
}
.m-promo .m-tag {
    text-align: center;
    margin-bottom: 30px;
}
.m-promo .m-tag .tag {
    font-weight: bold;
}
.m-promo.is-ceramic {
    background: url(../images/promotion/bnr_uudai.jpg.webp) no-repeat center/cover;
}
.m-promo.is-ceramic .l-uudai {
    justify-content: center;
    gap: 30px 50px;
    margin: 0 0 30px;
}
.m-promo.is-ceramic .l-uudai_item {
    padding: 0;
    max-width: 287px;
}
.m-promo .l-outstand li a {
    padding-left: 40px;
}
.m-promo .l-outstand li::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 3px;
    left: 23px;
    top: 20px;
    background: #000;
}
@media screen and (max-width: 767px) {
    .m-promo {
        padding-bottom: 0;
    }
    .m-promo .l-outstand {
        margin-bottom: 0;
    }
    .m-promo.is-ceramic {
        background: url(../images/promotion/sp/bg_uudai.png) no-repeat left top/cover;
    }
    .m-promo.is-ceramic .l-uudai {
        justify-content: center;
        gap: 20px 0;
        margin: 0 -2px 20px;
    }
    .m-promo.is-ceramic .l-uudai_item {
        max-width: 50%;
        padding: 0 2px;
    }
    .m-promo.is-ceramic .l-uudai_item .heading strong {
        font-size: 18px;
        line-height: 27px;
    }
}

.bnr-customer {
    padding-bottom: 30px;
    position: relative;
}
.bnr-customer .wrapper {
    padding: 0;
}
.bnr-customer .is-small {
    position: absolute;
    width: 87.9487%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.about-doctors {
    background: #F7F7F7;
    padding: 30px 0;
}
.about-doctors.no-bg {
    background: #fff;
}
@media screen and (max-width: 767px) {
    .about-doctors .wrapper {
        padding: 0;
    }
}

.m-ungdung {
    padding-bottom: 20px;
}
.m-ungdung .img {
    margin-bottom: 20px;
}
.m-ungdung .text {
    margin-bottom: 20px;
}

.tooth-type {
    /*  background: url(../images/promotion/bg_landing.png) no-repeat center/cover;*/
    margin-bottom: 30px;
}
.tooth-type_inner {
    display: flex;
    gap: 50px;
}
.tooth-type_inner .img-tooth {
    width: 47.6666%;
    background: #025899;
    padding: 30px 24px;
}
.tooth-type_inner .img-mau {
    width: 41.416%;
}

@media screen and (max-width: 767px) {
    .tooth-type_inner {
        flex-direction: column;
    }
    .tooth-type_inner .img-tooth {
        width: auto;
        margin: 0 -10px;
    }
    .tooth-type_inner .img-tooth img {
        width: 100%;
    }
    .tooth-type_inner .img-mau {
        display: none;
    }
}
.timer-head-block {
    display: none;
}
.timer-body-block {
    display: flex;
    gap: 16px;
    margin: 25px 0;
}
.timer-body-block .table-cell {
    width: 25%;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    border-radius: 20px;
    overflow: hidden;
}
.timer-body-block .tab-val {
    color: #025899;
    font-size: 40px;
    line-height: 27px;
    font-weight: bold;
    padding: 22px 0 10px;
}
.timer-body-block .tab-unit {
    background: #fff;
    color: #025899;
    font-size: 22px;
    line-height: 33px;
    font-weight: bold;
    padding-bottom: 3px;
}

.intro-text {
    margin-top: 30px;
    margin-bottom: 30px;
}

.m-loairang {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .m-loairang .intro-text {
        padding: 10px;
        background: #e4f4ff;
    }
}

@media screen and (max-width: 767px) {
    .p-dieutri .m-reward_inner {
        flex-direction: column-reverse;
    }
    .p-dieutri .m-reward .info {
        display: block;
    }
    .p-dieutri .l-reward {
        color: #025899;
    }
    .p-dieutri .m-contact {
        margin-bottom: 20px;
    }
}

.tooth-block .ttl-border {
    margin-bottom: 20px;
}
.tooth-block .text {
    margin-bottom: 20px;
}
.tooth-block .doc-intro {
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    margin-bottom: 10px;
}
.tooth-block .doc-intro .text {
    margin-bottom: 0;
    color: #025899;
}
@media screen and (max-width: 767px) {
    .tooth-block {
        padding: 0 10px;
    }
    .tooth-block .doc-intro {
        padding: 10px;
        margin: 0 -10px 20px;
    }
}

.l-tooths_item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #025899;
}
.l-tooths_item .ttl-background {
    margin-bottom: 10px;
}
.l-tooths_item .text-first {
    color: #025899;
}
.l-tooths_item .content {
    display: flex;
    gap: 14px;
}
.l-tooths_item .content .img {
    width: 218px;
}
.l-tooths_item .content .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.l-tooths_item .content .info_block {
    padding: 7px 20px 12px;
    background: #E4F4FF;
    border-radius: 20px;
}
.l-tooths_item .content .info strong {
    display: block;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    margin-bottom: 2px;
}
.l-tooths_item .content .info .l-dots {
    padding-left: 0;
    margin: 0;
    list-style: none;
}
.l-tooths_item .content .info .l-dots li {
    position: relative;
    padding-left: 20px;
}
@media screen and (max-width: 767px) {
    .l-tooths_item {
        padding-bottom: 0;
        border: none;
    }
    .l-tooths_item .content {
        flex-direction: column;
        align-items: center;
    }
    .l-tooths_item .content .info {
        width: 100%;
    }
}

.l-type_item {
    background: linear-gradient(90deg, #E4F4FF 0%, rgba(255, 255, 255, 0.5) 104.5%);
    border-radius: 10px 10px 0px 0px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}
.l-type_item.type01 .inner {
    background-image: url(../images/loairangsu/bg_girl_01.png);
    background-position: bottom left 43%;
}
.l-type_item.type02 .inner {
    background-image: url(../images/loairangsu/bg_girl_02.png);
}
.l-type_item.type03 .inner {
    background-image: url(../images/loairangsu/bg_girl_03.png);
}
.l-type_item.type04 .inner {
    background-image: url(../images/loairangsu/bg_girl_04.png);
}
.l-type_item.type05 .inner {
    background-image: url(../images/loairangsu/bg_girl_05.png);
}
.l-type_item.type06 .inner {
    background-image: url(../images/loairangsu/bg_girl_06.png);
}
.l-type_item.type07 .inner {
    background-image: url(../../../../uploads/2023/08/mau.png);
}
.l-type .ttl-background {
    border-radius: 0;
}
.l-type .inner {
    background-repeat: no-repeat;
    background-position: bottom center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-left: 16px;
}
.l-type .l-check {
    width: 245px;
}
.l-type .l-check li {
    margin-bottom: 10px;
}
.l-type .box-img {
    width: 272px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
@media screen and (max-width: 767px) {
    .l-type {
        margin: 0 -10px;
    }
    .l-type_item {
        border-radius: 10px;
    }
    .l-type .inner {
        background-position: top center !important;
        flex-direction: column;
        align-items: center;
        padding-top: 117vw;
        padding-left: 10px;
        padding-right: 10px;
    }
    .l-type .box-img {
        margin-bottom: 20px;
    }
    .l-type .l-check {
        width: 100%;
        order: 2;
    }
}

.box-khuyencao {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.box-khuyencao .img {
    width: 360px;
}
.box-khuyencao .info {
    flex: 1;
}
.box-khuyencao .text {
    margin-bottom: 16px;
}
.box-khuyencao .m-btn {
    margin-top: 40px;
}
.box-khuyencao .m-btn a {
    height: 34px;
    font-size: 18px;
}
@media screen and (max-width: 767px) {
    .box-khuyencao {
        flex-direction: column;
    }
    .box-khuyencao .img {
        width: 100%;
    }
    .box-khuyencao .info {
        width: 100%;
    }
    .box-khuyencao .m-btn {
        text-align: center;
        margin-top: 30px;
    }
}

.m-intro {
    padding: 30px 0;
}
.m-intro .ttl-head {
    text-align: center;
}
.m-intro .explant {
    display: flex;
    align-items: center;
    gap: 40px;
}
.m-intro .explant .img {
    width: 280px;
}
.m-intro .explant .info {
    flex: 1;
}
.m-intro .explant .ttl-secondary {
    margin-bottom: 20px;
}
.m-intro .explant .text {
    margin-bottom: 20px;
    text-align: justify;
}
.m-intro .explant .text a {
    text-decoration: underline;
    color: #2B2B2B;
}
@media screen and (max-width: 767px) {
    .m-intro .explant {
        flex-direction: column;
    }
    .m-intro .explant .m-btn {
        text-align: center;
    }
    .m-intro .explant .img {
        margin-bottom: 20px;
    }
    .m-intro .img {
        margin: 0 auto;
    }
}

.m-who {
    padding: 20px 0;
    background: #f7f7f7;
}
.m-who .ttl-secondary {
    margin-bottom: 20px;
}
.m-who .text {
    margin-bottom: 20px;
}
.m-who .content {
    display: flex;
    gap: 22px;
}
.m-who .content .img {
    width: 49.8333%;
}
.m-who .content .l-issues {
    flex: 1;
}
@media screen and (max-width: 860px) {
    .m-who .content {
        flex-direction: column;
    }
    .m-who .content .img {
        width: 100%;
    }
    .m-who .content .img img {
        width: 100%;
    }
}

.l-issues {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 0;
    margin: 0 -12px;
}
.l-issues_item {
    padding: 0 12px;
    width: 50%;
}
.l-issues_item .inner {
    border: 1px solid #025899;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    padding-top: 28px;
    padding-left: 20px;
    padding-right: 20px;
    background: #fff;
}
.l-issues_item .img-ham {
    margin-bottom: 12px;
}
.l-issues_item .ico {
    margin-bottom: 6px;
}
.l-issues_item .text {
    color: #025899;
    margin-bottom: 0;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .l-issues {
        margin: 0 -2px;
        gap: 10px 0;
    }
    .l-issues_item {
        width: 50%;
        padding: 0 2px;
    }
    .l-issues_item .inner {
        padding: 22px 10px 24px;
    }
}

.p-tooth-ceramic .about-bstung {
    background: url(../images/rangsu/bg.png.webp) no-repeat center/cover;
    padding-bottom: 0;
}

.box-text {
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    padding: 15px 0;
}
.box-text .text {
    color: #025899;
}
@media screen and (max-width: 767px) {
    .box-text {
        margin-top: 20px;
    }
}

.m-tooth-type {
    padding: 30px 0 0;
}
.m-tooth-type .tooth-type {
    background: none;
    margin-bottom: 0;
}

.m-tooth-flow {
    padding: 30px 0px 20px;
    background: #f7f7f7;
}
.m-tooth-flow .vidplay::after {
    width: 82px;
    height: 82px;
    background-size: 100%;
}

.l-tooth-flow {
    max-width: 1022px;
    display: flex;
    justify-content: space-between;
    margin: 30px auto 35px;
    position: relative;
}
.l-tooth-flow::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #025899;
    left: 0;
    top: 152px;
}
.l-tooth-flow_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.l-tooth-flow_item::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #025899;
    left: 50%;
    top: 148px;
    transform: translateX(-50%);
}
.l-tooth-flow_item .ico {
    margin-bottom: 40px;
}
.l-tooth-flow_item .info {
    text-align: center;
}
.l-tooth-flow_item .info .tag {
    font-weight: bold;
    padding: 0px 20px;
    margin-bottom: 12px;
}
.l-tooth-flow_item .info .text {
    text-align: center;
}
@media screen and (max-width: 767px) {
    .l-tooth-flow {
        flex-direction: column;
        gap: 20px;
        padding-left: 10px;
    }
    .l-tooth-flow::before {
        width: 1px;
        height: 100%;
        top: 0;
        left: 66px;
    }
    .l-tooth-flow_item {
        flex-direction: row;
    }
    .l-tooth-flow_item::before {
        display: none;
    }
    .l-tooth-flow_item .ico {
        margin-bottom: 0;
        width: 116px;
    }
    .l-tooth-flow_item .info {
        flex: 1;
        padding-left: 20px;
    }
}

.m-promo-normal .ttl-primary {
    margin-bottom: 20px;
}
.m-promo-normal .l-uudai {
    margin-top: 40px;
    margin-bottom: 0;
}

.l-uudai {
    gap: 20px 0;
}
.l-uudai_item.is-blue .heading {
    background: #025899;
    color: #fff;
    font-weight: normal;
    padding: 9px 2px 5px;
}
.l-uudai_item.is-blue .heading strong {
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.l-uudai_item .body .warranty {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 10px;
}
.l-uudai_item .body .box-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.box-check {
    background: #e4f4ff;
    padding: 30px 0;
}
.box-check .l-check {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.l-doctors.is-special .l-doctors_info {
    padding-left: 30px;
}
.l-doctors.is-special .l-doctors_info .l-cer-img {
    border: none;
    padding: 0 10px;
    width: 97%;
    overflow: visible;
}
.l-doctors.is-special .l-doctors_info .l-cer-img_wrap {
    overflow: hidden;
}
.l-doctors.is-special .l-doctors_info .certificate {
    margin-bottom: 0;
}
.l-doctors.is-special .swiper-prev {
    left: -23px;
}
.l-doctors.is-special .swiper-next {
    right: -23px;
}
.l-doctors.is-special .l-doctors_item {
    margin-bottom: 30px;
}
.l-doctors.is-special .l-cer-img_item > div img {
    height: 152px;
}

.m-cus-danhgia {
    padding: 20px 0;
    background: #f7f7f7;
}

.l-demo.is-one {
    margin: 0 -12px;
    padding: 0 9px;
}
.l-demo.is-one .l-demo_item {
    width: 33.333%;
    padding: 0 12px;
}
.l-demo.is-one .l-demo_item .demo-img {
    margin-bottom: 0;
}
.l-demo.is-one .l-demo_item .demo-img img {
    margin: 0 auto;
}
.l-demo.is-one .l-demo_item .wrap {
    padding: 10px 0 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}
.l-demo.is-one .l-demo_item .demo-info {
    padding: 19px 10px 30px;
}
.l-demo.is-one .l-demo_item .demo-info_name {
    margin-bottom: 9px;
}
.l-demo.is-one .l-demo_item .demo-info_name .lca {
    font-size: 18px;
    line-height: 27px;
}
.l-demo.is-one .l-demo_item .demo-info .type {
    background: none;
    padding-left: 0;
    min-height: 160px;
}
.l-demo.is-one .l-demo_item .demo-info .implant {
    background: none;
    padding-left: 0;
    font-style: italic;
    font-weight: bold;
    color: #535353;
}
@media screen and (max-width: 767px) {
    .l-demo.is-one .l-demo_item {
        width: 100%;
        margin-bottom: 20px;
    }
}

.m-video.is-special {
    padding: 0 0 30px;
    background: #f7f7f7;
}

.p-tooth-ceramic .m-faq {
    padding-top: 30px;
}
.p-tooth-ceramic .mv {
    position: relative;
}
.p-tooth-ceramic .mv .title {
    position: absolute;
    color: #025899;
    font-weight: normal;
    font-size: 1.82vw;
    top: 14%;
    left: 18.4375%;
}
.p-tooth-ceramic .mv .name {
    position: absolute;
    background: linear-gradient(270deg, #FF1F1F 0%, rgba(255, 105, 105, 0.932292) 50%, #FF1F1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: bold;
    font-family: "UTM Times";
    font-size: 2.34vw;
    top: 22.1538%;
    left: 16.0938%;
}
.p-tooth-ceramic .mv .btn {
    position: absolute;
    top: 78.8125%;
    width: 14.5%;
    left: 19.6458%;
}
@media screen and (max-width: 767px) {
    .p-tooth-ceramic .mv .title {
        font-size: 6.08vw;
        top: 2.38461%;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .p-tooth-ceramic .mv .name {
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        font-size: 7vw;
        top: 9%;
    }
    .p-tooth-ceramic .mv .btn {
        top: 43.5385%;
        left: 50%;
        transform: translateX(-50%);
        width: 44%;
    }
    .p-tooth-ceramic .mv .btn img {
        width: 100%;
    }
}

.implant-points {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
}
.implant-points_block {
    width: 33.333%;
    padding: 0 15px;
}
.implant-points_block .img {
    width: 100px;
    margin: 0 auto 20px;
}
.implant-points_block .ttl-bl {
    text-align: center;
    margin-bottom: 10px;
}
.implant-points_block .text {
    text-align: justify;
}
.implant-points.is-bg {
    padding-bottom: 124px;
    background: url(../images/implant/img_01.png) no-repeat top center/19%;
}
@media screen and (max-width: 767px) {
    .implant-points {
        flex-wrap: wrap;
    }
    .implant-points_block {
        width: 100%;
    }
    .implant-points_block .img {
        width: 188px;
    }
    .implant-points.is-bg {
        background: none;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.l-implants {
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.l-implants_type {
    display: flex;
    gap: 10px;
}
.l-implants_type .info {
    width: 512px;
}
.l-implants_type .info .ttl-secondary {
    margin-bottom: 5px;
}
.l-implants_type .info .ex-point {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 5px;
    display: block;
}
.l-implants_type .info .manufacturer {
    font-size: 18px;
    line-height: 27px;
    text-align: justify;
    color: #2B2B2B;
    margin-bottom: 10px;
}
.l-implants_type .info .manufacturer span {
    font-weight: bold;
    color: #025899;
    margin-right: 3px;
}
.l-implants_type .info .box {
    border-radius: 10px;
    overflow: hidden;
    background: #e4f4ff;
    margin-bottom: 10px;
    min-height: 290px;
}
.l-implants_type .info .box .l-dots {
    padding-right: 10px;
}
.l-implants_type .info .box .title {
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    padding: 5px;
    background: #025899;
    text-align: center;
}
.l-implants_type .info .price {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
    color: #025899;
    padding: 8px;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    border-radius: 10px;
}
.l-implants_type .img {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.l-implants_type:nth-child(even) {
    flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
    .l-implants_type {
        flex-direction: column;
    }
    .l-implants_type .info {
        width: 100%;
    }
    .l-implants_type .info .ttl-secondary {
        text-align: center;
        font-size: 18px;
        line-height: 27px;
    }
    .l-implants_type .info .ex-point {
        text-align: center;
    }
    .l-implants_type .info .ex-point + .manufacturer {
        display: flex;
    }
    .l-implants_type .info .ex-point + .manufacturer span {
        flex-shrink: 0;
    }
    .l-implants_type .img {
        width: 200px;
        margin: 0 auto 30px;
    }
    .l-implants_type:nth-child(even) {
        flex-direction: column;
    }
}

.m-dacdiem {
    margin-top: 35px;
    margin-bottom: 30px;
}

.block-dacdiem {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.block-dacdiem_item .title {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    padding: 9px;
    color: #fff;
    background: #025899;
    border-radius: 20px 0 20px 0;
}
.block-dacdiem_item .inner {
    padding-top: 35px;
}
.block-dacdiem_item .l-dots {
    margin-top: 0;
    padding: 0;
}
.block-dacdiem_item.dd01 .inner {
    padding-left: 46%;
    background: url(../images/implant/img_03.png) no-repeat left center/50%;
}
.block-dacdiem_item.dd02 .inner {
    padding-right: 46%;
    background: url(../images/implant/img_02.png) no-repeat right -12px center/55%;
}
@media screen and (max-width: 767px) {
    .block-dacdiem .inner {
        background-position: top center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 40vw;
    }
    .block-dacdiem_item.dd01 .inner {
        padding-top: 255px;
        background-size: 330px;
    }
    .block-dacdiem_item.dd02 .inner {
        padding-top: 385px;
        background-size: 380px;
        background-position: top right -10px !important;
    }
}

.block-diff {
    margin-bottom: 30px;
}
.block-diff .ttl-bl {
    text-align: center;
    margin-bottom: 20px;
}
.block-diff .block-child {
    display: flex;
}
.block-diff .block-child .info {
    position: relative;
    z-index: 1;
}
.block-diff .block-child .info .title {
    font-size: 18px;
    line-height: 27px;
    color: #025899;
}
.block-diff .block-child.first .info {
    max-width: 344px;
    margin-top: 30px;
}
.block-diff .block-child.first .img {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-right: 100px;
}
.block-diff .block-child.second {
    align-items: flex-end;
    flex-direction: row-reverse;
    position: relative;
    margin-top: 40px;
}
.block-diff .block-child.second .info {
    max-width: 484px;
}
.block-diff .block-child.second .img {
    display: flex;
    position: absolute;
    left: -50px;
    top: -160px;
}
.block-diff .inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.block-diff .inner .l-tech {
    width: 530px;
}
.block-diff .inner .img {
    flex: 1;
}
.block-diff .l-tech {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.block-diff .l-tech li {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 100px;
}
.block-diff .l-tech li span {
    background: #025899;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 65px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.block-diff .l-tech li .content {
    max-width: 293px;
}
.block-diff .l-tech li .content .ttl-bl {
    text-align: left;
    margin-bottom: 2px;
}
.block-diff .l-tech li .content .text {
    margin-bottom: 0;
    text-align: justify;
}
.block-diff .l-tech li:nth-child(1)::before {
    position: absolute;
    content: "";
    width: 73px;
    height: 74px;
    background: url(../images/implant/line_01.png) no-repeat;
    left: 30px;
    bottom: -65px;
}
.block-diff .l-tech li:nth-child(2) {
    margin-left: 100px;
}
.block-diff .l-tech li:nth-child(3)::before {
    position: absolute;
    content: "";
    width: 73px;
    height: 74px;
    background: url(../images/implant/line_02.png) no-repeat;
    left: 30px;
    top: -65px;
}
.block-diff .l-tech li:nth-child(3) .content {
    max-width: 404px;
}
@media screen and (max-width: 840px) {
    .block-diff .block-child.second .info {
        max-width: 400px;
    }
}
@media screen and (max-width: 767px) {
    .block-diff .block-child {
        flex-direction: column-reverse;
    }
    .block-diff .block-child .info {
        max-width: 100% !important;
    }
    .block-diff .block-child.first .img {
        width: 90%;
        margin: 0 auto;
    }
    .block-diff .block-child.second {
        margin-top: 0;
        flex-direction: column-reverse;
    }
    .block-diff .block-child.second .img {
        position: relative;
        top: auto;
        left: auto;
    }
    .block-diff .inner {
        flex-direction: column;
    }
    .block-diff .inner .l-tech {
        width: 100%;
    }
    .block-diff .inner .l-tech li {
        padding-left: 80px;
    }
    .block-diff .inner .l-tech li::before {
        display: none !important;
    }
    .block-diff .inner .l-tech li span {
        border-radius: 10px;
        width: 64px;
    }
    .block-diff .inner .l-tech li:nth-child(2) {
        margin-left: 0;
    }
    .block-diff .inner .l-tech .content {
        max-width: 100%;
    }
    .block-diff .inner .l-tech .content .ttl-bl {
        background: #fff;
        color: #025899;
        margin: 0;
        padding: 0;
    }
    .block-diff .inner .img {
        width: 70%;
    }
    .block-diff .inner.rev {
        flex-direction: column-reverse;
    }
    .block-diff .ttl-bl {
        margin: 0 -10px 20px;
        background: #025899;
        color: #Fff;
        padding: 8px 24px;
    }
}

.wrap-diff {
    display: flex;
    gap: 20px;
}
.wrap-diff .img {
    width: 387px;
}
.wrap-diff .block-diff {
    flex: 1;
}
.wrap-diff .block-diff .ttl-bl {
    text-align: left;
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .wrap-diff {
        flex-direction: column;
    }
    .wrap-diff .img {
        width: 80%;
        margin: -20px auto 20px;
    }
}

.p-bracer .mv {
    position: relative;
}
.p-bracer .mv .ttl {
    position: absolute;
    line-height: 1;
    font-size: 2.08vw;
    color: #025899;
    top: 16%;
    left: 24.6354%;
    font-weight: normal;
}
.p-bracer .mv .ttl strong {
    font-weight: bold;
    margin-right: 5px;
}
.p-bracer .mv .txt {
    position: absolute;
    background: #025899;
    padding: 5px 16px;
    line-height: 1;
    font-size: 1.56vw;
    top: 24.1538%;
    left: 24.1666%;
    color: #fff;
    border-radius: 30px;
}
.p-bracer .mv .btn {
    position: absolute;
    top: 82.8125%;
    width: 14.5%;
    left: 28.6458%;
}
.p-bracer .m-intro .explant .ttl-primary {
    margin-bottom: 20px;
}
.p-bracer .m-contact {
    margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
    .p-bracer .mv .ttl {
        font-size: 5.08vw;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .p-bracer .mv .txt {
        padding: 5px 16px;
        font-size: 4.56vw;
        top: 10.1538%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 30px;
        white-space: nowrap;
    }
    .p-bracer .mv .btn {
        top: 46.5385%;
        left: 50%;
        transform: translateX(-50%);
        width: 44%;
    }
    .p-bracer .m-contact {
        margin-bottom: 20px;
    }
}

.bracer-benefit {
    padding: 15px 0;
    background: #f7f7f7;
}

.l-benefit {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -33px;
    gap: 30px 0;
}
.l-benefit_item {
    width: 50%;
    padding: 0 33px;
}
.l-benefit_item .title {
    display: flex;
    align-items: center;
    background: #025899;
    border-radius: 30px 30px 0px 30px;
    margin-bottom: 15px;
}
.l-benefit_item .title .order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    font-size: 25px;
    line-height: 38px;
    color: #025899;
    flex-shrink: 0;
}
.l-benefit_item .title .ttl {
    font-size: 22px;
    line-height: 33px;
    color: #fff;
    margin-left: 17px;
}
@media screen and (max-width: 767px) {
    .l-benefit {
        margin: 0;
    }
    .l-benefit_item {
        width: 100%;
        padding: 0;
    }
    .l-benefit_item .title {
        border-radius: 30px 20px 20px 30px;
    }
    .l-benefit_item .title .ttl {
        font-size: 18px;
        line-height: 27px;
        margin-left: 10px;
    }
}

.bracer-situation {
    padding: 30px 0px 20px;
    /*  background: url(../images/bracer/bg.png) no-repeat center/cover;*/
}
@media screen and (max-width: 767px) {
    .bracer-situation {
        background-position: top left;
    }
}

.l-issues {
    justify-content: center;
}
.l-issues.is-3-col {
    padding: 0 70px;
}
.l-issues.is-3-col .l-issues_item {
    width: 280px;
}
@media screen and (max-width: 767px) {
    .l-issues.is-3-col {
        padding: 0;
    }
    .l-issues.is-3-col .l-issues_item {
        width: 50%;
        padding: 0 2px;
    }
}

.bracer-type {
    padding: 30px 0;
}
@media screen and (max-width: 767px) {
    .bracer-type {
        padding-bottom: 0;
    }
}

.l-tooths.is-bracer {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.l-tooths.is-bracer .l-tooths_item {
    display: flex;
    gap: 20px;
    border: none;
    padding: 0;
    margin: 0;
}
.l-tooths.is-bracer .l-tooths_item:nth-child(even) {
    flex-direction: row-reverse;
}
.l-tooths.is-bracer .img {
    width: 390px;
}
.l-tooths.is-bracer .content {
    display: block;
    flex: 1;
}
.l-tooths.is-bracer .content .text {
    margin-bottom: 20px;
}
.l-tooths.is-bracer .content .ttl-background {
    border-radius: 10px 10px 0px 0px;
    font-size: 22px;
    line-height: 33px;
}
@media screen and (max-width: 767px) {
    .l-tooths.is-bracer {
        margin-top: 20px;
    }
    .l-tooths.is-bracer .l-tooths_item {
        flex-direction: column !important;
    }
    .l-tooths.is-bracer .l-tooths_item .img {
        width: 100%;
        padding: 10px;
    }
    .l-tooths.is-bracer .l-tooths_item .content .ttl-background {
        font-size: 18px;
        line-height: 27px;
        border-radius: 0;
    }
    .l-tooths.is-bracer .l-tooths_item .content .info_block {
        margin: 0 -10px;
        padding: 7px;
        border-radius: 0;
    }
    .l-tooths.is-bracer .l-tooths_item .content .info .l-dots {
        padding-left: 10px;
    }
}

.m-bracer-price {
    padding: 30px 0;
}
.m-bracer-price .l-bra-price {
    margin-top: 50px;
}
@media screen and (max-width: 767px) {
    .m-bracer-price .l-bra-price {
        margin-top: 30px;
    }
}

.l-bra-price {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.l-bra-price_item {
    width: 287px;
    background: #025899;
    border: 1px solid #025899;
    border-radius: 30px;
    padding: 14px 15px 28px;
}
.l-bra-price_item .img {
    width: 204px;
    height: 204px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    margin-bottom: 30px;
}
.l-bra-price_item .img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    left: 0;
    bottom: -5px;
}
.l-bra-price_item .img img {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.l-bra-price_item .name {
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 27px;
}
.l-bra-price_item .price {
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 60px;
}
.l-bra-price_item .price span {
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 25px;
    font-weight: bold;
}
.l-bra-price_item .m-btn {
    text-align: center;
    margin-top: 3px;
}
.l-bra-price_item .m-btn a {
    font-size: 18px;
    height: 34px;
}
@media screen and (max-width: 767px) {
    .l-bra-price {
        gap: 4px;
    }
    .l-bra-price_item {
        width: calc(50% - 4px);
        padding: 12px 15px;
        border-radius: 20px;
    }
    .l-bra-price_item.is-full {
        width: 100%;
        gap: 3px;
        display: flex;
        align-items: center;
    }
    .l-bra-price_item.is-full .img {
        width: 150px;
        height: 150px;
        margin: 0;
    }
    .l-bra-price_item.is-full .outer {
        flex: 1;
    }
    .l-bra-price_item.is-full .price {
        margin: 0;
    }
    .l-bra-price_item .img {
        width: 100%;
        height: 38.21vw;
        margin-bottom: 8px;
    }
    .l-bra-price_item .img::before {
        bottom: -3px;
    }
    .l-bra-price_item .price {
        min-height: auto;
        margin: 0 -20px;
    }
    .l-bra-price_item .price span {
        font-size: 20px;
        line-height: 30px;
    }
    .l-bra-price_item .m-btn a {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

.l-doctors.is-single .l-doctors_item {
    margin-bottom: 0;
}
.l-doctors.is-single .l-doctors_info_inner {
    padding-bottom: 0;
}
.l-doctors.is-single .certificate {
    margin-bottom: 10px;
}
.l-doctors.is-single .doc-intro {
    padding: 5px;
    margin: 0;
    border-radius: 10px;
}
.l-doctors.is-single .doc-intro .l-dots {
    margin: 0;
    padding-left: 0;
}
@media screen and (max-width: 767px) {
    .l-doctors.is-single .doc-intro {
        margin: 0 -10px;
        padding: 10px;
        border-radius: 0;
    }
}

@media screen and (max-width: 767px) {
    .l-doctors.is-single .l-doctors_info {
        padding: 10px;
    }
}
.p-veneer .mv {
    position: relative;
}
.p-veneer .mv .title {
    position: absolute;
    font-size: 2.08vw;
    color: #025899;
    line-height: 1;
    padding: 9px 3%;
    border-radius: 30px;
    top: 23.6923%;
    left: 18.75%;
    border: 1px solid;
}
.p-veneer .btn {
    position: absolute;
    top: 77.3846%;
    width: 14.5%;
    left: 28.22916%;
}
.p-veneer .m-contact {
    margin-bottom: 50px;
}
.p-veneer .m-intro .explant .ttl-primary {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .p-veneer .m-intro .explant .ttl-primary {
        text-align: center !important;
    }
}
@media screen and (max-width: 767px) {
    .p-veneer .box-text {
        margin-top: 0;
    }
    .p-veneer .mv .title {
        font-size: 5.08vw;
        padding: 5px 5%;
        top: 7.6923%;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .p-veneer .mv .btn {
        top: 46.5385%;
        left: 50%;
        transform: translateX(-50%);
        width: 44%;
    }
}
.p-veneer .l-uudai {
    margin-bottom: 20px;
}

.m-veneer-best {
    padding: 30px 0;
}
.m-veneer-best .content {
    display: flex;
    gap: 57px;
    margin-bottom: 35px;
}
.m-veneer-best .content .img {
    width: 445px;
}
.m-veneer-best .content .l-veneer {
    flex: 1;
}
@media screen and (max-width: 767px) {
    .m-veneer-best {
        background: #f7f7f7;
    }
    .m-veneer-best .content {
        flex-direction: column;
        margin-bottom: 10px;
    }
    .m-veneer-best .content .img {
        width: 100%;
    }
}

.l-veneer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.l-veneer_item {
    position: relative;
    border: 1px solid #025899;
    border-radius: 30px;
    padding: 14px 30px 14px 45px;
}
.l-veneer_item .order {
    position: absolute;
    width: 54px;
    height: 54px;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #025899;
    border-radius: 50%;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .l-veneer {
        padding-left: 20px;
    }
    .l-veneer_item {
        background: #fff;
        padding: 10px 18px 10px 28px;
        border-radius: 20px;
    }
    .l-veneer_item .order {
        font-size: 20px;
        width: 36px;
        height: 36px;
        left: -18px;
    }
}

.m-tragop-intro {
    margin-top: 30px;
}

.whats-tragop {
    margin-bottom: 30px;
}
.whats-tragop .inner {
    display: flex;
    gap: 34px;
}
.whats-tragop .img {
    width: 504px;
}
.whats-tragop .info {
    flex: 1;
}
@media screen and (max-width: 767px) {
    .whats-tragop .inner {
        flex-direction: column;
    }
    .whats-tragop .img {
        width: 100%;
    }
}

.tragop-benefit .l-dots {
    color: #025899;
}

.tragop-bef_item {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 20px;
}
.tragop-bef .order {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #025899;
    font-size: 34px;
    color: #FFFFFF;
    font-weight: bold;
}
.tragop-bef .info {
    flex: 1;
}
.tragop-bef .info .ttl-bl {
    margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
    .tragop-bef_item {
        position: relative;
        margin-bottom: 32px;
    }
    .tragop-bef .order {
        position: absolute;
        font-size: 34px;
        width: 47px;
        height: 46px;
        top: -11px;
        left: 0;
    }
    .tragop-bef .info .ttl-bl {
        padding-left: 60px;
        margin-bottom: 23px;
    }
}

.tragop-credit {
    padding: 30px 0;
    background: #f7f7f7;
}
@media screen and (max-width: 767px) {
    .tragop-credit {
        padding-bottom: 10px;
    }
}

.p-tragop .box-phacdo {
    background: url(../images/tragop/bg_banner.png) no-repeat right top/515px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.p-tragop .box-phacdo_inner {
    width: 57%;
}
.p-tragop .box-phacdo_inner .text {
    margin-bottom: 20px;
}
.p-tragop .customer-regis {
    margin: 20px 0;
}
.p-tragop .customer-regis figcaption {
    color: #025899;
    margin-top: 10px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-tragop .doc-intro {
        margin: 20px -10px 30px;
    }
    .p-tragop .box-phacdo_inner {
        width: 100%;
    }
    .p-tragop .customer-regis {
        background: #F7F7F7;
        margin: 0 -10px;
        padding-bottom: 20px;
    }
    .p-tragop .customer-regis figcaption {
        font-size: 15px;
        line-height: 22px;
    }
    .p-tragop .m-contact {
        margin-bottom: 30px;
    }
}

.l-banks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.l-banks li {
    width: 20%;
    padding: 0 10px;
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .l-banks {
        margin: 0 -4px;
    }
    .l-banks li {
        width: 33.3333%;
        padding: 0 4px;
        margin-bottom: 8px;
    }
}

.special-offer {
    background: #F7F7F7;
    padding: 30px 0;
}

.l-spec {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -11px;
}
.l-spec_item {
    width: 25%;
    padding: 0 11px;
    margin-bottom: 20px;
}
.l-spec_item .inner {
    position: relative;
}
.l-spec_item .ord {
    position: absolute;
    font-weight: bold;
    font-size: 50px;
    color: #025899;
    background: linear-gradient(90deg, #DFAA23 0%, #FBF08D 47.92%, #DFAA23 100%);
    border-radius: 0px 31px 0px 10px;
    left: 0;
    bottom: 0;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.l-spec_item .info {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #025899;
    border-radius: 10px;
    padding-left: 62px;
    width: 100%;
}
.l-spec_item .info p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    padding: 7px;
}
@media screen and (max-width: 767px) {
    .l-spec {
        margin: 0 -4px;
    }
    .l-spec_item {
        width: 50%;
        padding: 0 4px;
        margin-bottom: 7px;
    }
    .l-spec_item .ord {
        border-radius: 10px 0px 20px;
        width: 40px;
        height: 40px;
        font-size: 30px;
        top: 0;
        bottom: auto;
    }
    .l-spec_item .info {
        padding-left: 0;
        position: relative;
        margin-top: -30px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 84px;
    }
    .c-header_nav .nav-wrap > div{
        width: 100%;
    }
}
.wpcf7 form.sent .wpcf7-response-output{
    background-color: #46b450 !important;
    color: #FFF !important;
}