@charset "utf-8";
@import url(init.css);

:root {
  --viewport: 750;
  --gold: #baa170;
  --blue: #cee3f8;
}

@media screen and (min-width: 768px) {
  :root {
    --viewport: 1518;
  }
}

@media screen and (max-width:767px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width:768px) {
  .sp {
    display: none;
  }
}

img {
  height: auto;
}

.font-oswald {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
}

.font_gold {
  color: var(--gold);
}

.font_white {
  color: #fff;
}

.fw_medium {
  font-weight: 500;
}

.bg_black {
  background: #000;
}

.bg_gray {
  background: #3c3a39;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.zoomIn.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes flash {
  to {
    opacity: 1;
  }
}

.cta {
  font-weight: bold;
  text-align: center;
  padding: calc(100vw / var(--viewport) * 60) 0 calc(100vw / var(--viewport) * 80);
  position: relative;
}

.cta a {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 28);
  text-align: center;
  background: #152f74;
  width: calc(100vw / var(--viewport) * 602);
  height: calc(100vw / var(--viewport) * 108);
  display: flex;
  justify-content: center;
  align-items: center;
  border: calc(100vw / var(--viewport) * 6) solid #fff;
  border-radius: calc(100vw / var(--viewport) * 14);
  margin: 0 auto;
  box-shadow: calc(100vw / var(--viewport) * 5) calc(100vw / var(--viewport) * 5) 0 #bfbfbf;
  animation: zoom infinite 2.2s;
}

@keyframes zoom {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.1;
  }

  100% {
    scale: 1;
  }
}

@media screen and (min-width: 1518px) {
  .cta {
    padding: 60px 0 80px;
  }

  .cta a {
    font-size: 28px;
    width: 602px;
    height: 108px;
    border: 6px solid #fff;
    border-radius: 14px;
    box-shadow: 5px 5px 0 #bfbfbf;
  }
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Sans",
    "Segoe UI", "Meiryo", sans-serif;
  font-weight: 400;
}

#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

#header .logo {
  width: calc(100vw / var(--viewport) * 74);
  margin-right: calc(100vw / var(--viewport) * 27);
}

#header .name {
  width: calc(100vw / var(--viewport) * 448);
}

@media screen and (max-width: 767px) {
  #header {
    background: #000;
  }

  #header .flex {
    justify-content: flex-start;
    align-items: center;
  }

  #header .logo {
    margin-top: calc(100vw / var(--viewport) * 14);
    margin-left: calc(100vw / var(--viewport) * 13);
  }
}

@media screen and (min-width: 768px) {
  #header .flex {
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 38px;
    left: 3.5%;
  }

  #header .logo {
    width: 41px;
    margin-right: 23px;
  }

  #header .name {
    width: 27.5vw;
    min-width: 270px;
    max-width: 401px;
  }
}

@media screen and (max-width: 767px) {
  .pcMenu {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .pcMenu {
    position: fixed;
    top: 70px;
    left: 4%;
  }

  .pcMenu p {
    color: #fff;
    font-size: 34px;
    font-weight: 500;
  }

  .pcMenu li {
    margin-top: 7px;
  }

  .pcMenu a {
    color: #fff;
    display: flex;
    align-items: stretch;
  }

  .pcMenu a span.number {
    color: #000;
    font-size: calc(100vw / var(--viewport) * 26);
    font-weight: 500;
    width: calc(100vw / var(--viewport) * 35);
    height: calc(100vw / var(--viewport) * 35);
    background: var(--gold);
    border: 1px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pcMenu a span.text {
    font-size: calc(100vw / var(--viewport) * 18);
    border: 1px solid #fff;
    border-left: none;
    width: 100%;
    padding: 0 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}

@media screen and (min-width: 1518px) {
  .pcMenu {
    top: 90px;
  }

  .pcMenu li {
    margin-top: 9px;
  }

  .pcMenu a span.number {
    font-size: 26px;
    width: 38px;
    height: 38px;
  }

  .pcMenu a span.text {
    font-size: 19px;
  }
}

#wrapper {
  background: #fff;
  width: 100%;
  margin: 0 auto;
}

#wrapper:before,
#wrapper:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 3;
}

#wrapper:before {
  border-left: calc(100vw / var(--viewport) * 6) solid var(--gold);
  left: 0;
}

#wrapper:after {
  border-right: calc(100vw / var(--viewport) * 6) solid var(--gold);
  right: 0;
}

@media screen and (min-width: 768px) {
  #wrapper {
    width: 50%;
    max-width: 750px;
    position: absolute;
    top: 0;
    left: 50%;
  }

  #wrapper:before,
  #wrapper:after {
    position: absolute;
  }

  #wrapper:before {
    border-left-width: 6px;
  }

  #wrapper:after {
    border-right-width: 6px;
  }
}

#wrapper.no-events {
  pointer-events: none;
}

.topBanner video {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.topBanner video.sp {
  display: none;
}

#mv #counter {
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100vw / var(--viewport) * 20);
  margin: 0 auto;
}

#mv #counter .midashi {
  font-size: calc(100vw / var(--viewport) * 30);
  margin-bottom: 0.2em;
}

#mv #counter .counter {
  font-size: calc(100vw / var(--viewport) * 43);
  font-weight: 500;
}

#mv #counter .counter img {
  height: calc(100vw / var(--viewport) * 65);
}

#mv #counter .odometer.odometer-auto-theme {
  color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 70);
  font-weight: bold;
  background: none;
  padding: 0;
}

#mv #counter .odometer.odometer-auto-theme .odometer-inside {
  line-height: 1;
}

#mv #counter .odometer.odometer-auto-theme .odometer-digit {
  background: none;
  box-shadow: none;
  padding: 0 0.08em;
}

#mv #counter .odometer.odometer-auto-theme .odometer-digit:last-child {
  color: var(--gold);
}

#mv #counter .period {
  font-size: calc(100vw / var(--viewport) * 21);
}

@media screen and (min-width:768px) {
  .topBanner {
    width: 42.4%;
    max-width: 750px;
    height: 1335px;
    position: absolute;
    top: 127px;
    left: 3.5%;
  }

  .topBanner video {
    width: 100%;
    max-height: calc(100vh - 147px);
    display: block;
  }
}

@media screen and (min-width: 1518px) {
  #mv #counter {
    bottom: 20px;
  }

  #mv #counter .midashi {
    font-size: 30px;
  }

  #mv #counter .counter {
    font-size: 43px;
  }

  #mv #counter .counter img {
    height: 65px;
  }

  #mv #counter .odometer.odometer-auto-theme {
    font-size: 70px;
  }

  #mv #counter .period {
    font-size: 21px;
  }
}

/* ボディ脱毛セットプラン ------------------------------- */
.priceSection h2 {
  font-size: calc(100vw / var(--viewport) * 64);
  padding-block: calc(100vw / var(--viewport) * 43);
  text-align: center;
}

.priceSection .inner {
  padding-inline: calc(100vw / var(--viewport) * 30);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.priceSection .limited {
  background-color: #C1272D;
  font-size: calc(100vw / var(--viewport) * 40);
  display: inline-block;
  line-height: calc(58/40);
  padding-inline: calc(100vw / var(--viewport) * 32);
  padding-bottom: calc(100vw / var(--viewport) * 7);
  margin-bottom: calc(100vw / var(--viewport) * 4);
}

.priceSection .off {
  font-size: calc(100vw / var(--viewport) * 119);
  color: #C1272D;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: calc(100vw / var(--viewport) * 7);
  margin-bottom: calc(100vw / var(--viewport) * 14);
}

.priceSection .off span {
  font-size: calc(100vw / var(--viewport) * 88);
  font-weight: 300;
}

.priceSection .title {
  font-size: calc(100vw / var(--viewport) * 48);
  margin-bottom: calc(100vw / var(--viewport) * 23);
  text-align: center;
}

.priceSection .hospital_area {
  width: 100%;
  margin-bottom: calc(100vw / var(--viewport) * 42);
}

.priceSection .hospital {
  display: flex;
  flex-direction: column;
}

.priceSection .hospital div {
  display: flex;
  justify-content: space-between;
  column-gap: calc(100vw / var(--viewport) * 13);
}

.priceSection .hospital>:first-child {
  margin-bottom: calc(100vw / var(--viewport) * 24);
}

.priceSection .hospital p {
  background-color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 36);
  flex-grow: 1;
  display: flex;
  justify-content: center;
  padding-top: calc(100vw / var(--viewport) * 5);
  padding-bottom: calc(100vw / var(--viewport) * 7);
}

.priceSection .plan {
  background-color: #C1272D;
  border: 2px solid #fff;
  font-size: calc(100vw / var(--viewport) * 42);
  width: 100%;
  padding-top: calc(100vw / var(--viewport) * 19);
  padding-bottom: calc(100vw / var(--viewport) * 24);
  text-align: center;
  margin-bottom: calc(100vw / var(--viewport) * 81);
}

.priceSection .plan span::before,
.priceSection .plan span::after {
  content: "";
  width: calc(100vw / var(--viewport) * 23);
  height: calc(100vw / var(--viewport) * 21);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.priceSection .plan span::before {
  right: calc(100vw / var(--viewport) * 74);
}

.priceSection .plan span::after {
  right: calc(100vw / var(--viewport) * 41);
}

@media screen and (min-width:1518px) {
  .priceSection h2 {
    font-size: 64px;
    padding-block: 43px;
  }

  .priceSection .inner {
    padding-inline: 30px;
  }

  .priceSection .limited {
    font-size: 40px;
    padding-inline: 32px;
    padding-bottom: 7px;
    margin-bottom: 4px;
  }

  .priceSection .off {
    font-size: 119px;
    gap: 7px;
    margin-bottom: 14px;
  }

  .priceSection .off span {
    font-size: 88px;
  }

  .priceSection .title {
    font-size: 48px;
    margin-bottom: 23px;
  }

  .priceSection .hospital_area {
    margin-bottom: 42px;
  }

  .priceSection .hospital div {
    column-gap: 13px;
  }

  .priceSection .hospital>:first-child {
    margin-bottom: 24px;
  }

  .priceSection .hospital p {
    font-size: 36px;
    padding-top: 5px;
    padding-bottom: 7px;
  }

  .priceSection .plan {
    font-size: 42px;
    padding-top: 19px;
    padding-bottom: 24px;
    margin-bottom: 81px;
  }

  .priceSection .plan span::before,
  .priceSection .plan span::after {
    width: 23px;
    height: 21px;
  }

  .priceSection .plan span::before {
    right: 74px;
  }

  .priceSection .plan span::after {
    right: 41px;
  }
}

.captionSection {
  padding: calc(100vw / var(--viewport) * 30);
}

.captionSection p {
  font-size: calc(100vw / var(--viewport) * 22);
}

@media screen and (min-width:768px) {
  .captionSection {
    padding: 30px;
  }

  .captionSection p {
    font-size: 22px;
  }
}

.bannerArea {
  background: #646464;
}

.bannerArea .button {
  background: #000;
  padding: calc(100vw / var(--viewport) * 38) 0 calc(100vw / var(--viewport) * 44);
}

.bannerArea .button a {
  color: #000;
  font-size: calc(100vw / var(--viewport) * 28);
  background: #bba171;
  width: calc(100vw / var(--viewport) * 421);
  height: calc(100vw / var(--viewport) * 77);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.bannerArea .videoBox {
  background: #000;
}

.bannerArea .videoBox video {
  width: 100%;
}

@media screen and (min-width: 1518px) {
  .bannerArea .button {
    padding: 38px 0 44px;
  }

  .bannerArea .button a {
    font-size: 28px;
    width: 421px;
    height: 77px;
  }
}

section .inner,
.campaign.inner {
  padding-left: calc(100vw / var(--viewport) * 30);
  padding-right: calc(100vw / var(--viewport) * 30);
}

@media screen and (min-width: 1518px) {

  section .inner,
  .campaign.inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.midashiBox {
  width: 100%;
  height: calc(100vw / var(--viewport) * 106);
  background: #000;
  display: flex;
  justify-content: flex-start;
}

.midashiBox .number {
  font-size: calc(100vw / var(--viewport) * 64);
  font-weight: 500;
  background: var(--gold);
  width: calc(100vw / var(--viewport) * 106);
  display: flex;
  justify-content: center;
  align-items: center;
}

.midashiBox h2 {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 31);
  font-weight: bold;
  width: calc(100% - calc(100vw / var(--viewport) * 64));
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: calc(100vw / var(--viewport) * 41);
}

@media screen and (min-width: 1518px) {
  .midashiBox {
    height: 106px;
  }

  .midashiBox .number {
    font-size: 64px;
    width: 106px;
  }

  .midashiBox h2 {
    font-size: 31px;
    width: calc(100% - 64px);
    padding-left: 41px;
  }
}

.lead {
  color: #fff;
  text-align: center;
  padding: calc(100vw / var(--viewport) * 35) calc(100vw / var(--viewport) * 22) calc(100vw / var(--viewport) * 53);
  position: relative;
}

.lead h3 {
  line-height: 1.5;
  margin-bottom: calc(100vw / var(--viewport) * 30);
}

.lead h3 .sub {
  font-size: calc(100vw / var(--viewport) * 32);
}

.lead h3 .h3 {
  font-size: calc(100vw / var(--viewport) * 44);
}

.lead .text {
  font-size: calc(100vw / var(--viewport) * 26);
}

.lead .after {
  font-size: calc(100vw / var(--viewport) * 41);
  font-weight: bold;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100vw / var(--viewport) * -58);
  z-index: 1;
}

.lead .after:after {
  content: "";
  position: absolute;
  top: calc(100vw / var(--viewport) * 7);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100vw / var(--viewport) * 255);
  height: calc(100vw / var(--viewport) * 100);
  background: #3c3a39;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  z-index: -1;
}

@media screen and (min-width: 1518px) {
  .lead {
    padding: 35px 22px 53px;
  }

  .lead h3 {
    margin-bottom: 30px;
  }

  .lead h3 .sub {
    font-size: 32px;
  }

  .lead h3 .h3 {
    font-size: 44px;
  }

  .lead .text {
    font-size: 26px;
  }

  .lead .after {
    font-size: 41px;
    bottom: -58px;
  }

  .lead .after:after {
    top: 7px;
    width: 255px;
    height: 100px;
  }
}

/* #sec01 ------------------------------- */
#sec01 {
  padding: 0 0 calc(100vw / var(--viewport) * 70);
  margin: calc(100vw / var(--viewport) * 80) 0 0;
  overflow: hidden;
}

#sec01 .lead {
  padding: calc(100vw / var(--viewport) * 41) calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 14);
}

#sec01 .lead .icon_case {
  color: #000;
  font-size: calc(100vw / var(--viewport) * 48);
  font-weight: bold;
  text-align: center;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gold);
  border-radius: calc(100vw / var(--viewport) * 8);
  padding: 0 0.2em 0.2em;
  margin: 0 auto calc(100vw / var(--viewport) * 9);
}

#sec01 .lead h3 {
  line-height: 1.5;
  padding-bottom: 0.2em;
}

#sec01 .lead h3 .h3 {
  font-size: calc(100vw / var(--viewport) * 50);
}

#sec01 .lead .text {
  font-size: calc(100vw / var(--viewport) * 30);
}

#sec01 .nayami {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 40);
  font-weight: bold;
  text-align: center;
  margin-top: calc(100vw / var(--viewport) * 32);
  margin-bottom: calc(100vw / var(--viewport) * 22);
}

#sec01 .nayami:after {
  content: "";
  display: block;
  background: url(../img/sec01/arrow.webp) center center no-repeat;
  background-size: 100% auto;
  width: calc(100vw / var(--viewport) * 174);
  height: calc(100vw / var(--viewport) * 40);
  margin: calc(100vw / var(--viewport) * 20) auto 0;
  animation: blink 0.5s ease-in-out infinite alternate;
}

#sec01 .imgBox {
  position: relative;
}

#sec01 .imgBox img {
  width: calc(100vw / var(--viewport) * 544);
  display: block;
  margin: calc(100vw / var(--viewport) * 54) auto 0;
}

@media screen and (min-width: 1518px) {
  #sec01 {
    padding: 0 0 70px;
    margin: 80px 0 0;
  }

  #sec01 .lead {
    padding: 41px 30px 14px;
  }

  #sec01 .lead .icon_case {
    font-size: 48px;
    border-radius: 8px;
    margin: 0 auto 9px;
  }

  #sec01 .lead h3 .h3 {
    font-size: 50px;
  }

  #sec01 .lead .text {
    font-size: 30px;
  }

  #sec01 .nayami {
    font-size: 40px;
    margin-top: 32px;
    margin-bottom: 22px;
  }

  #sec01 .nayami:after {
    width: 174px;
    height: 40px;
    margin: 20px auto 0;
  }

  #sec01 .imgBox img {
    width: 544px;
    margin: 54px auto 0;
  }
}

/* 症例写真 ------------------------------- */
.shorei_body {
  padding: calc(100vw / var(--viewport) * 40) 0 0;
  margin-top: calc(100vw / var(--viewport) * 80);
}

.shorei_body h3 {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 50);
  font-weight: bold;
  text-align: center;
  margin: 0 auto calc(100vw / var(--viewport) * 40);
}

.shorei_body .box {
  color: #fff;
  background: #000;
  padding: calc(100vw / var(--viewport) * 32) calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 76);
}

.shorei_body .box .flex:nth-child(2) {
  margin-top: calc(100vw / var(--viewport) * 38);
}

.shorei_body .box .flex figure {
  width: 50%;
}

.shorei_body .box .flex figcaption {
  color: #222;
  font-size: calc(100vw / var(--viewport) * 28);
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: calc(100vw / var(--viewport) * 56);
  display: flex;
  justify-content: center;
  align-items: center;
}

.shorei_body .box .flex figure:nth-child(1) figcaption {
  background: #9f9592;
}

.shorei_body .box .flex figure:nth-child(2) figcaption {
  background: #baa171;
}

.shorei_body .box .text {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 22);
  margin-top: calc(100vw / var(--viewport) * 42);
}

@media screen and (min-width:1518px) {
  .shorei_body {
    padding: 40px 0 0;
    margin-top: 80px;
  }

  .shorei_body h3 {
    font-size: 50px;
    margin: 0 auto 40px;
  }

  .shorei_body .box {
    padding: 32px 30px 76px;
  }

  .shorei_body .box .flex:nth-child(2) {
    margin-top: 38px;
  }

  .shorei_body .box .flex figcaption {
    font-size: 28px;
    height: 56px;
  }

  .shorei_body .box .text {
    font-size: 22px;
    margin-top: 42px;
  }
}

/* #sec03 ------------------------------- */
#sec03 {
  padding: calc(100vw / var(--viewport) * 80) 0 0;
}

#sec03 .inner {
  padding-top: calc(100vw / var(--viewport) * 46);
  padding-bottom: calc(100vw / var(--viewport) * 80);
}

#sec03 .videoBox {
  background: #000;
  margin-top: calc(100vw / var(--viewport) * 80);
}

#sec03 video {
  width: 100%;
}

@media screen and (min-width: 1518px) {
  #sec03 {
    padding: 80px 0 0;
  }

  #sec03 .inner {
    padding-top: 46px;
    padding-bottom: 80px;
  }

  #sec03 .videoBox {
    margin-top: 80px;
  }
}

.campaign {
  padding-block: calc(100vw / var(--viewport) * 80);
}

@media screen and (min-width: 1518px) {
  .campaign {
    padding-block: 80px;
  }
}

#banner {
  margin-bottom: calc(100vw / var(--viewport) * 80);
}

@media screen and (min-width:1518px) {
  #banner {
    margin-bottom: 80px;
  }
}

/* #sec07 ------------------------------- */
#sec07 {
  overflow: hidden;
}

#sec07 .inner .text {
  font-size: calc(100vw / var(--viewport) * 24);
  font-weight: 500;
  text-align: center;
  margin-top: calc(100vw / var(--viewport) * 46);
}

#sec07 .relative {
  padding-top: 1px;
  margin-top: calc(100vw / var(--viewport) * 45);
}

#sec07 .relative:before {
  content: "\025c0 \025c0 \025c0";
  position: absolute;
  top: -1em;
  right: calc(100vw / var(--viewport) * 22);
}

#sec07 .tableArea {
  margin-top: calc(100vw / var(--viewport) * 70);
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}

#sec07 .slider2 {
  margin: calc(100vw / var(--viewport) * 20) 0 0;
  overflow: visible;
}

#sec07 .inner li {
  background: none;
}

#sec07 .inner li .box {
  margin-bottom: calc(100vw / var(--viewport) * 28);
}

#sec07 .inner .midashi {
  color: #fff;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#sec07 .inner .midashi div {
  color: #bba171;
  font-size: calc(100vw / var(--viewport) * 32);
  font-weight: bold;
  background: #000;
  width: calc(100% - calc(100vw / var(--viewport) * 82));
  height: calc(100vw / var(--viewport) * 76);
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec07 .inner .midashi .number {
  color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 40);
  font-weight: 900;
  width: calc(100vw / var(--viewport) * 82);
  margin-right: calc(100vw / var(--viewport) * 10);
}

#sec07 .inner .con {
  flex-wrap: nowrap;
  justify-content: space-between;
}

#sec07 .inner .con div {
  width: 50%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

#sec07 .inner .con div.left {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 22);
  text-align: left;
  line-height: 1.6;
  background: #000;
  padding: 0 calc(100vw / var(--viewport) * 20);
  margin-top: calc(100vw / var(--viewport) * 9);
}

#sec07 .inner .box01 .con div.left {
  line-height: 1.4;
}

#sec07 .inner .box01 .con div.left p:nth-child(1) {
  font-size: calc(100vw / var(--viewport) * 18);
}

#sec07 .inner .box01 .con div.left p:nth-child(2) {
  font-size: calc(100vw / var(--viewport) * 22);
}

#sec07 .inner .box01 .con div.left p:nth-child(3) {
  font-size: calc(100vw / var(--viewport) * 25);
}

#sec07 .inner .box01 .con div.left .title {
  text-align: center;
  width: 100%;
  background: #bba170;
  margin-top: 2px;
}

#sec07 .inner .box01 .con div.left .title a {
  color: #000;
  padding: 3px 0;
  display: block;
}

#sec07 .inner .con div.right {
  margin-left: calc(100vw / var(--viewport) * 9);
}

#sec07 .inner .con div a {
  text-decoration: none;
}

@media screen and (min-width: 1518px) {
  #sec07 .inner .text {
    font-size: 24px;
    margin-top: 46px;
  }

  #sec07 .relative {
    margin-top: 45px;
  }

  #sec07 .relative:before {
    right: 22px;
  }

  #sec07 .tableArea {
    margin-top: 70px;
  }

  #sec07 .slider2 {
    margin: 20px 0 0;
  }

  #sec07 .inner li .box {
    margin-bottom: 28px;
  }

  #sec07 .inner .midashi div {
    font-size: 32px;
    width: calc(100% - 82px);
    height: 76px;
  }

  #sec07 .inner .midashi .number {
    font-size: 40px;
    width: 82px;
    margin-right: 10px;
  }

  #sec07 .inner .con div.left {
    font-size: 22px;
    padding: 0 20px;
    margin-top: 9px;
  }

  #sec07 .inner .box01 .con div.left p:nth-child(1) {
    font-size: 18px;
  }

  #sec07 .inner .box01 .con div.left p:nth-child(2) {
    font-size: 22px;
  }

  #sec07 .inner .box01 .con div.left p:nth-child(3) {
    font-size: 25px;
  }

  #sec07 .inner .con div.right {
    margin-left: 9px;
  }
}

/* #faq ------------------------------- */
#faq {
  padding: calc(100vw / var(--viewport) * 42) 0 0;
  overflow: hidden;
}

#faq h2 img {
  width: calc(100vw / var(--viewport) * 300);
}

#faq .tabs {
  padding: calc(100vw / var(--viewport) * 42) calc(100vw / var(--viewport) * 50) 0;
}

#faq .tabs li {
  margin-bottom: calc(100vw / var(--viewport) * 30);
  cursor: pointer;
}

#faq .box02,
#faq .box03 {
  display: none;
}

#faq .box {
  padding-bottom: calc(100vw / var(--viewport) * 36);
}

#faq .box .ttl_aco {
  margin-top: calc(100vw / var(--viewport) * 50);
  position: relative;
}

#faq .box .ttl_aco:nth-child(1) {
  margin-top: 0;
}

#faq .box .ttl_aco:before {
  content: "";
  width: calc(100vw / var(--viewport) * 36);
  height: calc(100vw / var(--viewport) * 6);
  background: #000;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

#faq .box .ttl_aco:after {
  content: "";
  width: calc(100vw / var(--viewport) * 6);
  height: calc(100vw / var(--viewport) * 36);
  background: #000;
  position: absolute;
  top: 50%;
  right: calc(100vw / var(--viewport) * 15);
  transform: translateY(-50%);
}

#faq .box .ttl_aco.active:after {
  display: none;
}

#faq .box .qBox {
  font-size: calc(100vw / var(--viewport) * 26);
  font-weight: 600;
  white-space: nowrap;
  width: calc(100vw / var(--viewport) * 582);
  display: flex;
  align-items: center;
  padding-bottom: calc(100vw / var(--viewport) * 15);
  border-bottom: calc(100vw / var(--viewport) * 2) solid #000;
}

#faq .box .qBox img {
  width: calc(100vw / var(--viewport) * 44);
  max-width: 44px;
  margin-right: calc(100vw / var(--viewport) * 20);
}

#faq .box .aBox {
  color: #f29625;
  font-size: calc(100vw / var(--viewport) * 26);
  font-weight: 600;
  width: calc(100vw / var(--viewport) * 482);
  display: flex;
  align-items: center;
  padding-top: calc(100vw / var(--viewport) * 15);
  margin-left: calc(100vw / var(--viewport) * 100);
}

#faq .box .aBox img {
  width: calc(100vw / var(--viewport) * 48);
  max-width: 48px;
  margin-right: calc(100vw / var(--viewport) * 20);
}

#faq .box .aBox p {
  white-space: nowrap;
}

#faq .box .body_aco {
  line-height: 1.75;
  margin-top: calc(100vw / var(--viewport) * 36);
  margin-left: calc(100vw / var(--viewport) * 100);
  display: none;
}

#faq .box .body_aco p {
  font-size: calc(100vw / var(--viewport) * 24);
}

@media screen and (min-width:1518px) {
  #faq {
    padding: 42px 0 0;
  }

  #faq h2 img {
    width: 300px;
  }

  #faq .tabs {
    padding: 42px 50px 0;
  }

  #faq .tabs li {
    margin-bottom: 30px;
  }

  #faq .box {
    padding-bottom: 36px;
  }

  #faq .box .ttl_aco {
    margin-top: 50px;
  }

  #faq .box .ttl_aco:before {
    width: 36px;
    height: 6px;
  }

  #faq .box .ttl_aco:after {
    width: 6px;
    height: 36px;
    right: 15px;
  }

  #faq .box .qBox {
    font-size: 26px;
    width: 582px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000;
  }

  #faq .box .qBox img {
    width: 44px;
    margin-right: 20px;
  }

  #faq .box .aBox {
    font-size: 26px;
    width: 482px;
    padding-top: 15px;
    margin-left: 100px;
  }

  #faq .box .aBox img {
    width: 48px;
    margin-right: 20px;
  }

  #faq .box .body_aco {
    margin-top: 36px;
    margin-left: 100px;
  }

  #faq .box .body_aco p {
    font-size: 24px;
  }
}

.doctorBox .imgBox {
  position: relative;
}

.doctorBox .imgBox .textBox {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 21);
  line-height: 1.63;
  position: absolute;
  top: calc(100vw / var(--viewport) * 20);
  left: calc(100vw / var(--viewport) * 278);
}

.doctorBox .imgBox .textBox .flex {
  justify-content: flex-start;
  align-items: center;
}

.doctorBox .imgBox .textBox .flex .detail {
  font-size: calc(100vw / var(--viewport) * 19);
}

.doctorBox .imgBox .textBox .flex .name {
  font-size: calc(100vw / var(--viewport) * 37);
  font-weight: 500;
  margin-left: calc(100vw / var(--viewport) * 16);
}

.doctorBox .imgBox .textBox .text span {
  width: calc(100vw / var(--viewport) * 72);
  display: inline-block;
}

.doctorBox .imgBox .textBox .gakkai {
  font-size: calc(100vw / var(--viewport) * 22);
  font-weight: 500;
  margin-top: calc(100vw / var(--viewport) * 8);
}

.doctorBox .under {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 22);
  background: #000;
  padding: calc(100vw / var(--viewport) * 33) calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 50);
}

.doctorBox .under .big {
  font-size: calc(100vw / var(--viewport) * 25);
  font-weight: 500;
}

@media screen and (min-width:1518px) {
  .doctorBox .imgBox .textBox {
    font-size: 21px;
    top: 20px;
    left: 278px;
  }

  .doctorBox .imgBox .textBox .flex .detail {
    font-size: 19px;
  }

  .doctorBox .imgBox .textBox .flex .name {
    font-size: 37px;
    margin-left: 16px;
  }

  .doctorBox .imgBox .textBox .text span {
    width: 72px;
  }

  .doctorBox .imgBox .textBox .gakkai {
    font-size: 22px;
    margin-top: 8px;
  }

  .doctorBox .under {
    font-size: 22px;
    padding: 33px 30px 50px;
  }

  .doctorBox .under .big {
    font-size: 25px;
  }
}

/* #sec09 ------------------------------- */
#sec09 {
  margin-top: calc(100vw / var(--viewport) * 50);
}

#sec09 .inner {
  width: 100%;
  background: #646464;
  padding: calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 60);
  box-sizing: border-box;
}

#sec09 .flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

#sec09 .flex .relative {
  text-align: center;
  width: 48%;
  margin-bottom: calc(100vw / var(--viewport) * 30);
  position: relative;
}

#sec09 .flex li .title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sec09 .flex li .title div {
  line-height: 1.2;
  position: absolute;
}

#sec09 .flex li .title div p:nth-child(1) {
  font-size: calc(100vw / var(--viewport) * 24);
}

#sec09 .flex li .title div p:nth-child(2) {
  font-size: calc(100vw / var(--viewport) * 32);
  font-weight: 500;
}

#sec09 .flex li .title .soon {
  width: 39.4%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100vw / var(--viewport) * 12);
  margin: 0 auto;
}

#sec09 .flex li .btn_more {
  font-size: calc(100vw / var(--viewport) * 22);
  font-weight: bold;
  line-height: calc(100vw / var(--viewport) * 64);
  background: #000;
  border-top: 1px solid #fff;
  cursor: pointer;
}

#sec09 .flex li+.body_more {
  text-align: left;
  width: calc(100vw / var(--viewport) * 690);
  background: rgba(255, 255, 255, 0.93);
  padding-bottom: calc(100vw / var(--viewport) * 42);
  box-sizing: border-box;
  z-index: 1;
  display: none;
}

#sec09 .flex .relative:nth-child(2n) li+.body_more {
  left: initial;
  right: 0;
  margin-left: calc(100vw / var(--viewport) * -358);
}

#sec09 .flex li+.body_more .outer {
  height: 0;
  padding-bottom: 38.11%;
  overflow: hidden;
  position: relative;
}

#sec09 .flex li+.body_more .outer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#sec09 .flex li+.body_more dl {
  font-size: calc(100vw / var(--viewport) * 24);
  line-height: 1.75;
  padding: calc(100vw / var(--viewport) * 30);
  display: flex;
  flex-wrap: wrap;
}

#sec09 .flex li+.body_more dt {
  width: 5em;
}

#sec09 .flex li+.body_more dd {
  width: calc(100% - 5em);
}

#sec09 .caution {
  font-size: calc(100vw / var(--viewport) * 17);
  font-weight: 400;
}

#sec09 .caution span {
  font-weight: 700;
}

@media screen and (min-width: 1518px) {
  #sec09 {
    margin-top: 50px;
  }

  #sec09 .inner {
    padding: 30px 30px 60px;
  }

  #sec09 .flex .relative {
    margin-bottom: 30px;
  }

  #sec09 .flex li .title div p:nth-child(1) {
    font-size: 24px;
  }

  #sec09 .flex li .title div p:nth-child(2) {
    font-size: 32px;
  }

  #sec09 .flex li .title .soon {
    bottom: 12px;
  }

  #sec09 .flex li .btn_more {
    font-size: 22px;
    line-height: 64px;
  }

  #sec09 .flex li+.body_more {
    width: 690px;
    padding-bottom: 42px;
  }

  #sec09 .flex .relative:nth-child(2n) li+.body_more {
    margin-left: -358px;
  }

  #sec09 .flex li+.body_more dl {
    font-size: 24px;
    padding: 30px;
  }
}

/* #footer ------------------------------- */
#footer {
  color: #fff;
  text-align: center;
  background: #000;
  padding: calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 174);
}

#footer .caution {
  font-size: calc(100vw / var(--viewport) * 17);
  text-align: left;
}

#footer .l-footer__logo {
  width: calc(100vw / var(--viewport) * 99);
  max-width: 100px;
  margin: 0 auto;
}

#footer a {
  color: #fff;
}

#footer .footerflex1 {
  display: none;
}

#footer .footerText {
  font-size: calc(100vw / var(--viewport) * 15);
}

@media screen and (max-width: 767px) {
  #footer .copy-right {
    font-size: calc(100vw / var(--viewport) * 18);
    letter-spacing: 0;
    line-height: 0;
  }

  footer .displayFlex {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  #footer {
    padding-bottom: calc(100vw / var(--viewport) * 30);
  }

  .displayFlex {
    display: flex;
    justify-content: center;
    line-height: 1.6;
    color: #fff;
  }

  #footer .copy-right {
    font-size: 16px;
  }

  #footer .footerflex1 {
    display: block;
    margin: calc(100vw / var(--viewport) * 10) 0.6em 0 0;
  }

  #footer .footerflex1 a {
    text-decoration: underline;
  }

  #footer .footerflex2 {
    margin: calc(100vw / var(--viewport) * 10) 0 0 0.6em;
  }
}

@media screen and (min-width: 1518px) {
  #footer {
    padding: 30px;
  }

  #footer .caution {
    font-size: 17px;
  }

  #footer .l-footer__logo {
    width: 99px;
    margin: 0 auto 20px;
  }

  #footer .footerText {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .background {
    display: none;
  }

  .pcBanner {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .background {
    background: #000;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.pcBanner {
  display: none;
}

@media screen and (min-width: 768px) {
  .pcBanner {
    display: block;
    position: fixed;
    width: 39.1%;
    max-width: 884px;
    left: 3.36%;
    bottom: 22%;
  }
}

.cta-bottomFixedArea {
  width: 100%;
  background: #741519;
  position: fixed;
  left: 0;
  bottom: 0;
  justify-content: space-between;
  gap: calc(100vw / var(--viewport) * 8);
  opacity: 0;
}

.cta-bottomFixedArea {
  opacity: 1;
  z-index: 1;
}

.cta-bottomFixedArea a {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 33);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  display: flex;
  align-content: center;
  justify-content: center;
  /*width: 50%;*/
  height: calc(100vw / var(--viewport) * 122);
  border: calc(100vw / var(--viewport) * 6) solid #741519;
  padding-top: calc(100vw / var(--viewport) * 16);
}

.cta-bottomFixedArea a:nth-child(1) {
  /*background: #043650;*/
}

.cta-bottomFixedArea a:nth-child(2) {
  background: #000;
}

.cta-bottomFixedArea a>span {
  padding-right: calc(100vw / var(--viewport) * 37);
}

.cta-arrow::before,
.cta-arrow::after {
  content: "";
  width: calc(100vw / var(--viewport) * 14);
  height: calc(100vw / var(--viewport) * 13);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  top: calc(100vw / var(--viewport) * 38);
}

.cta-arrow::before {
  right: calc(100vw / var(--viewport) * 117);
}

.cta-arrow::after {
  right: calc(100vw / var(--viewport) * 96);
}

@media screen and (min-width: 768px) {
  .cta-bottomFixedArea {
    display: none !important;
  }

  .cta-bottomFixedArea a {
    display: block;
    animation: zoom infinite 2.2s;
  }

  @keyframes zoom {
    0% {
      scale: 1;
    }

    50% {
      scale: 1.1;
    }

    100% {
      scale: 1;
    }
  }
}

[data-animate="fadeInUp"],
[data-animate="zoomIn"],
[data-animate="fadeInLeft"] {
  opacity: 0;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* 251012 CTAボタン変更・症例写真デフォルトタブ変更・比較表画像変更 */
.cta a {
  background: none;
  height: auto;
  border: none;
  box-shadow: none;
}

.bodys .box01 {
  display: none;
}

.bodys .box02 {
  display: none;
}

.bodys .box03 {
  display: block;
}

.newPriceArea .midashi {
  color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 40);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  height: calc(100vw / var(--viewport) * 121);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #053650;
  margin-top: calc(100vw / var(--viewport) * 50);
}

.newPriceArea .midashi.first {
  margin-top: 0;
}

.newPriceArea .midashi .sub {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 28);
  text-align: center;
  display: block;
}

.newPriceArea .imgBox {
  margin-bottom: calc(100vw / var(--viewport) * 19);
}

.newPriceArea .newTabs {
  display: flex;
  justify-content: space-between;
  gap: 1.74%;
}

.newPriceArea .newTabs li,
.newPriceArea .newTabs li.active {
  width: 33.33%;
  cursor: pointer;
}

.newPriceArea .newTabs li {
  font-size: calc(100vw / var(--viewport) * 34);
  height: calc(100vw / var(--viewport) * 67);
  background: #BEBEBE;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(100vw / var(--viewport) * 16) calc(100vw / var(--viewport) * 16) 0 0;
}

.newPriceArea .newTabs li.active {
  color: #fff;
  background: #053650;
}

.newPriceArea .bodys {
  color: #fff;
  background: #053650;
  height: calc(100vw / var(--viewport) * 124);
  display: flex;
  justify-content: center;
  align-items: center;
}

.newPriceArea .bodys .newBox {
  width: 100%;
}

.newPriceArea .bodys .newBox:nth-child(n+2) {
  display: none;
}

.newPriceArea .bodys .newBox .flex {
  justify-content: space-evenly;
  align-items: center;
}

.newPriceArea .bodys .newBox .flex .price img {
  height: calc(100vw / var(--viewport) * 73);
}

.newPriceArea .bodys .newBox .flex .divider {
  width: 2px;
  height: calc(100vw / var(--viewport) * 75);
  background: #fff;
}

.newPriceArea .bodys .newBox .flex .once {
  text-align: center;
  line-height: 1.8;
}

.newPriceArea .bodys .newBox .flex .once img {
  height: calc(100vw / var(--viewport) * 49);
}

.newPriceArea .caution {
  color: #fff;
  font-size: calc(100vw / var(--viewport) * 22);
  line-height: 1.63;
  margin-top: calc(100vw / var(--viewport) * 35);
  padding: calc(100vw / var(--viewport) * 30) 0;
}

@media screen and (min-width:1518px) {
  .newPriceArea .midashi {
    font-size: 40px;
    height: 121px;
    margin-top: 50px;
  }

  .newPriceArea .midashi .sub {
    font-size: 28px;
  }

  .newPriceArea .imgBox {
    margin-bottom: 19px;
  }

  .newPriceArea .newTabs li {
    font-size: 34px;
    height: 67px;
    border-radius: 16px 16px 0 0;
  }

  .newPriceArea .bodys {
    height: 124px;
  }

  .newPriceArea .bodys .newBox .flex .price img {
    height: 73px;
  }

  .newPriceArea .bodys .newBox .flex .divider {
    width: 2px;
    height: 75px;
  }

  .newPriceArea .bodys .newBox .flex .once img {
    height: 49px;
  }

  .newPriceArea .caution {
    font-size: 22px;
    margin-top: 35px;
    padding: 30px 0;
  }
}

#about {
  padding: 0 0 calc(100vw / var(--viewport) * 76);
}

#about img {
  margin: calc(100vw / var(--viewport) * 48) 0 calc(100vw / var(--viewport) * 25);
}

#about li .title {
  color: #808080;
  font-size: calc(100vw / var(--viewport) * 86);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: calc(100vw / var(--viewport) * 33);
}

#about li .midashi {
  color: var(--gold);
  font-size: calc(100vw / var(--viewport) * 25);
  font-weight: bold;
  line-height: calc(100vw / var(--viewport) * 68);
  background: #000;
  text-align: center;
  width: calc(100vw / var(--viewport) * 508);
  display: block;
  margin: 0 auto calc(100vw / var(--viewport) * 20);
}

#about li p.text {
  font-size: calc(100vw / var(--viewport) * 24);
  line-height: 1.67;
}

@media screen and (min-width:1518px) {
  #about {
    padding: 0 0 76px;
  }

  #about img {
    margin: 48px 0 25px;
  }

  #about li .title {
    font-size: 86px;
    margin-bottom: 33px;
  }

  #about li .midashi {
    font-size: 25px;
    line-height: 68px;
    width: 508px;
    margin: 0 auto 20px;
  }

  #about li p.text {
    font-size: 24px;
  }
}