@charset "utf-8";
/* CSS Document */

html {
    font-size: 62.5%;
}

body {
    
    color: #333333;
    font-size: 1.7rem;
    line-height: 1.88;
    letter-spacing: -1px;
    font-feature-settings: "palt";
}

a {
    color: #41A884;
    text-decoration: none;
}

a:hover {
    color: #C0AB9A;
}

::selection {
    background-color: #41A884;
    color: #fff;
}

::-moz-selection {
    background-color: #41A884;
    color: #fff;
}


.kv_inner {
    min-width: 128rem;
    max-width: 160rem;
    padding: 0 4rem;
}

.kv {
    min-width: 128rem;
}

.sp_navi {
    display: none;
}



/*============================================================================

	header

============================================================================*/

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.icon-logo {
    width: 18.5rem;
    height: 3.5rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 128rem;
    height: 9.0rem;
    background-color: rgba(255, 255, 255, 0);
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.260, 0.005, 0.000, 1.035);
    transition-property: height, box-shadow, background-color;
    z-index: 99999;
}

@media all and (-ms-high-contrast: none) {
    header {
        position: fixed;
    }
}

.header_inner {
    display: flex;
    justify-content: space-between;
    height: inherit;
    padding: 0 10rem;
}



header h1 {
    align-items: center;
    display: flex;
    position: relative;
    top: 0.4rem;
}

header h1 a {
    transition: 0.15s ease-in-out;
}

header h1 a:hover {
    opacity: 0.5;
}

header h1 svg {
    width: 15.4rem;
    height: 3.52rem;
}

header.fixed {
    height: 7.5rem;
    box-shadow: 0 5.4rem 3.4rem -1.2rem rgba(202, 202, 202, .2);
    background-color: #fff;
}

header.fixed .nav_dropdown_list {}

header.nav_dropdown_header {}

header::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, .4);
    transition-duration: 0.16s;
    transition-timing-function: cubic-bezier(0.260, 0.005, 0.000, 1.035);
    opacity: 0;
    z-index: -1;
}

header.nav_dropdown_header::after {
    opacity: 1;
    z-index: 1;
}

/*============================================================================

	nav

============================================================================*/

nav {
    right: 0;
    height: inherit;
}

nav>ul {
    display: flex;
    justify-content: flex-end;
    text-align: center;
    height: inherit;
}

nav ul>li {
    height: inherit;
}

nav ul>li>a {
    display: table-cell;
    position: relative;
    height: inherit;
    padding: 0.1rem 1.4rem 0;
    vertical-align: middle;
    text-align: center;
    line-height: 1;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.260, 0.005, 0.000, 1.035);
    transition-property: background-color;
    cursor: pointer;
}


.nav_text-ja {
    display: block;
    font-size: 1.6rem;
	letter-spacing: 0;
    font-weight: bold;
    color: #666;
    transition: 0.2s ease-in-out;
}

.nav_slidebtm .nav_text-ja {
    padding-right: 8px;
}

.nav_slidebtm .nav_text-ja::after {
    position: relative;
    top: -0.4rem;
    right: -0.7rem;
    width: 0.5rem;
    height: 0.5rem;
    transform: rotate(135deg);
    border-right: 1px solid #333;
    border-top: 1px solid #333;
    content: "";
    bottom: 0;
    transition: 0.2s cubic-bezier(0.260, 0.005, 0.000, 1.035);
    display: inline-block;
}

.nav_slidebtm {
    transform: none;
    z-index: 10;
}

.nav_contact a {
    padding: 0.1rem 1.4rem;
    letter-spacing: 0.09em;
}



.nav_contact .nav_text-ja::after {
    /*     position: absolute;
    bottom: 0;
    top: 0;
    left: -1.8rem;
    width: 1.1rem;
    height: 0.9rem;
    margin: auto;
    background-image: url(../images/icon_clone_g.svg);
    background-repeat: no-repeat;
    content: "";
	border-right: none;
    border-top: none; */
}



nav li>a:hover, nav li.active2>a {}

nav li.active2 a .nav_text-ja, nav li.active2 a:hover .nav_text-ja {
    color: #fff;
}

nav li.active2 a .nav_text-ja::after, nav li a:hover .nav_text-ja::after {
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
}

.nav_border_hover {
    position: relative;
}

.nav_border_hover::before {
    position: absolute;
    width: 0;
    right: 0;
    left: auto;
    bottom: -4px;
    height: 0.1rem;
    background-color: #333;
    transition: 0.2s cubic-bezier(0.260, 0.005, 0.000, 1.035);
    content: "";
    z-index: 1;
}

nav li a:hover .nav_border_hover::before, nav li.active2 .nav_border_hover::before {
    right: auto;
    left: 0;
    width: 100%;
}

nav li.active2 .nav_border_hover::before {
    background-color: #fff;
}


nav.fixed {}

/* dropdown */

nav ul li .nav_dropdown {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0%;
    background-color: #FAF8F5;
    box-shadow: 0 5.4rem 3.4rem -1.2rem rgb(217 200 173 / 20%);
    transition: 0.2s cubic-bezier(0.260, 0.005, 0.000, 1.035);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}

nav ul li .nav_dropdown.nav_open {
    top: 100%;
    z-index: 1;
    opacity: 1;
    pointer-events: all;
}

.nav_dropdown_inner {
    max-width: 160rem;
    min-width: 128rem;
    padding: 7.6rem 10rem 7.6rem;
    margin: auto;
}

.nav_dropdown_inner_l {
    width: 34.5%;
}

.nav_dropdown_inner_l_title {
    margin-bottom: 2.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E9E4E0;
    font-size: 1.5rem;
    text-align: left;
    letter-spacing: 0.075em;
}

.nav_dropdown_inner_r {
    width: 50%;
}

.nav_dropdown_clinic_list {
    position: relative;
}

.nav_dropdown_clinic_list li {
    position: absolute;
    width: 100%;
    height: 29.4rem;
    transition: 0.2s ease-in-out;
}

.nav_dropdown_clinic_list li div {
    position: relative;
    width: inherit;
    height: inherit;
    transition: 0.2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.nav_dropdown_clinic_list_img01 {
    background-image: url("../images/kv-feature_img.jpg");
    z-index: 1;
}

.nav_dropdown_clinic_list_img02 {
    background-image: url("../images/kv-infection_img.jpg");
}

.nav_dropdown_clinic_list_img03 {
    background-image: url("../images/kv-staff_img.jpg");
}

.nav_dropdown_clinic_list_img04 {
    background-image: url("../images/kv-yukenkai_img.jpg");
}

.nav_dropdown_clinic_list_img05 {
    background-image: url("../images/kv-introduction_img.jpg");
}

.nav_dropdown_clinic_list01_img.active .nav_dropdown_clinic_list_img01, .nav_dropdown_clinic_list02_img.active .nav_dropdown_clinic_list_img02, .nav_dropdown_clinic_list03_img.active .nav_dropdown_clinic_list_img03, .nav_dropdown_clinic_list04_img.active .nav_dropdown_clinic_list_img04, .nav_dropdown_clinic_list05_img.active .nav_dropdown_clinic_list_img05 {
    z-index: 9;
}

.nav_dropdown_medical_list_img01 {
    background-image: url("../images/treatment/treatment01_img01.html");
    z-index: 1;
}

.nav_dropdown_medical_list_img02 {
    background-image: url("../images/treatment/treatment02_img01.jpg");
}

.nav_dropdown_medical_list_img03 {
    background-image: url("../images/treatment/treatment03_img01.jpg");
}

.nav_dropdown_medical_list_img04 {
    background-image: url("../images/treatment/treatment04_img01.jpg");
}

.nav_dropdown_medical_list_img05 {
    background-image: url("../images/treatment/treatment05_img01.jpg");
}

.nav_dropdown_medical_list01_img.active .nav_dropdown_medical_list_img01, .nav_dropdown_medical_list02_img.active .nav_dropdown_medical_list_img02, .nav_dropdown_medical_list03_img.active .nav_dropdown_medical_list_img03, .nav_dropdown_medical_list04_img.active .nav_dropdown_medical_list_img04, .nav_dropdown_medical_list05_img.active .nav_dropdown_medical_list_img05 {
    z-index: 9;
}

.nav_dropdown_title_clinic {
    border-right: 1px solid #E1EBF3;
}

.nav_dropdown_title_inner {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.6rem;
    line-height: 1;
}

.nav_dropdown_title_ja {
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 3rem;
    margin-left: 0.3rem;
}

.nav_dropdown_title_text {
    font-size: 1.3rem;
}

.nav_dropdown_title .btn-01 {}

.nav_dropdown_title .btn-01 a {
    padding: 0 0 0.8rem 0;
    font-size: 1.4rem;
}

.nav_dropdown_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 1.2rem;
}

.nav_dropdown_list li {
    display: flex;
    width: 50%;
    padding-bottom: 1.2rem;
}

.nav_dropdown_list li a {
    position: relative;
    width: 100%;
    color: #333333;
    padding: 0;
    line-height: 1;
    text-align: justify;
}

.nav_dropdown_list li:last-child {
    margin-right: 0;
}

.nav_dropdown_list_l {
    position: relative;
    width: 100%;
    height: 9.4rem;
    margin-bottom: 0.6rem;
    overflow: hidden;
    background-position: center;
    background-size: 113%;
    background-repeat: no-repeat;
    transition: 0.28s cubic-bezier(0.260, 0.005, 0.000, 1.035);
}

.nav_dropdown_list_l::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 15, 30, .3);
    transition: 0.2s cubic-bezier(0.260, 0.005, 0.000, 1.035);
    opacity: 0;
    z-index: 10;
}

.nav_dropdown_list_l::after {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    font-size: 1.9rem;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    content: "Learn More";
    opacity: 0;
    z-index: 10;
    transform: scale(1, 1);
    transition: 0.2s cubic-bezier(0.260, 0.005, 0.000, 1.035);
}

.nav_dropdown_list li a:hover .nav_dropdown_list_l {
    background-size: 100%;
}

.nav_dropdown_list li a:hover .nav_dropdown_list_l::before {
    opacity: 1;
    transform: scale(1, 1);
}

.nav_dropdown_list li a:hover .nav_dropdown_list_l::after {
    opacity: 1;
    transform: scale(.8, .8);
}

.nav_dropdown_list li a:hover .nav_dropdown_list_l {
    box-shadow: 0 3.3rem 3.6rem rgba(217, 200, 173, .2);
}

.nav_dropdown_list_text {
    display: inline-block;
    font-size: 1.5rem;
}

.nav_dropdown_list_en {
    margin-left: 0.1rem;
    font-size: 1.2rem;
    font-family: din-2014, sans-serif;
    font-weight: 300;
    color: #ADB6BF;
}

.nav_dropdown_list_l .btn-01 {
    font-size: 1.3rem;
    font-family: din-2014, sans-serif;
    font-weight: 300;
}

.nav_dropdown_list_l .btn-01 {
    position: relative;
}

.nav_dropdown_list_l .btn-01 span {
    display: inline-block;
    position: relative;
    line-height: 1;
    padding-bottom: 1rem;
    color: #64CCBF;
}

.nav_dropdown_list_l .btn-01 span::after {
    position: absolute;
    right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.1rem;
    background-color: #64CCBF;
    transition: 0.2s cubic-bezier(0.260, 0.005, 0.000, 1.035);
    content: "";
    z-index: 1;
}

.nav_dropdown_list li:hover .nav_dropdown_list_l .btn-01::after {
    width: 0;
    right: 0;
    left: auto;
}

.nav_dropdown_list_text, .nav_dropdown_list_en, .nav_dropdown_list_l {
    transition: 0.2s cubic-bezier(0.260, 0.005, 0.000, 1.035);
}

.nav_dropdown_list li:hover .nav_dropdown_list_text, .nav_dropdown_list li:hover .nav_dropdown_list_en, .nav_dropdown_list li:hover .nav_dropdown_list_l, .nav_dropdown_list li:hover .nav_dropdown_list_text {}

.nav_dropdown_list_text {
    position: relative;
    padding-bottom: 0.4rem;
}

.nav_dropdown_list_text::after {
    position: absolute;
    right: 0;
    left: auto;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: 0.2s ease-out;
    content: "";
    z-index: 1;
}

nav ul li .nav_dropdown a:hover {}

nav ul li .nav_dropdown a:hover .nav_dropdown_list_text::after {
    width: 100%;
    right: auto;
    left: 0;
}

nav ul li .nav_dropdown a:hover::before {
    right: 20px;
}

nav ul li .nav_dropdown_list.nav_dropdown_list-02 li {
    display: block;
    position: relative;
}

.nav_dropdown_treat_inner {
    max-width: 140rem;
    min-width: 128rem;
    padding: 6.4rem 4rem 7.2rem;
    margin: auto;
    display: block;
}

.nav_dropdown_treat_title_clinic {
    padding-right: 8rem;
    border-right: 1px solid #E1EBF3;
}

.nav_dropdown_treat_title_inner {
    display: flex;
    text-align: left;
    align-items: baseline;
    margin-bottom: 1.6rem;
    line-height: 1;
}

.nav_dropdown_title_ja {
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 3rem;
    margin-left: 0.3rem;
}

.nav_dropdown_title_s {
    font-size: 1.3rem;
}

.nav_dropdown_treat_list_outer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #E9E4E0;
    border-bottom: 1px solid #E9E4E0;
}

.nav_dropdown_treat_list_b {
    position: relative;
    width: 15%;
    display: flex;
}

.nav_dropdown_treat_list_b::before {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #E9E4E0;
    width: 1px;
    height: calc(100% - 4rem);
    content: "";
}

.nav_dropdown_treat_list_b a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    line-height: 1.5;
}

.nav_dropdown_treat_list_b_l {
    height: 7.2rem;
    margin-bottom: 3rem;
    margin-top: -2rem;
    position: relative;
}

.nav_dropdown_treat_list {
    position: relative;
    width: 85%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav_dropdown_treat_list::before {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #E9E4E0;
    width: calc(100% - 5.6rem);
    height: 1px;
    content: "";
}

.nav_dropdown_treat_list li {
    position: relative;
    width: calc(100% / 6);
}

.nav_dropdown_treat_list li a {
    display: flex;
    min-height: 14.8rem;
    padding: 0.1rem 0.4rem 0;
    justify-content: center;
    line-height: 1.5;
    align-items: center;
}

.nav_dropdown_treat_list_b a::before, .nav_dropdown_treat_list li a::before, .nav_dropdown_treat_list_category a::before {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-color: #fff;
    box-shadow: 0 0rem 0rem rgba(217, 200, 173, .2);
    content: "";
    opacity: 0;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}

.nav_dropdown_treat_list_b a:hover::before, .nav_dropdown_treat_list li a:hover::before, .nav_dropdown_treat_list_category a:hover::before {
    opacity: 1;
    box-shadow: 0 3.3rem 3.6rem rgba(217, 200, 173, .2);
}

.nav_dropdown_treat_list li::before {
    position: absolute;
    right: -1px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #E9E4E0;
    width: 1px;
    height: calc(100% - 5.2rem);
    content: "";
}

.nav_dropdown_treat_list li:nth-child(6n)::before {
    display: none;
}

.nav_dropdown_treat_list_l {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.nav_dropdown_treat_list_l {
    height: 6.2rem;
    position: relative;
}

.nav_dropdown_treat_list_l img {
    transform: scale(0.8);
}

.nav_dropdown_treat_list_r {}

.nav_dropdown_treat_list_text {
    display: inline;
    padding-bottom: 0.2rem;
    position: relative;
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
    text-align: center;
}

@media all and (-ms-high-contrast: none) {
    .nav_dropdown_treat_list_text {
        display: inline-block;
    }
    .nav_dropdown_treat_list_l {
        padding-top: 3rem;
    }
    .nav_dropdown_list li a {
        display: block;
    }
}

.nav_dropdown_list_text, .nav_dropdown_treat_list_text, .nav_dropdown_treat_list_category_text {
    background-image: linear-gradient(#333, #333);
    transition: background-size .2s cubic-bezier(.165, .84, .44, 1);
    background-position: 100% 100%;
    background-size: 0% 1px;
    background-repeat: no-repeat;
}

.nav_dropdown_list a:hover .nav_dropdown_list_text, .nav_dropdown_treat_list_category a:hover .nav_dropdown_treat_list_category_text, .nav_dropdown_treat_list li a:hover .nav_dropdown_treat_list_text, .nav_dropdown_treat_list_b a:hover .nav_dropdown_treat_list_text {
    background-position: 0 100%;
    background-size: 100% 1px;
    text-decoration: none;
}

.nav_dropdown_treat_list_category {
    width: 100%;
    border-top: 1px solid #E9E4E0;
}

.nav_dropdown_treat_list_category a {
    position: relative;
    display: block;
    padding: 1.6rem 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.nav_dropdown_treat_list_category a::before {}

.nav_dropdown_treat_list_category_text {
    position: relative;
    padding-bottom: 0.2rem;
}

.nav_dropdown_treat_list li a .nav_dropdown_treat_list_text::before, .nav_dropdown_treat_list_b a .nav_dropdown_treat_list_text::before {}

.nav_dropdown_treat_list li a:hover .nav_dropdown_treat_list_text::before, .nav_dropdown_treat_list_b a:hover .nav_dropdown_treat_list_text::before {
    right: auto;
    left: 0;
    width: 100%;
}

.nav_clinic_index_link {
    padding: 14.6rem 0 14rem;
    background-color: #FAF8F5;
}

.nav_clinic_index_link_outer {
    position: relative;
    max-width: 160rem;
    margin: 0 auto 0;
    box-sizing: border-box;
}

.nav_index_link_title {
    display: flex;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 3rem;
}

.nav_index_link_title_ja {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: left;
    margin-right: 2.4rem;
}

.nav_index_link_title_en {
    padding-left: 2.2rem;
    color: #41A884;
    font-size: 1.1rem;
    line-height: 1;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 500;
    position: relative;
    top: 0.3rem;
}

.nav_index_link_all {
    position: relative;
    right: 0;
    top: -0.4rem;
    padding-bottom: 0rem;
    z-index: 10;
    line-height: 1.65;
    padding-bottom: 2rem;
    margin-bottom: -2rem;
}

.nav_index_link_all a {
    display: block;
    position: relative;
    vertical-align: top;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.02em;
}

.nav_index_link_all a:hover {
    color: #41A884;
}

.nav_index_link_all_default {
    position: relative;
    top: 0;
    left: 0;
    white-space: nowrap;
}

.nav_index_link_all_default span {
    display: inline-block;
    position: relative;
    top: 0;
}

.nav_index_link_all a:hover .nav_index_link_all_default span {
    animation-name: nav_index_link_all_default;
    animation-duration: .25s;
    animation-timing-function: cubic-bezier(.166, .74, .49, 1);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

.nav_index_link_all a:hover .nav_index_link_all_default span:nth-child(1) {
    animation-delay: 0s;
}

.nav_index_link_all a:hover .nav_index_link_all_default span:nth-child(2) {
    animation-delay: 0.02s;
}

.nav_index_link_all a:hover .nav_index_link_all_default span:nth-child(3) {
    animation-delay: 0.04s;
}

.nav_index_link_all a:hover .nav_index_link_all_default span:nth-child(4) {
    animation-delay: 0.06s;
}

.nav_index_link_all a:hover .nav_index_link_all_default span:nth-child(5) {
    animation-delay: 0.08s;
}

.nav_index_link_all a:hover .nav_index_link_all_default span:nth-child(6) {
    animation-delay: 0.1s;
}

.nav_index_link_all a:hover .nav_index_link_all_default span:nth-child(7) {
    animation-delay: 0.12s;
}

.nav_index_link_all a:hover .nav_index_link_all_default span:nth-child(8) {
    animation-delay: 0.14s;
}

.nav_index_link_all a:hover .nav_index_link_all_default span:nth-child(9) {
    animation-delay: 0.16s;
}

.nav_index_link_all a:hover .nav_index_link_all_default span:nth-child(10) {
    animation-delay: 0.18s;
}

@keyframes nav_index_link_all_default {
    from {}
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1.2rem);
        opacity: 0;
    }
}

.nav_index_link_all_hover {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
}

.nav_index_link_all_hover span {
    display: inline-block;
    transform: translateY(1.2rem);
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-property: transform, opacity;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span:nth-child(1) {
    transition-delay: 0.25s;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span:nth-child(2) {
    transition-delay: 0.27s;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span:nth-child(3) {
    transition-delay: 0.29s;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span:nth-child(4) {
    transition-delay: 0.31s;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span:nth-child(5) {
    transition-delay: 0.32s;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span:nth-child(6) {
    transition-delay: 0.33s;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span:nth-child(7) {
    transition-delay: 0.35s;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span:nth-child(8) {
    transition-delay: 0.37s;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span:nth-child(9) {
    transition-delay: 0.39s;
}

.nav_index_link_all a:hover .nav_index_link_all_hover span:nth-child(10) {
    transition-delay: 0.41s;
}

.nav_index_link_all_border {
    position: relative;
}

.nav_index_link_all_border::before, .nav_index_link_all_border::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(65, 168, 132, 0.5);
}

.nav_index_link_all a:hover .nav_index_link_all_border::before {
    animation-name: nav_index_link_all_border_01;
    animation-duration: .36s;
    animation-timing-function: cubic-bezier(.166, .74, .49, 1);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

@keyframes nav_index_link_all_border_01 {
    from {
        width: 100%;
    }
    100% {
        width: 0%;
        left: 100%;
    }
}

.nav_index_link_all a:hover .nav_index_link_all_border::after {
    animation-name: nav_index_link_all_border_02;
    animation-duration: .36s;
    animation-timing-function: cubic-bezier(.166, .74, .49, 1);
    animation-iteration-count: 1;
    animation-fill-mode: both;
    animation-delay: .26s;
}

@keyframes nav_index_link_all_border_02 {
    from {
        width: 0;
        left: 0;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

.nav_index_link_all a:hover .nav_index_link_all_border {
    color: rgba(65, 168, 132, 1);
}

.nav_clinic_index_link_inner {
    display: flex;
    justify-content: space-between;
}

.nav_clinic_index_link_box {
    position: relative;
    width: calc(100% / 5);
    margin-right: 0.5rem;
}

.nav_clinic_index_link_box:hover {
    z-index: 10;
}

.nav_clinic_index_link_box a {
    display: block;
}

.nav_clinic_index_link_box:last-child {
    margin-right: 0;
}

.nav_clinic_index_link_box_img_outer {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
}

.nav_clinic_index_link_box_img_outer::before {
    width: 100%;
    height: calc(14.5rem + 0.5rem + (1.4rem * 1.88));
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.nav_clinic_index_link_box_img {
    /* height: 14.5rem; */
    width: 100%;
    margin-bottom: 0.5rem;
    transform-style: preserve-3d;
    background-size: cover;
    background-position: center;
    transition-duration: .75s;
    background-size: 110%;
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    height: 0;
    padding-bottom: 58%;
}

.nav_clinic_index_link_box.is-current .nav_clinic_index_link_box_img {
    border: 1px solid #41A884;
}

.nav_clinic_index_link_box a:hover .nav_clinic_index_link_box_img {
    box-shadow: 0 3.3rem 3.6rem rgb(217 200 173 / 20%);
}

.nav_clinic_index_link_box_img.clinic_index_feature {
    background-image: url("../img/test1.jpg");
}

.nav_clinic_index_link_box_img.clinic_index_staff {
    background-image: url("../img/test2.jpg");
}

.nav_clinic_index_link_box_img.clinic_index_clinic {
    background-image: url("../img/test3.jpg");
}

.nav_clinic_index_link_box_img.clinic_index_yukenkai {
    background-image: url("../img/test4.jpg");
}

.nav_clinic_index_link_box_img.clinic_index_infection {
    background-image: url("../img/test5.jpg");
    background-position: center 80%;
}

.nav_clinic_index_link_box_img::after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: calc(1.3rem * 1.3);
    letter-spacing: 0.075em;
    transition-duration: .25s;
    transition-property: transform, opacity, font-size;
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    content: "자세히보기";
    opacity: 0;
    z-index: 10;
    transform: translateZ(5rem) scale(1);
}

.nav_clinic_index_link_box a:hover .nav_clinic_index_link_box_img::after {
    opacity: 1;
    transform: translateZ(5rem) scale(1.0);
    font-size: calc(1.3rem * 1);
}

.nav_clinic_index_link_box_img:before {
    position: absolute;
    right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    content: "";
    z-index: 1;
}

.nav_clinic_index_link_box a:hover .nav_clinic_index_link_box_img:before {
    background: rgba(0, 0, 0, .25);
}

.nav_clinic_index_link_box_img img {
    position: absolute;
    left: 0;
    right: 0;
    width: auto;
    height: 100%;
}

.nav_clinic_index_link_box_title {
    padding-bottom: 0rem;
    color: #333333;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
    letter-spacing: 0.05em;
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
}

.nav_clinic_index_link_box_title_inner {
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    transition-property: background-size;
    background-image: linear-gradient(#41A884, #41A884);
    background-position: 100% 100%;
    background-size: 0% 1px;
    background-repeat: no-repeat;
}

.nav_clinic_index_link_box a:hover .nav_clinic_index_link_box_title_inner {
    color: #41A884;
    background-position: 0 100%;
    background-size: 100% 1px;
    text-decoration: none;
}

.nav_clinic_index_link_box.is-current .nav_clinic_index_link_box_title_inner {
    color: #41A884;
    background-position: 0 100%;
    background-size: 100% 1px;
    text-decoration: none;
}

.nav_clinic_index_link_box.is-current a {
    pointer-events: none;
}

.nav_clinic_index_link_box a:hover .nav_clinic_index_link_box_img {
    background-size: 100%;
}

.nav_treatments_link {
    display: flex;
   /*  justify-content: space-between; */
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    margin: auto;
    z-index: 9;
}

.nav_treatments_box {
    position: relative;
    width: calc(100% / 5);
    padding-top: 10%;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}

.nav_treatments_box_inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transform-style: inherit;
}

.nav_treatments_box_inner:before {}

.nav_treatments_box img {
    position: relative;
}

.nav_treatments_box a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #333333;
    text-align: center;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}

.nav_treatments_box_bordertop, .nav_treatments_box_bordertop, .nav_treatments_box_borderbtm, .nav_treatments_box_borderbtm {
    transform-style: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nav_treatments_box_bordertop::before, .nav_treatments_box_bordertop::after, .nav_treatments_box_borderbtm::before, .nav_treatments_box_borderbtm::after {
    background-color: rgba(65, 168, 132, 0.5);
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transform: translateZ(4.5rem);
}

.nav_treatments_box_bordertop::after {
    width: 0px;
    height: 1px;
    top: 8%;
    left: 8%;
}


.nav_treatments_box_bordertop::before {
    width: 0px;
    height: 1px;
    right: 8%;
    bottom: 8%;
}


.nav_treatments_box_borderbtm::after {
    width: 1px;
    height: 0px;
    left: 8%;
    bottom: 8%;
}


.nav_treatments_box_borderbtm::before {
    width: 1px;
    height: 0px;
    top: 8%;
    right: 8%;
}

/* hover */

.nav_treatments_box:hover .nav_treatments_box_bordertop::after, .nav_treatments_box:hover .nav_treatments_box_bordertop::before {
    width: 84%;
    width: calc(84% - 1px);
}

.nav_treatments_box:hover .nav_treatments_box_borderbtm::after, .nav_treatments_box:hover .nav_treatments_box_borderbtm::before {
    height: 84%;
    height: calc(84% - 1px);
}

@-moz-document url-prefix() {}

.nav_treatments_box::before {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: #E9E4E0;
    content: "";
    z-index: 10;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-property: z-index;
}

.nav_treatments_box:nth-child(5n)::before {
    display: none;
}

.nav_treatments_box_wrap {
    width: 100%;
    display: flex;
    padding: 0 2rem;
}

.nav_treatments_box_flame {
    transform-style: preserve-3d;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nav_treatments_box_img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    margin-right: 1rem;
}

.nav_treatments_box_img img {
    height: auto;
}

.nav_treatments_box_img01 {
    width: 86%;
}

.nav_treatments_box_img02 {
    width: 80%;
}

.nav_treatments_box_img03 {
    width: 95%;
}

.nav_treatments_box_img04 {
    width: 87%;
}

.nav_treatments_box_img05 {
    width: 100%;
}

.nav_treatments_box_info {
    position: relative;
    text-align: left;
    width: calc(100% - 6rem - 1rem);
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.nav_treatments_box:hover .nav_treatments_box_inner {}

.nav_treatments_box:hover::before {
    z-index: -1;
}

.nav_treatments_box:hover .nav_treatments_box_flame {
    z-index: 20;
}

.nav_treatments_box_title {
    display: inline-block;
    position: relative;
    font-weight: bold;
    font-size: 1.7rem;
    letter-spacing: 0.075em;
    white-space: nowrap;
    line-height: 1.3;
}

.nav_treatments_box_title_sub {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    min-height: calc(1em * 1.2);
    margin-top: 0.6rem;
}

.nav_treatments_box_title-04 {
    font-size: 1.4rem;
    letter-spacing: 0;
}

.nav_treatments_box_inner::before {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    box-shadow: 0 0rem 0rem rgb(173 205 217 / 20%);
    content: "";
    opacity: 0;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}

.nav_treatments_box:hover {}

.nav_treatments_box:hover .nav_treatments_box_inner::before {
    opacity: 1;
    box-shadow: 0 3.3rem 3.6rem rgba(217, 200, 173, .2);
    transform: scale(1);
}

.nav_treatments_box a::after {
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}

.nav_treatments_box:hover a::after {
    opacity: 0;
}

.nav_treatments_box:hover .nav_treatments_box_info {
    transform: translateZ(2rem);
}

.nav_treatments_box:hover .nav_treatments_box_img {
    transform: translateZ(2rem);
}

.sp_resv {
    display: none;
}

/*============================================================================

	$fixedAreaBtm

============================================================================*/

.fixedAreaBtm {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
}

.fixedAreaBtm.is-active {
    z-index: 9999;
}

.fixedAreaBtm_inner {
    position: relative;
    display: flex;
    bottom: -15.2rem;
    transition-duration: 0.82s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    box-shadow: 0 3rem 8rem -1rem rgb(217 200 173 / 75%);

}

.fixedAreaBtm.is-active .fixedAreaBtm_inner {
    bottom: 0;
}

.fixedAreaBtm_inner::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    content: "";
    background-color: #E9E4E0;
    z-index: 9;
}


.fixedAreaBtm_corona {
    margin-right: 1px;
}

.fixedAreaBtm_resv, .fixedAreaBtm_corona {
    position: relative;
    height: 11.2rem;
    width: 11.2rem;
    display: flex;
}

.fixedAreaBtm_resv a, .fixedAreaBtm_corona a {
    display: inherit;
    width: 100%;
    height: 100%;
}

.fixedAreaBtm_resv_box, .fixedAreaBtm_corona_box {
    position: relative;
    text-align: center;
    width: inherit;
    height: inherit;
    display: inherit;
    transform-style: preserve-3d;
}

.fixedAreaBtm_resv a {
    position: relative;
}

.fixedAreaBtm_resv_inner, .fixedAreaBtm_corona_inner {
    position: relative;
    text-align: center;
    width: inherit;
}

.fixedAreaBtm_resv_inner::before, .fixedAreaBtm_corona_inner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    content: "";
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    content: "";
}

.fixedAreaBtm_resv_inner_wrap, .fixedAreaBtm_corona_inner_wrap {
    position: relative;
    position: relative;
    width: inherit;
    height: inherit;
}

.fixedAreaBtm_resv:hover, .fixedAreaBtm_corona:hover {
    z-index: 9999;
}



.fixedAreaBtm_resv a:hover .fixedAreaBtm_resv_box, .fixedAreaBtm_corona a:hover .fixedAreaBtm_corona_box {
    z-index: 9999;
}

.fixedAreaBtm_resv_icon, .fixedAreaBtm_corona_icon {
    margin: 1.2rem 1.2rem 0.6rem;
    height: 5.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fixedAreaBtm_resv_icon img {
    width: 3.6rem;
}

.fixedAreaBtm_resv_text, .fixedAreaBtm_corona_text {
    font-size: 1.0rem;
    letter-spacing: 0.05em;
    color: #333;
    font-weight: bold;
    line-height: 1.33;
    white-space: nowrap;
}

.fixedAreaBtm_corona_text {
    letter-spacing: 0;
}

.fixedAreaBtm_resv_text span, .fixedAreaBtm_corona_text span {
    background-image: linear-gradient(#333, #333);
    transition: background-size .2s cubic-bezier(.165, .84, .44, 1);
    background-position: 100% 100%;
    background-size: 0% 1px;
    background-repeat: no-repeat;
}

.fixedAreaBtm_resv a:hover .fixedAreaBtm_resv_text span, .fixedAreaBtm_corona a:hover .fixedAreaBtm_corona_text span {
    /*     background-position: 0 100%;
background-size: 100% 1px;
text-decoration: none; */
}

.fixedAreaBtm_corona {
    cursor: pointer;
    transition-delay: 0.07s;
}



.fixedAreaBtm_corona_icon img {
    width: 4.8rem;
    position: relative;
    top: -0.1rem;
}



/* ホバーのボーダー */

.fixedAreaBtm_bordertop, .fixedAreaBtm_bordertop, .fixedAreaBtm_borderbtm, .fixedAreaBtm_borderbtm {
    transform-style: inherit;
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: calc(100% - (1rem * 2));
    height: calc(100% - (1rem * 2));
}

.fixedAreaBtm_bordertop::before, .fixedAreaBtm_bordertop::after, .fixedAreaBtm_borderbtm::before, .fixedAreaBtm_borderbtm::after {
    background-color: rgba(65, 168, 132, 0.5);
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transform: translateZ(1.5em);
}

.fixedAreaBtm_bordertop::after {
    width: 0px;
    height: 1px;
    top: 0;
    left: 0;
}

/* 右下へ配置 */

.fixedAreaBtm_bordertop::before {
    width: 0px;
    height: 1px;
    right: 0;
    bottom: 0;
}

/* 左下へ配置 */

.fixedAreaBtm_borderbtm::after {
    width: 1px;
    height: 0px;
    left: 0;
    bottom: 0;
}

/* 右上へ配置 */

.fixedAreaBtm_borderbtm::before {
    width: 1px;
    height: 0px;
    top: 0;
    right: 0;
}

/* hover */

.fixedAreaBtm_corona_box:hover .fixedAreaBtm_bordertop::after, .fixedAreaBtm_corona_box:hover .fixedAreaBtm_bordertop::before, .fixedAreaBtm_resv:hover .fixedAreaBtm_bordertop::after, .fixedAreaBtm_resv:hover .fixedAreaBtm_bordertop::before {
    width: 100%;
    width: calc( 100% - 1px);
}

.fixedAreaBtm_corona_box:hover .fixedAreaBtm_borderbtm::after, .fixedAreaBtm_corona_box:hover .fixedAreaBtm_borderbtm::before, .fixedAreaBtm_resv:hover .fixedAreaBtm_borderbtm::after, .fixedAreaBtm_resv:hover .fixedAreaBtm_borderbtm::before {
    height: 100%;
    height: calc( 100% - 1px);
}

.fixedAreaBtm_resv a:hover>div, .fixedAreaBtm_corona a:hover>div {
    box-shadow: 0 3.3rem 3.6rem rgb(217 200 173 / 40%);
}

.fixedAreaBtm_coronaOpen {
    position: fixed;
    top: 0;
    right: -100%;
    width: 76rem;
    height: 100vh;
    background-color: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 4rem;
    transition-duration: 0.45s;
    transition-timing-function: cubic-bezier(0.260, 0.005, 0.000, 1.035);
}

.fixedAreaBtm_coronaOpen.is-active {
    right: 0;
    box-shadow: 0 84px 64px -12px rgb(0 5 30 / 15%);
}

.fixedAreaBtm_coronaOpen_inner {}

.fixedAreaBtm_coronaOpen_inner_title {
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}



.fixedAreaBtm_coronaOpen_inner_gcal iframe {
    width: 100%;
    height: 38rem;
}

.fixedAreaBtm_coronaOpen_close {
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 3rem;
    font-size: 1.5rem;
    text-align: center;
}

.fixedAreaBtm_coronaOpen_close_icon {
    display: inline-block;
    position: relative;
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    top: 0.5rem;
}

.fixedAreaBtm_coronaOpen_close_icon::before, .fixedAreaBtm_coronaOpen_close_icon::after {
    position: absolute;
    left: 50%;
    width: 1px;
    height: 100%;
    content: "";
    background-color: #43BCF6;
}

.fixedAreaBtm_coronaOpen_close_icon::before {
    transform: rotate( 45deg);
}

.fixedAreaBtm_coronaOpen_close_icon::after {
    transform: rotate( -45deg);
}


/*==================================================================

	#contents

==================================================================*/

.tit01_sub {
    display: none;
}

main {
    display: block;
}

#container {
    margin: 0 auto;
    padding: 16.3rem 0 0;
}

#contents {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 160rem;
    min-width: 128rem;
    margin: 16.3rem auto 0;
    padding: 0 10rem;
}

#contents_left {
    width: calc(100% - 25rem - 12rem);
}

.side_contents {
    position: relative;
    width: 25rem;
}

.side_contents_box {
    position: sticky;
    top: 10rem;
    padding-bottom: 8.5rem;
}

.side_contents_box::before {
    position: absolute;
    width: 50vw;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #FAF8F5;
    /* 	content:""; */
}

.side_contents_title {
    position: relative;
    margin-top: -0.3rem;

    font-size: 2.1rem;
    font-weight: bold;
    /* border-top: 1px solid rgba(220, 222, 231, 1); */
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.side_contents_title_sub {
    margin-bottom: 1.1rem;
    font-size: 1.3rem;
    letter-spacing: 0;
}

.side_contents_list_title {
    position: relative;
    margin-bottom: 2rem;
    color: #A8A4A0;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.side_contents_list_title:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    margin: auto;
    background-color: #E9E4E0;
    content: "";
    z-index: -1;
}

.side_contents_list_tit_bg {
    padding-right: 0.6rem;
    background-color: #ffffff;
}

.side_contents_list {
    font-size: 1.5rem;
    letter-spacing: 0;
}

.side_contents_list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.side_contents_list li::before, .side_contents_list li::after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.2rem;
    margin: auto;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #D6D2CE;
    border-radius: 100%;
    content: '';
}

.side_contents_list li::after {
    transition: transform, opacity .5s cubic-bezier(.165, .84, .44, 1);
    z-index: 10;
    opacity: 0;
    background-color: rgba(106, 97, 89, .75);
}

.side_contents_list li.is-active::after {
    transform: scale(1.4, 1.4);
    opacity: 1;
}

.side_contents_list li a {
    position: relative;
    left: 0;
    line-height: 1.5;
    color: #333333;
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    transition-property: background-size, left;
    background-image: linear-gradient(rgb(131, 131, 131), rgb(131, 131, 131));
    background-position: 100% 100%;
    background-size: 0% 1px;
    background-repeat: no-repeat;
}

.side_contents_list li a::after {
    /*   position: absolute;
  width: 0;
  right: 0;
  left: auto;
  bottom: -0.2rem;
  height: 1px;
  background-color: rgb(131, 131, 131);
  transition: 0.2s cubic-bezier(0.260, 0.005, 0.000, 1.035);
  content: "";
  z-index: 1; */
}

.side_contents_list li.is-active a {
    font-weight: bold;
    pointer-events: none;
    background-position: 0 100%;
    background-size: 100% 1px;
    text-decoration: none;
}

/* .side_contents_list li.is-active a::after, */

.side_contents_list li.is-active a::after, .side_contents_list li a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.side_contents_list li a:hover {
    /* margin-left: 0.6rem; */
    left: 0.6rem;
    background-position: 0 100%;
    background-size: 100% 1px;
    text-decoration: none;
}

.side_contents_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 1200px;
    margin: auto;
    height: 7.5rem;
}

.side_contents_bg::before {
    position: absolute;
    left: calc(1200px - 38rem);
    width: 50vw;
    height: inherit;
    background-color: #FAF8F5;
    content: "";
}

/*============================================================================

	$footer

============================================================================*/

footer {
    position: relative;
    min-width: 128rem;
    background-color: #F2F0EC;
}

/*============================================================================

	.footer_info

============================================================================*/

/* フッターの医院概要 */

.footer_info {
    min-width: 128rem;
    max-width: 160rem;
    margin: auto;
    padding: 0;
}

.footer_info>.inner {
    display: flex;
    justify-content: space-between;
    padding: 20rem 10rem 0;
}

/* 左コンテンツの横幅 */

.footer_info_r, .footer_info_l {
    width: 44.16%;
    min-width: 52rem;
}

.footer_info_l {
    font-size: 1.5rem;
}

.footer_info_r {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_info_logo {
    margin-bottom: 3.5rem;

}
.footer_info_logo a {
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(0.260, 0.005, 0.000, 1.035);
}
.footer_info_logo a:hover {
    opacity: 0.5;
}

.footer_info_logo svg {
    width: 17.4rem;
    height: 3.9rem;
}

.footer_info_medical {
    margin-bottom: 1.7rem;
    display: flex;
}
.footer_info_medical > div{
margin-right: 0.4rem;
}
.footer_info_medical>div {
    display: inline-block;
    position: relative;
}

.footer_info_medical a {
    position: relative;
    display: block;
    padding: 0.1rem 1rem 0;
    background-color: #fff;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer_info_medical a:hover {}

/* ホバーのボーダー */

.footer_info_medical_bordertop, .footer_info_medical_bordertop, .footer_info_medical_borderbtm, .footer_info_medical_borderbtm {
    transform-style: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer_info_medical_bordertop::before, .footer_info_medical_bordertop::after, .footer_info_medical_borderbtm::before, .footer_info_medical_borderbtm::after {
    background-color: rgba(65, 168, 132, 0.5);
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transform: translateZ(1.5em);
}

.footer_info_medical_bordertop::after {
    width: 0px;
    height: 1px;
    top: 0;
    left: 0;
}

/* 右下へ配置 */

.footer_info_medical_bordertop::before {
    width: 0px;
    height: 1px;
    right: 0;
    bottom: 0;
}

/* 左下へ配置 */

.footer_info_medical_borderbtm::after {
    width: 1px;
    height: 0px;
    left: 0;
    bottom: 0;
}

/* 右上へ配置 */

.footer_info_medical_borderbtm::before {
    width: 1px;
    height: 0px;
    top: 0;
    right: 0;
}

/* hover */

.footer_info_medical>div:hover .footer_info_medical_bordertop::after, .footer_info_medical>div:hover .footer_info_medical_bordertop::before, .footer_info_medical>div:hover .footer_info_medical_bordertop::after, .footer_info_medical>div:hover .footer_info_medical_bordertop::before {
    width: 100%;
    width: calc( 100% - 1px);
}

.footer_info_medical>div:hover .footer_info_medical_borderbtm::after, .footer_info_medical>div:hover .footer_info_medical_borderbtm::before, .footer_info_medical>div:hover .footer_info_medical_borderbtm::after, .footer_info_medical>div:hover .footer_info_medical_borderbtm::before {
    height: 100%;
    height: calc( 100% - 1px);
}

.footer_info_medical span a:hover>div, .footer_info_medical_corona a:hover>div {}

.footer_info_medical_default {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
}

.footer_info_medical_default span {
    display: inline-block;
    position: relative;
    top: 0;
}

.footer_info_medical a:hover .footer_info_medical_default span {
    animation-name: btn01_default;
    animation-duration: .25s;
    animation-timing-function: cubic-bezier(.166, .74, .49, 1);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

.footer_info_medical a:hover .footer_info_medical_default span:nth-child(1) {
    animation-delay: 0s;
}

.footer_info_medical a:hover .footer_info_medical_default span:nth-child(2) {
    animation-delay: 0.02s;
}

.footer_info_medical a:hover .footer_info_medical_default span:nth-child(3) {
    animation-delay: 0.04s;
}

.footer_info_medical a:hover .footer_info_medical_default span:nth-child(4) {
    animation-delay: 0.06s;
}

.footer_info_medical a:hover .footer_info_medical_default span:nth-child(5) {
    animation-delay: 0.08s;
}

.footer_info_medical a:hover .footer_info_medical_default span:nth-child(6) {
    animation-delay: 0.1s;
}

.footer_info_medical a:hover .footer_info_medical_default span:nth-child(7) {
    animation-delay: 0.12s;
}

.footer_info_medical a:hover .footer_info_medical_default span:nth-child(8) {
    animation-delay: 0.14s;
}

.footer_info_medical a:hover .footer_info_medical_default span:nth-child(9) {
    animation-delay: 0.16s;
}

.footer_info_medical a:hover .footer_info_medical_default span:nth-child(10) {
    animation-delay: 0.18s;
}

.footer_info_medical_hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    transition-duration: .35s;
    transition-delay: 0.1s;
    transition-timing-function: cubic-bezier(.166, .74, .49, 1);
    transition-property: transform, opacity;
    visibility: hidden;
    margin: auto;
    bottom: 0;
    padding: inherit;
}

.footer_info_medical_hover span {
    display: inline-block;
    transform: translateY(1.2rem);
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-property: transform, opacity;
}

.footer_info_medical a:hover .footer_info_medical_hover span {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.footer_info_medical a:hover .footer_info_medical_hover span:nth-child(1) {
    transition-delay: 0.25s;
}

.footer_info_medical a:hover .footer_info_medical_hover span:nth-child(2) {
    transition-delay: 0.27s;
}

.footer_info_medical a:hover .footer_info_medical_hover span:nth-child(3) {
    transition-delay: 0.29s;
}

.footer_info_medical a:hover .footer_info_medical_hover span:nth-child(4) {
    transition-delay: 0.31s;
}

.footer_info_medical a:hover .footer_info_medical_hover span:nth-child(5) {
    transition-delay: 0.32s;
}

.footer_info_medical a:hover .footer_info_medical_hover span:nth-child(6) {
    transition-delay: 0.33s;
}

.footer_info_medical a:hover .footer_info_medical_hover span:nth-child(7) {
    transition-delay: 0.35s;
}

.footer_info_medical a:hover .footer_info_medical_hover span:nth-child(8) {
    transition-delay: 0.37s;
}

.footer_info_medical a:hover .footer_info_medical_hover span:nth-child(9) {
    transition-delay: 0.39s;
}

.footer_info_medical a:hover .footer_info_medical_hover span:nth-child(10) {
    transition-delay: 0.41s;
}

.footer_info_tel {
    align-items: baseline;
    margin-bottom: 1.6rem;
}

.footer_info_tel_note {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    padding-top: 0.1rem;
}

.footer_info_tel_note_recept {
    display: inline;
}

.footer_info_tel_note_close {
    display: inline;
    margin-top: -1rem;
}

.footer_info_add {
    margin-bottom: 0.9rem;
    line-height: 1.6;
}
.footer_info_add a{
    color: #333333;
    background-image: linear-gradient(#333333, #333333);
transition: background-size .52s cubic-bezier(.165, .84, .44, 1);
background-position: 100% 100%;
background-size: 0% 1px;
background-repeat: no-repeat;
}
.footer_info_add a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
    text-decoration: none;
}
.footer_info_l .tel_num {
    margin-bottom: 0.2rem;
}

.footer_info_l .tel_num a {
    font-size: 2.4rem;
    letter-spacing: 0.085em;
}

.footer_info_l .tel_num_text {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    margin-right: 0;
}

.footer_info_access {
    margin-bottom: 6.5rem;
}

.footer_info_access_text {
    margin-right: 1.5rem;
}

.footer_info_overview_ad_google {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    font-style: normal;
    letter-spacing: 0.05em;
}

.footer_info_overview_ad_google::before {
    /*   position: absolute;
  bottom: 0;
  top: 0.3rem;
  right: -1.6rem;
  width: 1.1rem;
  height: 0.9rem;
  margin: auto;
  background-image: url(../images/icon_clone_g.svg);
  background-repeat: no-repeat;
  content: "";
  border-right: none;
  border-top: none;
  opacity: 1; */
}

.footer_info_overview_ad dd:hover .footer_info_overview_ad_google::before {}

.footer_info_overview_ad_google a {
    position: relative;
    display: block;
    padding-bottom: 0;
    vertical-align: middle;
    /*     background-image: linear-gradient(#41A884, #41A884);
    transition: background-size .2s cubic-bezier(.165, .84, .44, 1);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 1px;
    text-decoration: none; */
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.footer_info_overview_ad_google a::before, .footer_info_overview_ad_google a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(65, 168, 132, 0.5);
}

.footer_info_overview_ad_google a:hover::before {
    animation-name: btn01_border_01;
    animation-duration: .36s;
    animation-timing-function: cubic-bezier(.166, .74, .49, 1);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

@keyframes btn01_border_01 {
    from {
        width: 100%;
    }
    100% {
        width: 0%;
        left: 100%;
    }
}

.footer_info_overview_ad_google a:hover::after {
    animation-name: btn01_border_02;
    animation-duration: .36s;
    animation-timing-function: cubic-bezier(.166, .74, .49, 1);
    animation-iteration-count: 1;
    animation-fill-mode: both;
    animation-delay: .26s;
}

@keyframes btn01_border_02 {
    from {
        width: 0;
        left: 0;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

.footer_info_overview_ad_google_default {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    height: 1.9rem;
    display: inline-block;
}

.footer_info_overview_ad_google_default span {
    display: inline-block;
    position: relative;
    top: 0;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span {
    animation-name: btn01_default;
    animation-duration: .25s;
    animation-timing-function: cubic-bezier(.166, .74, .49, 1);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span:nth-child(1) {
    animation-delay: 0s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span:nth-child(2) {
    animation-delay: 0.02s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span:nth-child(3) {
    animation-delay: 0.04s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span:nth-child(4) {
    animation-delay: 0.06s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span:nth-child(5) {
    animation-delay: 0.08s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span:nth-child(6) {
    animation-delay: 0.1s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span:nth-child(7) {
    animation-delay: 0.12s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span:nth-child(8) {
    animation-delay: 0.14s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span:nth-child(9) {
    animation-delay: 0.16s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_default span:nth-child(10) {
    animation-delay: 0.18s;
}

.footer_info_overview_ad_google_hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    transition-duration: .35s;
    transition-delay: 0.1s;
    transition-timing-function: cubic-bezier(.166, .74, .49, 1);
    transition-property: transform, opacity;
    visibility: hidden;
    height: 1.9rem;
    display: inline-block;
}

.footer_info_overview_ad_google_hover span {
    display: inline-block;
    transform: translateY(1.2rem);
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-property: transform, opacity;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span:nth-child(1) {
    transition-delay: 0.25s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span:nth-child(2) {
    transition-delay: 0.27s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span:nth-child(3) {
    transition-delay: 0.29s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span:nth-child(4) {
    transition-delay: 0.31s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span:nth-child(5) {
    transition-delay: 0.32s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span:nth-child(6) {
    transition-delay: 0.33s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span:nth-child(7) {
    transition-delay: 0.35s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span:nth-child(8) {
    transition-delay: 0.37s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span:nth-child(9) {
    transition-delay: 0.39s;
}

.footer_info_overview_ad_google a:hover .footer_info_overview_ad_google_hover span:nth-child(10) {
    transition-delay: 0.41s;
}

.footer_info_overview_ad_google a:hover {
    background-position: 100% 100%;
    background-size: 0% 1px;
    color: #41A884;
}

.footer_info_overview_access {}

.footer_info_overview_access dt a {
    position: relative;
    background-image: linear-gradient(#41A884, #41A884);
    transition: background-size .2s cubic-bezier(.165, .84, .44, 1);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 1px;
    text-decoration: none;
}

.footer_info_overview_access dt a::before {}

.footer_info_overview_inline-block {
    display: inline-block;
}

.footer_info_overview_access dt a:hover {
    background-position: 100% 100%;
    background-size: 0% 1px;
    color: #41A884;
}

.footer_info_overview_access_btn {
    padding-left: 13px;
}

/*============================================================================

	.schedule

============================================================================*/

.footer_info_sche {
    width: 100%;
}

.footer_info_sche .schedule table {
    width: 100%;
    border: 1px solid #DDD6CF;
}

.footer_info_sche .tb01 tr:first-child td {
    padding-top: 2.08rem;
    font-size: 1.5rem;
    letter-spacing: 0;
}

.footer_info_sche .tb01 tr:first-child td:first-child {
    letter-spacing: -0.08em;
}

.footer_info_sche .tb01 tr:first-child th {
    padding: 2rem 0.7rem 1.2rem;
    letter-spacing: 0;
    font-weight: bold;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
    text-align: center;
}

.footer_info_sche .tb01 th:first-child {
    padding: 1.2rem 2.5rem 1.2rem 0.05rem;
    letter-spacing: 0.05em;
}

.footer_info_sche .tb01 th:first-child {
    padding: 1.8rem 0.7rem 1em;
    font-size: 1.5rem;
    font-family: 'Heebo', sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
}

.footer_info_sche .tb01 td:last-child {
    text-align: center;
}

.footer_info_sche .tb01 td {
    width: 10%;
    color: #A8A4A0;
    font-size: 1.35rem;
    text-align: center;
}

.footer_info_sche .tb01 td, .footer_info_sche .tb01 th {
    border-bottom: 1px solid #DDD6CF;
    border-right: 1px solid #DDD6CF;
    padding: 2.0rem 0.35rem 2.0rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
    vertical-align: top;
}

.footer_info_sche .tb01 th {
    width: 26%;
}

.footer_info_sche_note {
    display: flex;
    justify-content: space-between;
    margin-top: 1.2rem;
}

.footer_note_sat_asta {}

.footer_info_sche_note_sat {
    font-size: 1.6rem;
    letter-spacing: 0;
}

.footer_info_sche_note_sat_num {
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.05em;
    font-size: 1.5rem;
}

.footer_info_sche_note_sat_co {
    font-size: 1.4rem;
}

.footer_info_sche_note_sat_asta {
    color: #41A884;
    font-size: 1.5rem;
}

/*============================================================================

	.footer_navi

============================================================================*/

.footer_navi {}

.footer_navi .inner {
    padding: 0 0rem 0;
}

.footer_navi_list {
    display: flex;
    justify-content: space-between;
}

.footer_navi ul {}

.footer_navi ul li {
    position: relative;
    font-size: 0;
}

.footer_navi ul.footer_navi_list01 li {
    margin-bottom: 1.7rem;
}

.footer_navi ul li a {
    color: #333333;
    font-size: 1.3rem;
    line-height: 1.5;
    transition-duration: 0.0s;
    transition-timing-function: cubic-bezier(0.18, 0.06, 0.23, 1);
}

.footer_navi ul.footer_navi_list01 li a, .footer_navi ul li.footer_navi_list_tit a {
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}

.footer_navi ul li a, .footer_navi_list_sub a, .footer_bottom_nav li a {
    background-image: linear-gradient(#333333, #333333);
    transition: background-size .2s cubic-bezier(.165, .84, .44, 1);
    background-position: 100% 100%;
    background-size: 0% 1px;
    background-repeat: no-repeat;
}

.footer_navi ul li a:hover, .footer_bottom_nav li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
    text-decoration: none;
}

.footer_navi_list_tit {
    margin-bottom: 1.45rem;
}

.footer_navi_list_tit a {}

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

.footer_navi_list_sub:last-child {
    padding-bottom: 0;
}

.footer_navi_list_sub {
    margin-bottom: 0;
    padding: 0.2rem 0 0.7rem 1.3rem;
    border-left: 1px solid #DDD6CF;
}

.footer_navi_list_sub a {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0;
}

.footer_navi_list ul {
    width: fit-content;
}

.footer_navi_list01, .footer_navi_list03, .footer_navi_list04, .footer_navi_list05 {
    margin-right: 0;
}

.footer_navi_list01 {
    margin-right: 3.0rem;
}

.footer_navi_list02 {
    margin-right: 3.0rem;
}

.footer_navi_list03 {}

.footer_navi_list04 {}

.footer_navi_list03 .footer_navi_list_tit {
    width: 100%;
}

.footer_navi_list03 .footer_navi_list_sub:first-child {
    padding-top: 0;
}

.footer_navi_list03 .footer_navi_list_sub {}

.footer_navi_list03 .footer_navi_list_sub a {}

.footer_navi_list ul li.footer_navi_list_sub:last-child a, .footer_navi_list ul li.footer_navi_list_sub.footer_navi_list_sub_last a {
    padding-bottom: 0;
}

.footer_navi_list02_inner {}

.footer_navi_list03_inner {
    display: none;
}

.footer_navi_reserv {
    width: 100%;
    margin-top: 2.2rem;
    padding: 4.8rem 4.8rem;
    background-color: #ffffff;
    background-size: 16.2rem;
    background-position: top 2.3rem right 2rem;
    background-repeat: no-repeat;
    /* border-radius: 6px; */
    font-size: 1.3rem;
}

.footer_navi_reserv_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.8rem;
}

.footer_navi_reserv_title .footer_info_overview_ad_google {
    top: -0.1rem;
}

.footer_navi_reserv_title a {
    margin-left: 2rem;
    font-weight: bold;
}

.footer_navi_reserv_title a:hover {
    color: #41A884;
}

.footer_navi_reserv .tit03 {
    padding-bottom: 0.2rem;
    font-weight: bold;
    font-size: 1.9rem;
    letter-spacing: 0.03em;
}

.footer_navi_reserv_txt {
    font-size: 1.4rem;
    line-height: 1.8;
}

.footer_navi_reserv_btn {
    display: flex;
    justify-content: space-between;
    margin-top: 1.1rem;
}

.footer_navi_reserv_btn_tel {}

.footer_navi_reserv_btn_tel .tel_tit {
    margin-bottom: -0.5rem;
    padding-right: 0;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 2.1;
    letter-spacing: 0.015em;
}

.footer_navi_reserv_btn_tel .tel_num {
    padding-left: 0.2rem;
}

.footer_navi_reserv_btn_tel .tel_num a {
    font-size: 2.3rem;
}

.footer_navi_reserv_btn_web {
    margin-top: 0.6rem;
    width: 48.2%;
}

.footer_navi_reserv_btn_web a {
    display: block;
    position: relative;
    padding: 1.2rem 3rem;
    border-radius: 5.6rem;
    border: 1px solid #41A884;
    background-color: #41A884;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}

.footer_navi_reserv_btn_web a:hover {
    background-color: #ffffff;
    color: #41A884;
}

.footer_navi_reserv_btn_web a span {
    display: block;
    position: relative;
    font-weight: bold;
    font-size: 1.4rem;
}

.footer_navi_reserv_btn_web a span:before {}

.footer_navi_reserv_link {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer_navi_reserv_link li {
    position: relative;
}

.footer_navi_reserv_link_web {
    width: 100%;
    margin-bottom: 1.6rem;
}

.footer_navi_reserv_link_web a {
    background-color: #41A884;
    display: block;
    height: 5rem;
    padding: 1rem 0;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    transition-duration: .1s;
    transition-timing-function: cubic-bezier(0.260, 0.005, 0.000, 1.035);
    overflow: hidden;
    position: relative;
}

.footer_navi_reserv_link_web a:hover {
    /*     background-color: rgba(65, 168, 132, 0.15);
    color: #41A884; */
}

.footer_navi_reserv_link_web a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: #fff;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
    will-change: transform;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.footer_navi_reserv_link_web a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.footer_navi_reserv_link_web a>span {
    position: absolute;
}

.footer_navi_reservation_web_icon_w {
    left: 3%;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 4.5rem;
    height: 3.6rem;
}

.footer_navi_reservation_web_icon_w img {
    width: inherit;
    height: inherit;
}

.footer_navi_reserv_link_web_text {
    color: #fff;
    left: 7%;
    top: 0;
    bottom: 0;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    z-index: 10;
}

.footer_navi_reserv_link_web_logo_text {
    width: auto;
    height: 2.6rem;
    top: -0.1rem;
    right: calc(4% + 8.2rem);
    bottom: 0;
    margin: auto;
    padding-bottom: 0.1rem;
}

.footer_navi_reserv_link_web_logo_text img {
    width: inherit;
    height: inherit;
}

.footer_navi_reserv_link_web_logo_img {
    width: 11rem;
    height: 10.054rem;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -4.6%;
}

.footer_navi_reserv_link_web_logo_img img {
    width: inherit;
    height: inherit;
}

.footer_navi_reserv_link_tel {
    width: 50%;
    line-height: 1;
}

.footer_navi_reserv_link_tel_text {
    display: block;
    margin-bottom: 0.1rem;
    letter-spacing: 0.04em;
    font-weight: bold;
}

.footer_navi_reserv_link_tel_text_s {
    font-weight: 500;
}

.footer_navi_reserv_link_tel a {
    display: inline-block;
}

.footer_navi_reserv_link_tel a:hover {
    color: #41A884;
}

.footer_navi_reserv_link_tel_text_tel {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    margin-right: 0.2rem;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.footer_navi_reserv_link_tel_text_num {
    font-size: 2.35rem;
    font-family: dinosaur, sans-serif;
    letter-spacing: 0.09em;
    font-weight: 500;
}

.footer_navi_reserv_link_line {
    width: 50%;
    text-align: center;
    display: flex;
}

.footer_navi_reserv_link_line a {
    width: 100%;
    border: 1px solid #E9E4E0;
    display: flex;
    transition-duration: .1s;
    transition-timing-function: cubic-bezier(0.260, 0.005, 0.000, 1.035);
    align-items: center;
    justify-content: center;
}

.footer_navi_reserv_link_line a:hover {
    /* 
    background-color: rgba(65, 168, 132, 0.15); */
}

.footer_resv_line {
    width: 10.6rem;
    height: 1.1rem;
    margin-top: -0.1rem;
}

.footer_navi_reserv_link_line_default {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
}

.footer_navi_reserv_link_line a:hover .footer_navi_reserv_link_line_default img {
    animation-name: btn01_default;
    animation-duration: .35s;
    animation-timing-function: cubic-bezier(.166, .74, .49, 1);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

.footer_navi_reserv_link_line_hover {
    position: absolute;
    transform: translateY(2rem);
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    opacity: 0;
    transition-duration: .35s;
    transition-delay: 0.1s;
    transition-timing-function: cubic-bezier(.166, .74, .49, 1);
    transition-property: transform, opacity;
    visibility: hidden;
}

.footer_navi_reserv_link_line a:hover .footer_navi_reserv_link_line_hover {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.footer_navi_reserv_link_line a:hover .footer_navi_reserv_link_line_hover img {}

.footer_navi_reserv_link_bordertop::before, .footer_navi_reserv_link_bordertop::after, .footer_navi_reserv_link_borderbtm::before, .footer_navi_reserv_link_borderbtm::after {
    background-color: rgba(65, 168, 132, 0.5);
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    transition-duration: 0.75s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transform: translateZ(6rem);
}

.footer_navi_reserv_link_bordertop::before, .footer_navi_reserv_link_bordertop::after, .footer_navi_reserv_link_borderbtm::before, .footer_navi_reserv_link_borderbtm::after {
    background-color: rgba(65, 168, 132, 0.5);
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    transition-duration: 0.75s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transform: translateZ(6rem);
}

.footer_navi_reserv_link_bordertop::after {
    width: 0px;
    height: 1px;
    top: 0;
    left: 0;
}

/* 右下へ配置 */

.footer_navi_reserv_link_bordertop::before {
    width: 0px;
    height: 1px;
    right: 0;
    bottom: 0;
}

/* 左下へ配置 */

.footer_navi_reserv_link_borderbtm::after {
    width: 1px;
    height: 0px;
    left: 0;
    bottom: 0;
}

/* 右上へ配置 */

.footer_navi_reserv_link_borderbtm::before {
    width: 1px;
    height: 0px;
    top: 0;
    right: 0;
}

/* hover */

.footer_navi_reserv_link li:hover .footer_navi_reserv_link_bordertop::after, .footer_navi_reserv_link li:hover .footer_navi_reserv_link_bordertop::before {
    width: 100%;
}

.footer_navi_reserv_link li:hover .footer_navi_reserv_link_borderbtm::after, .footer_navi_reserv_link li:hover .footer_navi_reserv_link_borderbtm::before {
    height: 100%;
}

.footer_bottom .inner {
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    min-width: inherit;
    max-width: 160rem;
    padding: 4rem 10rem 18.5rem;
    margin: 0 auto;
}

.footer_bottom_nav {
    display: flex;
    justify-content: flex-start;
}

.footer_bottom_nav li {
    margin-left: 2.3rem;
}

.footer_bottom_nav li a {
    color: #333333;
    font-size: 1.3rem;
    line-height: 1rem;
    letter-spacing: 0;
}

.footer_bottom_nav li a:hover {}

.footer_navi_list_tit .ico_cross {
    display: none;
}

/* コピーライト */

.copy {
    text-align: center;
    font-family: 'Heebo', sans-serif;
}

.copy small {
    font-weight: 300;
    color: #A8A4A0;
    font-size: 1.3rem;
    line-height: 1rem;
    letter-spacing: 0.05em;
}

/* ページトップ */

.pagetop {
    position: fixed;
    right: 4%;
    bottom: 4%;
    text-align: center;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 9999;
}

/* 背景色 */

.pagetop::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1E2B68;
    content: "";
    transition: 0.1s ease-in-out;
}

.pagetop_inner, .pagetop img {
    width: 20px;
    height: 11px;
    margin: auto;
}

.pagetop_inner {
    display: flex;
    justify-content: center;
    align-content: center;
    height: inherit;
    width: inherit;
}

.pagetop img {
    position: relative;
    top: -2px;
    vertical-align: top;
}

/* ホバー */

.pagetop:hover::before {
    opacity: 0.5;
}





@-webkit-keyframes loop-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loop-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.fadein_object {
    opacity: 0;
    filter: blur(1rem);
    transform: scale(1.05);
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    transition-duration: .55s;
    transition-property: transform, filter, opacity;
}

.fadein_object.is-active {
    opacity: 1;
    filter: none;
    transform: scale(1);
    /*   animation: fadein-object .45s 1 linear forwards; */
}

@keyframes fadein-object {
    0% {
        pointer-events: none;
    }
    99.999% {
        pointer-events: none;
    }
    100% {
        pointer-events: all;
    }
}

.fadein01, .fadein02, .fadein03, .fadein04, .fadein05, .fadein06, .fadein07, .fadein08, .fadein09, .fadein11, .fadein12, .fadein13 {
    opacity: 0;
    filter: blur(2.4rem) brightness(1.3);
    transform: scale(1.15);
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    transition-duration: .55s;
    transition-property: transform, filter, opacity;
}

.fadein_feature04 {
    opacity: 0;
    filter: blur(1rem);
    transform: scale(1.085);
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    transition-duration: .55s;
    transition-property: transform, filter, opacity;
}

.fadein_kvinfo {
    opacity: 0;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-duration: .85s;
    transition-property: transform, filter, opacity;
    transition-delay: .80s;
}

.fadein_text {
    opacity: 0;
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    transition-duration: .95s;
    transition-property: transform, filter, opacity;
}

.fadein_title {
    transform: translate(0, 3rem);
    opacity: 0;
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    transition-duration: .75s;
    transition-property: transform, filter, opacity;
}

.treatment_box_img img {
    opacity: 0;
    filter: blur(1rem);
    transform: scale(1.085);
    transition-timing-function: cubic-bezier(0.075, 0.05, 0.000, 1.0);
    transition-duration: .55s;
    transition-property: transform, filter, opacity;
}

.fadein01.is-active, .fadein02.is-active, .fadein03.is-active, .fadein04.is-active, .fadein05.is-active, .fadein06.is-active, .fadein07.is-active, .fadein08.is-active, .fadein09.is-active, .fadein10.is-active, .fadein11.is-active, .fadein12.is-active, .fadein13.is-active, .fadein_feature04.is-active, .fadein_text.is-active, .fadein_title.is-active, .treatment_box_img.is-active img {
    opacity: 1;
    filter: none;
    transform: scale(1);
    animation: fadein-object .55s 1 linear forwards;
}

.fadein_kvinfo.is-active {
    opacity: 1;
}

.fadein_delay01 {
    transition-delay: 0.1s;
}

.fadein_delay02 {
    transition-delay: 0.15s;
}

.fadein_delay03 {
    transition-delay: 0.2s;
}

.fadein_delay04 {
    transition-delay: 0.25s;
}

.fadein_delay05 {
    transition-delay: 0.3s;
}

.fadein_delay06 {
    transition-delay: 0.35s;
}

.fadein_delay07 {
    transition-delay: 0.4s;
}



@-webkit-keyframes loop-text {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100vw);
    }
}

@keyframes loop-text {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}







/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .kv_open {
    width: 15rem;
    }
    _:-ms-lang(x)::-ms-backdrop, .kv_catch_b_line1 {
    height: 4rem;
    }
    _:-ms-lang(x)::-ms-backdrop, .kv_catch_b_line2 {
    height: 4rem;
    }
    _:-ms-lang(x)::-ms-backdrop, .top_about_text_r_inner{
    height: 39.5rem;
    }
    _:-ms-lang(x)::-ms-backdrop, .top_about_text_p{
    height: auto;
    
    }








@media screen and (max-width: 1366px) {
    .nav_treatments_box:nth-child(5) .nav_treatments_box_title br {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    .nav_treatments_box:nth-child(5) .nav_treatments_box_title br {
        display: block;
    }
}

@media screen and (min-width: 1501px) {
    .nav_treatments_box:nth-child(5) .nav_treatments_box_title br {
        display: none;
    }
}

@media screen and (min-width: 1601px) {
    .nav_treatments_box:nth-child(2) .nav_treatments_box_title br {
        display: none;
    }
    .kv-staff_img {
        background-position: center 40%;
    }
    .kv-infection_img {
        background-position: center 85%;
    }
}

@media screen and (min-width: 1921px) {
    html {
        font-size: 68.75%;
    }
    .top_treatments_l_about {
        top: -20.36rem;
    }
    .box01, .footer_info, .kv_inner, .nav_dropdown_inner, .nav_clinic_index_link_outer, .kv .inner, .kv_inner, .kv-clinic_features_inner, .breadcrumbs, #contents, .footer_bottom .inner, .clinic_index_link_outer, .treatment_contents_text {
        max-width: 170rem;
    }
    .kv-clinic_features_inner {
        flex-basis: 170rem;
    }
    .footer_info_r, .footer_info_l {
        width: 42.16%;
    }
    .nav_treatments_box_title br {
        display: none;
    }
    .kv_news .archive_item .archive_ttl {
        top: 2px;
}
}



/* custom */
/* .sp_navi_clinic, .sp_navi_fold{display: none !important;} */