@charset "UTF-8";

:root {
  --viewport: 750;
  --Blue: #16AAFA;
  --Gray: #333;
  --lightGray: #444;
}

body {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 24);
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  background: var(--lightGray);
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.font-overpass {
  font-family: "Overpass", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.font_blue {
  color: var(--Blue);
}

.flex {
  display: flex;
  justify-content: space-between;
}

.h2 {
  margin-bottom: calc(100vw / var(--viewport) * 80);
}
h2 {
  font-weight: bold;
  text-align: center;
}
.h2_sub {
  font-size: calc(100vw / var(--viewport) * 24);
  text-align: center;
}

.text {
  line-height: 1.8;
}

.ttl_aco {
  cursor: pointer;
}
.body_aco {
  display: none;
}

.zoomImage {
  overflow: hidden;
}
.zoomImage img {
  width: 100%;
  -webkit-transition: opacity 0.8s, -webkit-transform 2s cubic-bezier(0.15, 0.7, 0, 1);
  transition: opacity 0.8s, -webkit-transform 2s cubic-bezier(0.15, 0.7, 0, 1);
  transition: opacity 0.8s, transform 2s cubic-bezier(0.15, 0.7, 0, 1);
  transition: opacity 0.8s, transform 2s cubic-bezier(0.15, 0.7, 0, 1), -webkit-transform 2s cubic-bezier(0.15, 0.7, 0, 1);
  -webkit-transform: scale(1.2) rotate(4deg);
          transform: scale(1.2) rotate(4deg);
}
.zoomImage.active img {
  -webkit-transform: scale(1) rotate(0);
          transform: scale(1) rotate(0);
}

.button {
  margin: calc(100vw / var(--viewport) * 40) auto 0;
}
.button a {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 32);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  border-radius: 50vw;
  box-sizing: border-box;
  width: calc(100vw / var(--viewport) * 640);
  height: calc(100vw / var(--viewport) * 136);
  margin: 0 auto;
}
.button.half a {
  width: calc(100vw / var(--viewport) * 300);
}

#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
#header .logo {
  width: calc(100vw / var(--viewport) * 308);
  position: absolute;
  top: calc(100vw / var(--viewport) * 30);
  left: calc(100vw / var(--viewport) * 30);
}
#header .menu {
  width: calc(100vw / var(--viewport) * 64);
  height: calc(100vw / var(--viewport) * 64);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(100vw / var(--viewport) * 50);
  right: calc(100vw / var(--viewport) * 50);
  z-index: 11;
  cursor: pointer;
}
#header .menu .icon span,
#header .menu .icon:before,
#header .menu .icon:after {
  content: "";
  width: calc(100vw / var(--viewport) * 38);
  height: calc(100vw / var(--viewport) * 4);
  display: block;
  background: #fff;
  border-radius: calc(100vw / var(--viewport) * 4);
  transition: all .4s ease-out;
}
#header .menu .icon:before {
  position: absolute;
  top: calc(100vw / var(--viewport) * 13);
}
#header .menu .icon:after {
  position: absolute;
  bottom: calc(100vw / var(--viewport) * 13);
}
#header .menu.active .icon span {
  opacity: 0;
}
#header .menu.active .icon:before {
  transform: rotate(45deg);
  top: calc(100vw / var(--viewport) * 30);
}
#header .menu.active .icon:after {
  transform: rotate(-45deg);
  bottom: calc(100vw / var(--viewport) * 30);
}
#header .subMenu {
  background: var(--lightGray);
  width: 100%;
  height: 100lvh;
  padding: calc(100vw / var(--viewport) * 174) calc(100vw / var(--viewport) * 55) calc(100vw / var(--viewport) * 80);
  position: absolute;
  box-sizing: border-box;
  z-index: 9;
  transition: all 0.5s ease;
  right: -100vw;
  overflow-y: auto;
}
#header .subMenu.active {
  right: 0;
}
#header .subMenu ul {
  margin-bottom: calc(100vw / var(--viewport) * 80);
}
#header .subMenu ul li {
  text-align: center;
  border-top: 2px solid #fff;
}
#header .subMenu ul li:last-child {
  border-bottom: 2px solid #fff;
}
#header .subMenu ul li a,
#header .subMenu ul li .ttl_aco {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 32);
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  display: block;
  padding: calc(100vw / var(--viewport) * 40) calc(100vw / var(--viewport) * 30);
}
#header .subMenu ul li .ttl_aco {
  position: relative;
}
#header .subMenu ul li .ttl_aco:before,
#header .subMenu ul li .ttl_aco:after {
  content: "";
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#header .subMenu ul li .ttl_aco:before {
  width: calc(100vw / var(--viewport) * 20);
  height: 2px;
  right: calc(100vw / var(--viewport) * 30);
}
#header .subMenu ul li .ttl_aco:after {
  width: 2px;
  height: calc(100vw / var(--viewport) * 20);
  right: calc(calc(100vw / var(--viewport) * 40) - 1px);
}
#header .subMenu ul li .ttl_aco.active:after {
  display: none;
}
#header .subMenu ul li .body_aco {
  padding-bottom: calc(100vw / var(--viewport) * 20);
}
#header .subMenu ul li .body_aco a {
  padding: calc(100vw / var(--viewport) * 20) calc(100vw / var(--viewport) * 30);
}
#header .subMenu .flex {
  margin-bottom: calc(100vw / var(--viewport) * 80);
}
#header .subMenu .button {
  margin: 0;
}
#header .subMenu .button--blue {
  margin-bottom: calc(100vw / var(--viewport) * 40);
}
#header .subMenu .sub a {
  color: var(--Blue);
}
#header .subMenu .links {
  font-weight: bold;
  margin-top: calc(100vw / var(--viewport) * 40);
}
#header .subMenu .links .flex {
  justify-content: space-around;
  margin-bottom: 0;
}
#header .subMenu .links .flex p {
  font-size: calc(100vw / var(--viewport) * 30);
  text-align: center;
  width: 50%;
}
#header .subMenu .links .flex p:nth-child(1) {
  border-right: 1px solid #fff;
}
#header .subMenu .links .flex p:nth-child(2) {
  border-left: 1px solid #fff;
}
#header .subMenu .links a {
  color: #fff;
}

#mv.active div.active span span {
  color: var(--Blue);
  transition: all 0.6s ease;
}

.buttons {
  padding: calc(100vw / var(--viewport) * 120) 0;
}
.button.button--blue a {
  background: var(--Blue);
  border: none;
}
.button.button--white a {
  color: #000;
  background: #fff;
  border: none;
}

.float_button {
  position: fixed;
  right: 0;
  bottom: calc(100vw / var(--viewport) * 60);
  z-index: 8;
  transition: all 0.6s ease;
}
.float_button.hide {
  right: calc(100vw / var(--viewport) * -440);
}
.float_button a {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 28);
  font-weight: 600;
  text-decoration: none;
  background: var(--Blue);
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100vw / var(--viewport) * 440);
  height: calc(100vw / var(--viewport) * 100);
  border-radius: 50vw 0 0 50vw;
}

footer {
  background: #fff;
  padding-bottom: calc(100vw / var(--viewport) * 50);
}
footer .clinic-link {
  display: none;
}
footer .copy-right {
  color: #000;
}

.pcOnly {
  display: none !important;
}

@media screen and (max-width:767px) {
  body.non-scroll {
    height: 100%;
    overflow: hidden;
  }

  .inner {
    padding: 0 calc(100vw / var(--viewport) * 55);
  }

  .buttons .button.button--blue {
    margin-top: 0;
  }
  .buttons .button.button--white {
    margin-top: calc(100vw / var(--viewport) * 78);
  }

  #telBox {
    text-align: center;
    width: 96%;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #eef0f5;
    padding: 8vw 0 4vw;
    box-sizing: border-box;
    z-index: 9997;
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: none;
  }
  #telBox .inner {
    width: auto;
    height: 100%;
    padding: 0 4vw;
    margin: 0;
    overflow-y: auto;
  }
  #telBox .inner .title {
    font-size: 3.7333vw;
    display: flex;
    align-items: center;
    margin: 6vw 0 6vw;
  }
  #telBox .inner .title span {
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 8.2666vw;
    width: 53.3333vw;
    background: #000;
    border-radius: 4.2vw;
  }
  #telBox .inner .title .small {
    font-size: 3vw;
  }
  #telBox .inner .title:before,
  #telBox .inner .title:after {
    content: "";
    height: 4px;
    flex-grow: 1;
    background-color: #000;
  }
  #telBox .inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #telBox .inner ul li {
    font-weight: bold;
    width: 48.5%;
    margin-bottom: 3%;
    position: relative;
  }
  #telBox .inner ul li a {
    color: #000;
    font-size: 3.7333vw;
    text-align: center;
    background: #00aafa;
    padding: 4vw 0;
    display: block;
    border-radius: 3px;
  }
  #telBox .inner ul li:after {
    content: "";
    border-right: 3px solid #000;
    border-top: 3px solid #000;
    border-radius: 3px;
    width: 2vw;
    height: 2vw;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 4vw;
    pointer-events: none;
  }
  #telBox .telBox_close {
    position: absolute;
    top: 2vw;
    right: 2vw;
    transform: translateY(-50%);
    background: #00aafa;
    display: block;
    width: 6.4vw;
    height: 6.4vw;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 50%;
    transform: rotate(45deg);
    cursor: pointer;
  }
  #telBox .telBox_close:before,
  #telBox .telBox_close:after {
    display: block;
    content: '';
    background: #fff;
    position: absolute;
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
    #telBox .telBox_close:before {
    width: 2px;
    height: 10px;
  }
}

@media screen and (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  body {
    font-size: 16px;
    line-height: 1.5;
    min-width: 1280px;
  }

  #header .header_inner {
    width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .pc_flex {
    display: flex;
    justify-content: space-between;
  }
  .h2 {
    margin-bottom: 80px;
  }
  .h2_sub {
    font-size: 24px;
    margin-top: 30px;
  }

  .button {
    margin: 40px auto 0;
  }
  .button a {
    font-size: 20px;
    width: 480px;
    height: 80px;
  }

  #header .logo {
    width: 250px;
    top: 40px;
    left: 0;
  }
  #header .menu {
    width: 40px;
    height: 40px;
    top: 40px;
    right: 40px;
  }
  #header .menu .icon span,
  #header .menu .icon:before,
  #header .menu .icon:after {
    width: 23px;
    height: 4px;
    border-radius: 4px;
  }
  #header .menu .icon:before {
    top: 8px;
  }
  #header .menu .icon:after {
    bottom: 8px;
  }
  #header .menu.active .icon:before {
    top: 18px;
    width: 33px;
  }
  #header .menu.active .icon:after {
    bottom: 18px;
    width: 33px;
  }
  #header .subMenu {
    width: 380px;
    height: 100vh;
    padding: 120px 40px 40px;
  }
  #header .subMenu ul {
    margin: 0 0 40px;
  }
  #header .subMenu ul li {
    margin-top: 0;
    margin-right: 0;
  }
  #header .subMenu ul li a,
  #header .subMenu ul li .ttl_aco {
    font-size: 16px;
    width: auto;
    background: none;
    padding: 20px 0;
  }
  #header .subMenu ul li .ttl_aco:before {
    width: 10px;
    height: 1px;
    right: 15px;
  }
  #header .subMenu ul li .ttl_aco:after {
    width: 1px;
    height: 10px;
    right: calc(20px - 1px);
  }
  #header .subMenu .flex {
    margin-bottom: 40px;
  }
  #header .subMenu ul li .body_aco {
    padding-bottom: 20px;
  }
  #header .subMenu ul li .body_aco a {
    padding: 10px 0;
  }
  #header .subMenu .flex {
    margin-bottom: 20px;
  }
  #header .subMenu .button a {
    width: 100%;
  }
  #header .subMenu .button--blue {
    margin-bottom: 20px;
  }
  #header .subMenu .button a {
    font-size: 16px;
    height: 64px;
  }
  #header .subMenu .button.half,
  #header .subMenu .button.half a {
    width: 100%;
  }
  #header .subMenu .links {
    margin-top: 20px;
  }
  #header .subMenu .links .flex p {
    font-size: 15px;
  }

  .buttons {
    width: 1000px;
    padding: 120px 0 192px;
    margin: 0 auto;
  }
  .buttons .button {
    margin-top: 0;
  }

  .float_button {
    bottom: 40px;
  }
  .float_button a {
    font-size: 24px;
    width: 360px;
    height: 80px;
  }

  footer {
    padding-bottom: 90px;
  }

  #telBox {
    display: none;
  }

  .spOnly {
    display: none !important;
  }
  .pcOnly {
    display: block !important;
  }

  @media screen and (max-width:1296px) {
    #header .logo {
      padding-left: 40px;
    }
  }
}

.modSection__inner {
  color: #000;
  font-weight: 400;
  text-align: center;
  width: calc(100vw / var(--viewport) * 650);
  background: #fff;
  border-radius: calc(100vw / var(--viewport) * 16);
  padding: 6.25vw;
  box-sizing: border-box;
  margin: calc(100vw / var(--viewport) * 80) auto 0;
}
.modSection__inner .pc_flex img {
  width: 31.25vw;
}
.modSection__inner .pc_flex .detailDoctor .name {
  color: var(--Blue);
  font-size: 3.4375vw;
  font-weight: 700;
}
.modSection__inner .pc_flex .detailDoctor .position {
  color: var(--Blue);
  font-size: 3.4375vw;
  font-weight: 700;
}
.modSection__inner .pc_flex .detailDoctor .text {
  text-align: left;
  padding: 0;
  margin-top: 3.4375vw;
}

body.skin_top .modSection__inner,
body.titaniumlift .modSection__inner {
  margin: 0 auto calc(100vw / var(--viewport) * 80);
}

@media screen and (max-width:767px) {
  .modSection__inner .pc_flex img {
    margin-bottom: 4.6875vw;
  }
}

@media screen and (min-width:768px) {
  .modSection__inner {
    width: 800px;
    padding: 45px;
    border-radius: 12px;
    margin: 80px auto 0;
  }
  .modSection__inner .pc_flex {
    align-items: center;
  }
  .modSection__inner .pc_flex img {
    width: 200px;
    margin-right: 40px;
  }
  .modSection__inner .pc_flex .detailDoctor {
    text-align: left;
  }
  .modSection__inner .pc_flex .detailDoctor .name {
    font-size: 22px;
  }
  .modSection__inner .pc_flex .detailDoctor .name .big {
    font-size: 28px;
  }
  .modSection__inner .pc_flex .detailDoctor .position {
    font-size: 22px;
  }
  .modSection__inner .pc_flex .detailDoctor .text {
    margin-top: 22px;
  }

  body.skin_top .modSection__inner,
  body.titaniumlift .modSection__inner {
    margin: 0 auto 80px;
  }
  #float_newYear{
    bottom: 147px !important;
  }
}
