/* CSS Document */
@media only screen and (max-width: 768px) {
  .blurFixSP {
    image-rendering: optimizeSpeed;
    /* STOP SMOOTHING, GIVE ME SPEED  */
    /* Firefox                        */
    image-rendering: -o-crisp-edges;
    /* Opera                          */
    image-rendering: -webkit-optimize-contrast;
    /* Chrome (and eventually Safari) */
    image-rendering: pixelated;
    /* Chrome */
    image-rendering: optimize-contrast;
    /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;
    /* IE8+                           */
  }
  :root {
    --ttl_size: 26px;
    --wrapper: 60px;
  }
}
@media only screen and (max-width: 520px) {
  :root {
    --ttl_size: 24px;
  }
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Menu Toogle
********************************/
body:not(.ovh) .menu_toggle .inside {
  pointer-events: none;
}

.menu_toggle {
  position: fixed;
  top: 0;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.menu_toggle::before, .menu_toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.menu_toggle::before {
  background-image: url(../images/ft_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -2;
}
.menu_toggle::after {
  background-color: #2D2D2D;
  mix-blend-mode: multiply;
  z-index: -1;
}
.menu_toggle.active {
  opacity: 1;
  visibility: visible;
}
.menu_toggle ul li {
  position: relative;
  overflow: hidden;
}
.menu_toggle p {
  margin-bottom: 0;
}
.menu_toggle .inside {
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
  overflow: auto;
}
.menu_toggle .inside .ft_menu {
  padding: 50px 0;
}
@supports (-webkit-touch-callout: none) {
  .menu_toggle .inside .ft_menu {
    /* Specific to iOS devices */
    padding-bottom: 120px;
  }
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .menu_toggle .inside .ft_menu {
      /* Safari */
      padding-bottom: 120px;
    }
  }
}

#nav-icon {
  width: 40px;
  height: 7px;
  position: relative;
  margin: 0 auto 0px;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
#nav-icon span {
  background-color: #fff;
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-of-type(1) {
  top: 0;
}
#nav-icon span:nth-child(2) {
  top: 8px;
}
#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

.hamburger-btn {
  position: fixed;
  top: 27px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .menu_toggle .inside .ft_menu .menu01 {
    margin-bottom: 30px;
  }
  .menu_toggle .inside .ft_menu li {
    margin-bottom: 0;
  }
  .menu_toggle .inside .ft_menu .ttl {
    margin-bottom: 15px;
  }
  .menu_toggle .inside .ft_menu .at_tab {
    margin-left: 20px;
    display: none;
  }
  .menu_toggle .inside .ft_menu .lv1 {
    margin-left: 20px;
  }
  .menu_toggle .inside .ft_menu .ttl_sub {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu_toggle .inside .ft_menu .ttl_sub.active span::after {
    display: none;
  }
  .menu_toggle .inside .ft_menu .ttl_sub a {
    width: calc(100% - 15px);
    padding: 10px 10px 9px 10px;
    border-bottom: none;
  }
  .menu_toggle .inside .ft_menu .ttl_sub span {
    width: 15px;
    height: 15px;
    position: relative;
    cursor: pointer;
  }
  .menu_toggle .inside .ft_menu .ttl_sub span::before, .menu_toggle .inside .ft_menu .ttl_sub span::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #fff;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  .menu_toggle .inside .ft_menu .ttl_sub span::before {
    width: 100%;
    height: 1px;
    right: 0;
  }
  .menu_toggle .inside .ft_menu .ttl_sub span::after {
    width: 1px;
    height: 100%;
    right: 7px;
  }
  .menu_toggle .inside .ft_menu a {
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    font-size: calc(var(--ttl_size) - 12px);
    display: block;
    text-decoration: none;
  }
}
@media only screen and (min-width: 769px) {
  .menu_toggle .inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu_toggle .inside .ft_menu {
    padding: 0;
  }
  .menu_toggle .inside .ft_menu .menu04 {
    width: calc(21% + 30px);
    margin-right: -30px;
  }
  .menu_toggle .inner {
    width: 100%;
  }
  .hamburger-btn {
    top: 40px;
    right: 35px;
  }
  #nav-icon {
    width: 50px;
  }
  #nav-icon:hover span:nth-of-type(2) {
    width: 80%;
  }
  #nav-icon.open:hover span:nth-of-type(2) {
    width: 100%;
  }
}
@media only screen and (max-height: 900px) and (min-width: 769px) {
  .menu_toggle .inside {
    padding: 40px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (max-width: 1170px) and (min-width: 769px) {
  .menu_toggle .inside .ft_menu .menu03 {
    width: 22%;
  }
  .menu_toggle .inside .ft_menu .menu04 {
    width: 23%;
    margin-right: 0;
  }
  .menu_toggle .inside .ft_menu .ttl_sub:not(:first-child) {
    margin-top: 20px;
  }
  .menu_toggle .inside .ft_menu .ttl {
    margin-bottom: 15px;
  }
  .menu_toggle .inside .ft_menu .menu01 .ttl {
    margin-bottom: 20px;
  }
  .menu_toggle .inside .ft_menu li {
    margin-bottom: 4px;
  }
}
/* END Menu
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
General
********************************/
@media only screen and (max-width: 768px) {
  body {
    font-size: 87.5%;
  }
  figure {
    text-align: center;
  }
  img {
    max-width: 100%;
  }
  .totop {
    bottom: 60px;
    right: 20px;
  }
  .totop .icon {
    width: 14px;
    height: 82px;
  }
  .under .ud_map iframe {
    height: 100%;
  }
  .fblock {
    display: block;
  }
  .fblock.true {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .under .topic_path {
    padding-bottom: 10px;
  }
  .txt_l,
  .txt_r {
    float: none;
    width: auto;
  }
  .image_l,
  .image_r {
    float: none;
    width: auto;
    margin: 0 0 20px;
    text-align: center;
    max-width: none;
  }
  .btn-group {
    font-size: 8.75px;
  }
  .btn-group.mcol-2 .btn, .btn-group.mcol-3 .btn {
    margin-left: auto;
    margin-right: auto;
    border-right: none;
    margin-bottom: 0;
    border-bottom: 0.5px solid;
  }
  .btn-group .btn a::after {
    --mask: url(../images/idx_icon_arrow_en.png);
    width: 21px;
    height: 3px;
  }
  .btn-group .btn:last-child {
    margin-bottom: 0;
    border: none;
  }
  .btn-group .btn.style01, .btn-group .btn.style02 {
    max-width: 310px;
  }
  .btn-group .btn.style01 a::after, .btn-group .btn.style02 a::after {
    right: 0;
  }
  .btn-group .btn.style01 a {
    min-height: auto;
    padding: 10px 10px;
    font-size: calc(var(--ttl_size) - 8px);
  }
  .btn-group .btn.style01.md a {
    min-height: auto;
    padding: 14px 10px;
    font-size: calc(var(--ttl_size) - 8px);
  }
  .btn-group .btn.style02 a {
    padding: 0 35px 0 0;
    font-size: calc(var(--ttl_size) - 6px);
  }
  p {
    margin-bottom: 13px;
    line-height: 1.875;
    letter-spacing: 0.02em;
    font-size: 16px;
  }
  a .tel_click:hover {
    opacity: 1;
    color: inherit;
  }
  .slick-prev {
    left: 0px;
  }
  .slick-next {
    right: 0px;
  }
  .slick-arrow {
    z-index: 1;
    top: 15vw;
  }
}
@media only screen and (max-width: 768px) {
  .idx_gallery ul li .img {
    width: 225px;
    height: 175px;
    background-size: 100% auto;
  }
  .idx_map iframe {
    height: 299px;
  }
}
/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }
  header.active,
  .ovh header {
    background-color: #465F80;
  }
  header.active .header_top,
  .ovh header .header_top {
    padding: 8px 0 0 15px;
  }
  header.active .logo,
  .ovh header .logo {
    max-width: 108px;
  }
  .header_top {
    width: 100%;
    height: 70px;
    padding: 15px 0 0 45px;
  }
  .header_top .logo {
    width: calc(100% - 80px);
    max-width: 167px;
  }
  footer .ft_main {
    padding: 40px 0 90px 35px;
    margin-top: 50px;
  }
  footer .ft_main::before {
    background-position: left 43% center;
  }
  footer .ft_main .inner {
    padding: 0 30px;
  }
  footer .ft_logo {
    max-width: 250px;
    margin: 0 auto;
  }
  footer .ft_head {
    max-width: 450px;
    margin: 0 auto;
  }
  footer .ft_head .col_r {
    margin-top: 30px;
  }
  footer .ft_head dl {
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .ft_head dl:not(:last-child) {
    margin-bottom: 0;
  }
  footer .ft_head dl .br_480 {
    display: none !important;
  }
  footer .ft_head dt, footer .ft_head dd {
    font-size: 16px;
  }
  .fixed_banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    top: auto !important;
    width: 100%;
    height: 50px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .fixed_banner.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .fixed_banner p::before {
    margin-bottom: 3px;
  }
  .fixed_banner > div {
    width: 100%;
  }
  .fixed_banner .web p {
    font-size: 14px;
    padding-left: 30px;
    position: relative;
        margin-top: 1px;
  }
  .fixed_banner .web p::before {
    background-position: left center;
    display: inherit;
    width: 23px;
    height: 21px;
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .fixed_icon_contact {
    position: fixed;
    top: 17px;
    right: 75px;
    z-index: 999;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .fixed_icon_contact.active {
    opacity: 1;
  }
  .fixed_icon_contact > div:not(:first-child) {
    margin-left: 5px;
  }
  .fixed_icon_contact .ins img {
    max-width: 24px;
  }
  .fixed_icon_contact .clinic img {
    max-width: 25px;
  }
  .fixed_icon_contact .fee img {
    max-width: 26px;
  }
}
@media only screen and (max-width: 580px) {
  footer .ft_head dl .br_480 {
    display: block !important;
  }
}
@media only screen and (max-width: 320px) {
  footer .ft_head dt, footer .ft_head dd {
    font-size: 15px;
  }
  footer .ft_head dt {
    width: 106px;
  }
  footer .ft_head dd {
    width: calc(100% - 106px);
  }
}

/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/