@charset "UTF-8";
@font-face {
  font-family: "FriendlyExpart";
  src: url(../../font/FriendlyExpart.woff) format("woff");
}
:root {
  --primary: #fadbaa;
  --white: #fff;
  --lightGoldGray: #fdfaf2;
  --midGoldGray: #fbf8f0;
  --goldGray: #f8f3e7;
  --lightRizeGold: #c6b183;
  --rizeGold: #b59751;
  --green: #65d171;
  --orange: #e56294;
  --lightGray: #b2ada9;
  --gray: #3c3939;
  --darkGray: #6d6764;
  --subGray01: #a7a7a7;
  --subGray02: #bfbfbf;
  --navy: #7f8be3;
  --lightBlue: #23b8ba;
  --grad-start-color01: #f7b837;
  --grad-end-color01: #b59751;
  --bg-gradient01: linear-gradient(var(--grad-start-color01), var(--grad-end-color01));
  --grad-start-color02: #baa063;
  --grad-end-color02: #a88534;
  --bg-gradient02: linear-gradient(var(--grad-start-color02), var(--grad-end-color02));
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, Arial, Helvetica, Verdana, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
  font-weight: bold;
  line-height: 1.6;
  color: var(--gray);
  background: var(--goldGray);
  font-size: 16px;
}
@media screen and (max-width: 657px) {
  body {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  body {
    min-width: 1280px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 658px) {
  a {
    -wewbkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  a:hover {
    opacity: 0.7;
  }
}

img {
  width: 100%;
  height: auto;
}

main {
  position: relative;
  overflow: hidden;
}

h2 {
  padding: 4.0625vw 0;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.2em;
  background: linear-gradient(to right, #fc81b0, #c0c0c1);
  font-size: 34px;
}
@media screen and (max-width: 657px) {
  h2 {
    font-size: 5.3125vw;
  }
}
@media screen and (min-width: 658px) {
  h2 {
    padding: 26px 0;
  }
}

.headline__ballon {
  width: 100%;
  height: 24.6875vw;
  padding-top: 3.4375vw;
  color: var(--lightBlue);
  text-align: center;
  background: url(../../img/bg_h3.png) top center no-repeat;
  background-size: 100% auto;
  font-size: 40px;
}
@media screen and (max-width: 657px) {
  .headline__ballon {
    font-size: 6.25vw;
  }
}
@media screen and (min-width: 658px) {
  .headline__ballon {
    height: 158px;
    padding-top: 22px;
  }
}
.headline__ballon .border {
  font-weight: 900;
  color: var(--white);
  -webkit-text-stroke: 1px #e8857d;
}

@media screen and (min-width: 658px) {
  .krkr-button-img {
    right: 20px !important;
    bottom: 20px !important;
  }
}
@media screen and (max-width: 657px) {
  .krkr-button-img {
    right: 3.125vw !important;
    bottom: 3.125vw !important;
    width: 21.875vw;
  }
}
.jsFadeup {
  opacity: 0;
  transition: transform 0.7s 0.4s ease, opacity 0.7s 0.4s ease;
  transform: translateY(40px);
}
.jsFadeup.is-act {
  opacity: 1;
  transform: translateY(0);
}

.jsFadeup2 {
  opacity: 0;
  transition: transform 0.7s 0s ease, opacity 0.7s 0s ease;
  transform: translateY(40px);
}
.jsFadeup2.is-act {
  opacity: 1;
  transform: translateY(0);
}

.jsFadeupLead {
  color: var(--gray);
}
.jsFadeupLead .row {
  position: relative;
  display: block;
  min-height: 10vw;
  overflow: hidden;
  opacity: 0;
  line-height: 1.8928571429;
}
@media screen and (min-width: 658px) {
  .jsFadeupLead .row {
    min-height: 54px;
    line-height: 1.89;
  }
}
.jsFadeupLead .line {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
  transition: 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform: translateY(88%);
}
.jsFadeupLead .modDot::before {
  opacity: 0;
  transition-delay: 0.5s;
}
@media screen and (max-width: 657px) {
  .jsFadeupLead .modDot::before {
    top: -1.875vw;
  }
}
.jsFadeupLead.is-act .row {
  opacity: 1;
}
.jsFadeupLead.is-act .line {
  bottom: 0;
  transform: translateY(0);
}
.jsFadeupLead.is-act .modDot::before {
  opacity: 1;
}

.jsSlideIn {
  opacity: 0;
}
.jsSlideIn.is-act {
  animation: SlideIn 1.6s forwards;
}
@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateX(64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.relative {
  position: relative;
}

.bold {
  font-weight: bold;
}

.fw_normal {
  font-weight: normal;
}

.font_red {
  color: #e8857d;
}

.font_brown {
  color: #c2ad80;
}

.font_purple {
  color: #d393ce;
}

.font_pink {
  color: #f4a0aa;
}

.font_orange {
  color: var(--orange);
}

.font_navy {
  color: var(--navy);
}

.font_bordeaux {
  color: #8d0333;
}

.font_fee {
  font-family: "FriendlyExpart";
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.01em;
}

.ls0 {
  letter-spacing: 0;
}

.rl {
  -moz-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.inner__content {
  padding: 0 5.3125vw;
}
@media screen and (min-width: 658px) {
  .inner__content {
    padding: 0 34px;
  }
}

.inner__content.cv {
  margin-top: 10.9375vw;
}
@media screen and (min-width: 658px) {
  .inner__content.cv {
    margin-top: 70px;
  }
}
.inner__content.cv > .fw_normal {
  font-size: 14px;
  margin-top: 4.984375vw;
  line-height: 1.4;
}
@media screen and (max-width: 657px) {
  .inner__content.cv > .fw_normal {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .inner__content.cv > .fw_normal {
    margin-top: 31.9px;
  }
}

.flex {
  display: flex;
}

.va1 {
  vertical-align: 1px;
}

.va3 {
  vertical-align: 3px !important;
}

.va5 {
  vertical-align: 5px;
}

.vam {
  vertical-align: middle;
}

.drop-shadow {
  filter: drop-shadow(0 0 3.75vw rgba(0, 0, 0, 0.16));
}
@media screen and (min-width: 658px) {
  .drop-shadow {
    filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.16));
  }
}

.modAccordion {
  margin: 0;
}

.modAccordion__head {
  max-width: initial;
  background: #c6b183;
  padding: 3.90625vw 5.3125vw 3.90625vw 5.3125vw;
}
@media screen and (min-width: 658px) {
  .modAccordion__head {
    padding: 25px 0;
  }
}
.modAccordion__head h3 {
  position: relative;
}
.modAccordion__head h3 .toggleIcon {
  right: 0;
}
@media screen and (min-width: 658px) {
  .modAccordion__head h3 {
    width: 640px;
    padding: 0 34px;
    margin: 0 auto;
  }
  .modAccordion__head h3 .toggleIcon {
    right: 34px;
  }
}

.modAccordion__body {
  display: none;
  background: none;
}
@media screen and (min-width: 658px) {
  .modAccordion__body {
    padding: 70px 0;
    margin: 0 auto;
  }
}

.modTableCompare th,
.modTableCompare td {
  vertical-align: middle;
}
.modTableCompare th {
  width: 15.3125vw;
  color: var(--white);
}
@media screen and (min-width: 658px) {
  .modTableCompare th {
    width: 98px;
  }
}
.modTableCompare th.th__potenza, .modTableCompare th.th__derma {
  font-size: 32px;
  width: 37.5vw;
  height: 12.5vw;
  padding-top: 0.9375vw;
  border-radius: 3.125vw 3.125vw 0 0;
}
@media screen and (max-width: 657px) {
  .modTableCompare th.th__potenza, .modTableCompare th.th__derma {
    font-size: 5vw;
  }
}
@media screen and (min-width: 658px) {
  .modTableCompare th.th__potenza, .modTableCompare th.th__derma {
    width: 240px;
    height: 80px;
    padding-top: 0;
    border-radius: 20px 20px 0 0;
  }
}
.modTableCompare th.th__potenza {
  background: #42d4d6;
}
.modTableCompare th.th__derma {
  background: #9f9f9f;
}
.modTableCompare tr:nth-of-type(n + 2) th,
.modTableCompare tr:nth-of-type(n + 2) td {
  font-size: 22px;
  padding: 3.125vw 2.34375vw;
  background: var(--lightRizeGold);
  border-bottom: 0.3125vw solid var(--white);
}
@media screen and (max-width: 657px) {
  .modTableCompare tr:nth-of-type(n + 2) th,
  .modTableCompare tr:nth-of-type(n + 2) td {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modTableCompare tr:nth-of-type(n + 2) th,
  .modTableCompare tr:nth-of-type(n + 2) td {
    padding: 20px 15px;
    border-bottom: 2px solid var(--white);
  }
}
.modTableCompare tr:nth-of-type(n + 2) td {
  vertical-align: baseline;
  border-bottom: 0.3125vw solid var(--lightRizeGold);
}
@media screen and (min-width: 658px) {
  .modTableCompare tr:nth-of-type(n + 2) td {
    border-bottom: 2px solid var(--lightRizeGold);
  }
}
.modTableCompare tr:nth-of-type(n + 2) td:first-of-type {
  background: #fff;
}
.modTableCompare tr:nth-of-type(n + 2) td:nth-of-type(2) {
  background: #efefef;
}
.modTableCompare tr:last-of-type th,
.modTableCompare tr:last-of-type td {
  border-bottom: none;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  filter: drop-shadow(0 0 4.6875vw rgba(0, 0, 0, 0.1));
}
@media screen and (min-width: 658px) {
  #wrapper {
    width: 640px;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.1));
  }
}

@media screen and (min-width: 658px) {
  .bg_pc_fixed {
    position: fixed;
    top: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background: url("../../img/bg_pc_fixed.jpg") top center no-repeat;
    background-size: cover;
  }
}

@media screen and (min-width: 658px) {
  .max_w640 {
    max-width: 640px;
    margin: 0 34px;
  }
  .max_w900 {
    max-width: 900px;
    margin: 0 auto;
  }
  .max_w1280 {
    max-width: 1280px;
    margin: 0 auto;
  }
}
#mv {
  position: relative;
  display: flex;
  flex-direction: column;
}
#mv #header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.4s;
}
#mv #header.active {
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 657px) {
  #mv #header {
    max-width: 640px;
  }
}
#mv #header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.125vw 0vw 3.125vw 3.125vw;
}
@media screen and (min-width: 658px) {
  #mv #header .header__inner {
    max-width: 1280px;
    padding: 20px 0 20px 20px;
  }
}
#mv #header .header__inner #logo {
  width: 12.5vw;
}
@media screen and (min-width: 658px) {
  #mv #header .header__inner #logo {
    width: 80px;
  }
}
#mv #header .header__inner .header__btnArea {
  width: 82.34375vw;
  margin-right: -6.875vw;
  white-space: nowrap;
}
@media screen and (min-width: 658px) {
  #mv #header .header__inner .header__btnArea {
    width: 527px;
    margin-right: -44px;
  }
}
#mv #header .header__inner .header__btnArea a {
  display: inline-block;
  text-align: left;
  padding: 3.125vw 0vw 3.125vw 0vw;
}
@media screen and (min-width: 658px) {
  #mv #header .header__inner .header__btnArea a {
    padding: 20px 0;
  }
}
#mv #header .header__inner .header__btnArea a.clinic, #mv #header .header__inner .header__btnArea a.reserve {
  font-size: 20px;
}
@media screen and (max-width: 657px) {
  #mv #header .header__inner .header__btnArea a.clinic, #mv #header .header__inner .header__btnArea a.reserve {
    font-size: 3.125vw;
  }
}
#mv #header .header__inner .header__btnArea a.clinic i, #mv #header .header__inner .header__btnArea a.reserve i {
  display: inline-block;
  vertical-align: middle;
}
#mv #header .header__inner .header__btnArea a.clinic {
  width: 25.46875vw;
  color: var(--gray);
  background: #fff7f7;
}
@media screen and (min-width: 658px) {
  #mv #header .header__inner .header__btnArea a.clinic {
    width: 163px;
  }
}
#mv #header .header__inner .header__btnArea a.clinic .header__icon_clinic {
  width: 3.3546875vw;
  height: 4.421875vw;
  background: url(../../img/icon_nav_loca.png) no-repeat center center;
  background-size: 100% auto;
  margin: -0.3125vw 1.25vw 0vw 2.796875vw;
}
@media screen and (min-width: 658px) {
  #mv #header .header__inner .header__btnArea a.clinic .header__icon_clinic {
    width: 21.47px;
    height: 28.3px;
    margin: -2px 8px 0 17.9px;
  }
}
#mv #header .header__inner .header__btnArea a.reserve {
  width: 53.90625vw;
  margin-left: 2.96875vw;
  color: var(--white);
  background: linear-gradient(to right, #65D171 0%, #A0E363 100%);
}
@media screen and (min-width: 658px) {
  #mv #header .header__inner .header__btnArea a.reserve {
    width: 345px;
    margin-left: 19px;
  }
}
#mv #header .header__inner .header__btnArea a.reserve .header__icon_calendar {
  width: 3vw;
  height: 3vw;
  background: url(../../img/icon_calendar.png) no-repeat center center;
  background-size: 100% auto;
  margin: -0.3125vw 1.25vw 0vw 5.15625vw;
}
@media screen and (min-width: 658px) {
  #mv #header .header__inner .header__btnArea a.reserve .header__icon_calendar {
    width: 19.2px;
    height: 19.2px;
    margin: -2px 8px 0 33px;
  }
}
#mv .mv__headline {
  font-size: 28px;
  position: absolute;
  top: 23.4375vw;
  left: 45.3125vw;
  color: var(--lightBlue);
}
@media screen and (max-width: 657px) {
  #mv .mv__headline {
    font-size: 4.375vw;
  }
}
@media screen and (min-width: 658px) {
  #mv .mv__headline {
    top: 150px;
    left: 290px;
  }
}
#mv h1 {
  position: absolute;
  top: 29.375vw;
  left: 46.875vw;
  width: 40vw;
  color: var(--white);
  font-size: 48px;
}
@media screen and (max-width: 657px) {
  #mv h1 {
    font-size: 7.5vw;
  }
}
@media screen and (min-width: 658px) {
  #mv h1 {
    top: 198px;
    left: 300px;
    width: 256px;
  }
}
#mv h1.jsFadeupLead .row {
  /*min-height:m.vw(41);*/
  line-height: 1;
}
#mv h1.jsFadeupLead .row .line {
  text-align: left;
}
#mv h1 .row:nth-child(1) {
  margin-bottom: 0.9375vw;
}
@media screen and (min-width: 658px) {
  #mv h1 .row:nth-child(1) {
    margin-bottom: 14px;
  }
}
#mv h1 .h1_1 {
  width: 39.375vw;
}
@media screen and (min-width: 658px) {
  #mv h1 .h1_1 {
    width: 252px;
  }
}
#mv h1 .h1_2 {
  width: 49.375vw;
}
@media screen and (min-width: 658px) {
  #mv h1 .h1_2 {
    width: 316px;
  }
}
#mv .mv__effectiveArea {
  position: absolute;
  top: 67.5vw;
  left: 5.9375vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 48.4375vw;
  font-size: 28px;
}
@media screen and (max-width: 657px) {
  #mv .mv__effectiveArea {
    font-size: 4.375vw;
  }
}
@media screen and (min-width: 658px) {
  #mv .mv__effectiveArea {
    top: 432px;
    left: 38px;
    width: 310px;
  }
}
#mv .mv__effectiveArea__parts {
  width: 23.4375vw;
  padding: 1.25vw 0.9375vw 0.625vw 0.9375vw;
  color: var(--lightBlue);
  text-align: center;
  background: var(--white);
  border-radius: 1.5625vw;
}
@media screen and (min-width: 658px) {
  #mv .mv__effectiveArea__parts {
    width: 150px;
    padding: 6px;
    border-radius: 10px;
  }
}
#mv .mv__effectiveArea__parts:nth-of-type(n + 3) {
  margin-top: 1.5625vw;
}
@media screen and (min-width: 658px) {
  #mv .mv__effectiveArea__parts:nth-of-type(n + 3) {
    margin-top: 10px;
  }
}
#mv .planBox {
  position: absolute;
  top: 114.21875vw;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media screen and (min-width: 658px) {
  #mv .planBox {
    top: 731px;
  }
}
#mv .planBox__monthArea {
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 1.59375vw;
  border-bottom: none;
}
@media screen and (min-width: 658px) {
  #mv .planBox__monthArea {
    margin-bottom: 10.2px;
  }
}
#mv .planBox__monthArea .shot {
  font-size: 36px;
  margin-bottom: 3.125vw;
}
@media screen and (max-width: 657px) {
  #mv .planBox__monthArea .shot {
    font-size: 5.625vw;
  }
}
@media screen and (min-width: 658px) {
  #mv .planBox__monthArea .shot {
    margin-bottom: 20px;
  }
}
#mv .planBox__monthArea .shot .font_fee {
  font-size: 42px;
}
@media screen and (max-width: 657px) {
  #mv .planBox__monthArea .shot .font_fee {
    font-size: 6.5625vw;
  }
}
#mv .planBox__monthArea .font_fee {
  font-size: 100px;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 657px) {
  #mv .planBox__monthArea .font_fee {
    font-size: 15.625vw;
  }
}
#mv .planBox__monthArea .yen {
  font-size: 64px;
}
@media screen and (max-width: 657px) {
  #mv .planBox__monthArea .yen {
    font-size: 10vw;
  }
}
#mv .planBox__Title {
  font-size: 36px;
  padding: 2.34375vw 0vw 1.875vw 0vw;
  background: var(--lightRizeGold);
}
@media screen and (max-width: 657px) {
  #mv .planBox__Title {
    font-size: 5.625vw;
  }
}
@media screen and (min-width: 658px) {
  #mv .planBox__Title {
    padding: 15px 0;
  }
}
#mv .planBox__priceArea {
  line-height: 1;
  padding: 4.6875vw 9.375vw 5.9375vw 9.375vw;
}
@media screen and (min-width: 658px) {
  #mv .planBox__priceArea {
    padding: 30px 60px 38px;
  }
}
#mv .planBox__monthPrice {
  font-size: 74px;
}
@media screen and (max-width: 657px) {
  #mv .planBox__monthPrice {
    font-size: 11.5625vw;
  }
}

/**MV__end**/
.planBox {
  width: 89.53125vw;
  margin: 10.15625vw auto 0;
  text-align: center;
  border-radius: 3.75vw;
}
@media screen and (min-width: 658px) {
  .planBox {
    width: 573px;
    margin: 65px auto 0;
    border-radius: 24px;
  }
}
.planBox:first-of-type {
  margin-top: 0;
}
.planBox__Title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background: var(--orange);
  border-radius: 3.75vw 3.75vw 0 0;
  font-size: 36px;
  padding: 2.34375vw 0vw 1.875vw 0vw;
}
@media screen and (max-width: 657px) {
  .planBox__Title {
    font-size: 5.625vw;
  }
}
@media screen and (min-width: 658px) {
  .planBox__Title {
    padding: 15px 0;
    border-radius: 24px 24px 0 0;
  }
}
.planBox__Title img {
  width: 6.71875vw;
  margin-right: 1.71875vw;
  margin-left: 1.71875vw;
  vertical-align: sub;
}
@media screen and (min-width: 658px) {
  .planBox__Title img {
    width: 43px;
    margin-right: 10px;
    margin-left: 10px;
    vertical-align: -6px;
  }
}
.planBox__Title__planName {
  color: var(--white);
  background: var(--orange);
}
.planBox__Title__planName .flex {
  align-items: center;
  justify-content: center;
  padding: 2.65625vw 0vw 2.34375vw 0vw;
}
@media screen and (min-width: 658px) {
  .planBox__Title__planName .flex {
    padding: 11px 0 15px;
  }
}
.planBox__Title__planName .flex > p {
  font-size: 50px;
  margin-right: 3.125vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 657px) {
  .planBox__Title__planName .flex > p {
    font-size: 7.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .planBox__Title__planName .flex > p {
    margin-right: 20px;
  }
}
.planBox__Title__planName .flex > div {
  width: 21.3359375vw;
  text-align: center;
}
@media screen and (min-width: 658px) {
  .planBox__Title__planName .flex > div {
    width: 136.55px;
  }
}
.planBox__Title__planName .flex > div p {
  font-size: 22px;
}
@media screen and (max-width: 657px) {
  .planBox__Title__planName .flex > div p {
    font-size: 3.4375vw;
  }
}
.planBox__Title__planName .flex > div div {
  font-size: 20px;
  padding: 0.859375vw 0 0.3125vw;
  margin-top: 0.78125vw;
  background: var(--white);
  border-radius: 7.8125vw;
}
@media screen and (max-width: 657px) {
  .planBox__Title__planName .flex > div div {
    font-size: 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .planBox__Title__planName .flex > div div {
    padding: 4px 0 2.5px;
    margin-top: 5px;
    border-radius: 50px;
  }
}
.planBox__priceArea {
  position: relative;
  font-weight: bold;
  background: var(--white);
  border-radius: 3.75vw;
  border-radius: 0 0 3.75vw 3.75vw;
  line-height: 2.1818181818;
  padding: 4.375vw 4.375vw 3.125vw 4.375vw;
}
@media screen and (min-width: 658px) {
  .planBox__priceArea {
    padding: 28px 33px 20px 33px;
    border-radius: 0 0 24px 24px;
  }
}
.planBox__priceArea__imgArea {
  width: 42.8125vw;
}
@media screen and (min-width: 658px) {
  .planBox__priceArea__imgArea {
    width: 274px;
  }
}
.planBox__priceArea .img_dragdelivery01 {
  width: 63.75vw;
}
@media screen and (min-width: 658px) {
  .planBox__priceArea .img_dragdelivery01 {
    width: 408px;
  }
}
.planBox__priceArea .img_dragdelivery02 {
  width: 64.0625vw;
}
@media screen and (min-width: 658px) {
  .planBox__priceArea .img_dragdelivery02 {
    width: 410px;
  }
}
.planBox__priceArea__priceBox {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  border-top: 0.3125vw solid var(--lightRizeGold);
  border-bottom: 0.3125vw solid var(--lightRizeGold);
  font-size: 26px;
  padding: 3.125vw 0vw 0.3125vw 0vw;
}
@media screen and (max-width: 657px) {
  .planBox__priceArea__priceBox {
    font-size: 4.0625vw;
  }
}
@media screen and (min-width: 658px) {
  .planBox__priceArea__priceBox {
    padding: 18px 0;
    border-top: 1px solid var(--lightRizeGold);
    border-bottom: 1px solid var(--lightRizeGold);
  }
}
.planBox__priceArea__priceBox .font_fee {
  letter-spacing: -0.05em;
}
.planBox__priceArea__priceBox .yen {
  font-size: 38px;
}
@media screen and (max-width: 657px) {
  .planBox__priceArea__priceBox .yen {
    font-size: 5.9375vw;
  }
}
.planBox__priceArea__priceBox .count {
  font-size: 26px;
}
@media screen and (max-width: 657px) {
  .planBox__priceArea__priceBox .count {
    font-size: 4.0625vw;
  }
}
.planBox__priceArea__priceBox .price {
  width: 39.0625vw;
}
@media screen and (min-width: 658px) {
  .planBox__priceArea__priceBox .price {
    width: 250px;
  }
}
.planBox__priceArea__priceBox .price .font_fee {
  font-size: 52px;
}
@media screen and (max-width: 657px) {
  .planBox__priceArea__priceBox .price .font_fee {
    font-size: 8.125vw;
  }
}
.planBox__priceArea__priceBox .include__underText {
  width: 100%;
}
.planBox__priceArea__priceBox .include__underText2 {
  text-align: right;
}
.planBox__priceArea__priceBox .underText {
  font-size: 22px;
  margin: -0.3125vw auto 3.125vw;
  line-height: 1.4;
}
@media screen and (max-width: 657px) {
  .planBox__priceArea__priceBox .underText {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .planBox__priceArea__priceBox .underText {
    margin: -2px auto 20px;
  }
}
.planBox__priceArea__priceBox .underText2 {
  padding: 1.2em 0.5em;
  margin: 0 2em;
  line-height: 1.5;
  white-space: nowrap;
  border: 1px solid #000;
  border-radius: 1.25vw;
}
.planBox__priceArea__priceBox2 {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.planBox__priceArea__product {
  font-size: 36px;
  padding-bottom: 0.6em;
  line-height: 1.3;
  color: var(--lightRizeGold);
}
@media screen and (max-width: 657px) {
  .planBox__priceArea__product {
    font-size: 5.625vw;
  }
}
.planBox__priceArea__product .small {
  font-size: 26px;
}
@media screen and (max-width: 657px) {
  .planBox__priceArea__product .small {
    font-size: 4.0625vw;
  }
}
.planBox__priceArea.js-wrap-omit2 .js-text-hide {
  font-size: 22px;
  display: block;
  max-height: 6rem;
  padding-bottom: 22vw;
  margin-top: 4.6875vw;
  overflow: hidden;
  text-align: left;
  transition: max-height 0.3s linear;
}
@media screen and (max-width: 657px) {
  .planBox__priceArea.js-wrap-omit2 .js-text-hide {
    font-size: 3.4375vw;
  }
}
@media screen and (max-width: 657px) {
  .planBox__priceArea.js-wrap-omit2 .js-text-hide {
    max-height: 4rem;
  }
}
@media screen and (min-width: 658px) {
  .planBox__priceArea.js-wrap-omit2 .js-text-hide {
    padding-bottom: 144px;
    margin-top: 30px;
  }
}
.planBox__priceArea.js-wrap-omit2 .toggleIcon {
  position: relative;
  z-index: 1;
  width: 12.5vw;
  height: 12.5vw;
  margin: 0 auto;
  cursor: pointer;
  background: var(--lightRizeGold);
  border-radius: 100%;
  transition: transform 0.6s 1.2s ease;
}
@media screen and (min-width: 658px) {
  .planBox__priceArea.js-wrap-omit2 .toggleIcon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
}
.planBox__priceArea.js-wrap-omit2 .toggleIcon::before, .planBox__priceArea.js-wrap-omit2 .toggleIcon::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  margin: -1px auto;
  content: "";
  background: var(--white);
  border-radius: 50vw;
}
@media screen and (min-width: 658px) {
  .planBox__priceArea.js-wrap-omit2 .toggleIcon::before, .planBox__priceArea.js-wrap-omit2 .toggleIcon::after {
    width: 24px;
    height: 5px;
  }
}
@media screen and (max-width: 657px) {
  .planBox__priceArea.js-wrap-omit2 .toggleIcon::before, .planBox__priceArea.js-wrap-omit2 .toggleIcon::after {
    width: 3.75vw;
    height: 0.78125vw;
  }
}
.planBox__priceArea.js-wrap-omit2 .toggleIcon::before {
  transform: rotate(90deg);
}
.planBox__priceArea.js-wrap-omit2::after {
  position: absolute;
  right: 0;
  bottom: 3rem;
  left: 0;
  display: block;
  width: 100%;
  content: "";
  background: var(--goldGray);
  border-radius: 3.75vw;
  background: linear-gradient(to top, rgba(255,255,255, .8) 0%, rgba(255,255,255, 0.1) 100%);
}
@media screen and (max-width: 657px) {
  .planBox__priceArea.js-wrap-omit2::after {
    bottom: 0;
    height: 30vw;
  }
}
@media screen and (min-width: 658px) {
  .planBox__priceArea.js-wrap-omit2::after {
    bottom: 10rem;
    height: 76px;
    border-radius: 24px;
  }
}
.planBox__priceArea.js-wrap-omit2.is-open::after {
  content: none;
}
.planBox__priceArea.js-wrap-omit2.is-open .js-text-show {
  height: auto;
}
.planBox__priceArea.js-wrap-omit2.is-open .js-text-hide {
  display: block !important;
  max-height: 220px;
  padding-bottom: 0;
  overflow: visible;
}
@media screen and (max-width: 657px) {
  .planBox__priceArea.js-wrap-omit2.is-open .js-text-hide {
    max-height: 65vw;
  }
}
.planBox__priceArea.js-wrap-omit2.is-open .toggleIcon {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  margin: 90px auto 0;
}
@media screen and (min-width: 658px) {
  .planBox__priceArea.js-wrap-omit2.is-open .toggleIcon {
    margin: 360px auto 0;
  }
}
.planBox__priceArea.js-wrap-omit2.is-open .toggleIcon::before {
  display: none;
}

/**planBox__end**/
.under {
  font-size: 22px;
  width: 89.53125vw;
  padding: 4.6875vw 4.0625vw;
  margin: 6.25vw auto 0;
  font-weight: bold;
  background: #fdfaf2;
}
@media screen and (max-width: 657px) {
  .under {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .under {
    width: 573px;
    padding: 30px 26px;
    margin: 40px auto 0;
  }
}
.under .box:nth-child(2) {
  margin-top: 4.6875vw;
}
@media screen and (min-width: 658px) {
  .under .box:nth-child(2) {
    margin-top: 30px;
  }
}
.under .imgBox {
  width: 16.875vw;
  text-align: center;
}
@media screen and (min-width: 658px) {
  .under .imgBox {
    width: 108px;
  }
}
.under .imgBox img.img_exosome {
  width: 13.28125vw;
}
@media screen and (min-width: 658px) {
  .under .imgBox img.img_exosome {
    width: 85px;
  }
}
.under .imgBox img.img_juvelook {
  width: 10.625vw;
}
@media screen and (min-width: 658px) {
  .under .imgBox img.img_juvelook {
    width: 68px;
  }
}
.under .textArea {
  width: calc(100% - 16.875vw);
}
@media screen and (min-width: 658px) {
  .under .textArea {
    width: calc(100% - 108px);
  }
}

.modSectionAbout {
  margin-top: 15.625vw;
}
@media screen and (min-width: 658px) {
  .modSectionAbout {
    margin-top: 100px;
  }
}
.modSectionAbout__img {
  display: block;
  width: 49.375vw;
  margin: 0 auto;
}
@media screen and (min-width: 658px) {
  .modSectionAbout__img {
    width: 316px;
  }
}
.modSectionAbout__topicArea {
  flex-wrap: wrap;
  justify-content: space-around;
  width: 48.4375vw;
  margin: 6.5625vw auto 0;
}
@media screen and (min-width: 658px) {
  .modSectionAbout__topicArea {
    width: 310px;
    margin: 42px auto 0;
  }
}
.modSectionAbout__topic {
  font-size: 32px;
  color: var(--white);
  background: var(--lightRizeGold);
  border-radius: 1.25vw;
  padding: 0vw 1.5625vw 0vw 1.5625vw;
}
@media screen and (max-width: 657px) {
  .modSectionAbout__topic {
    font-size: 5vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionAbout__topic {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.modSectionAbout__topic:nth-of-type(n + 2) {
  margin-top: 1.25vw;
}
@media screen and (min-width: 658px) {
  .modSectionAbout__topic:nth-of-type(n + 2) {
    margin-top: 8px;
  }
}
.modSectionAbout__headline {
  font-size: 32px;
  margin: 2.34375vw auto 0;
  color: var(--lightRizeGold);
  text-align: center;
}
@media screen and (max-width: 657px) {
  .modSectionAbout__headline {
    font-size: 5vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionAbout__headline {
    margin: 15px auto 0;
  }
}
.modSectionAbout__text {
  font-size: 22px;
  margin: 5.46875vw auto 0;
}
@media screen and (max-width: 657px) {
  .modSectionAbout__text {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionAbout__text {
    margin: 35px auto 0;
  }
}
.modSectionAbout__text span {
  color: var(--lightBlue);
}
.modSectionAbout__features {
  height: 364.0625vw;
  /*height: m.vw(2534);  addmovie*/
  margin-top: 18.75vw;
  background: url("../../../assets/img/bg_features.jpg") top center no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features {
    height: 2330px;
    /*height: 2534px;  addmovie*/
    margin-top: 120px;
  }
}
.modSectionAbout__features h4 {
  margin-left: 15vw;
  color: var(--lightBlue);
  font-size: 34px;
}
@media screen and (max-width: 657px) {
  .modSectionAbout__features h4 {
    font-size: 5.3125vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features h4 {
    margin-left: 96px;
  }
}
.modSectionAbout__features h4 span {
  display: block;
  font-size: 60px;
}
@media screen and (max-width: 657px) {
  .modSectionAbout__features h4 span {
    font-size: 9.375vw;
  }
}
.modSectionAbout__features .odd .flex {
  justify-content: flex-end;
}
.modSectionAbout__features .even .flex {
  justify-content: flex-start;
}
.modSectionAbout__features .even .number {
  transform: translateX(-5.46875vw);
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features .even .number {
    transform: translateX(-35px);
  }
}
.modSectionAbout__features .even h5 {
  color: var(--lightBlue);
}
.modSectionAbout__features__area img {
  display: block;
  margin: 3.4375vw auto 0;
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features__area img {
    margin: 22px auto 0;
  }
}
.modSectionAbout__features__area.area01 img {
  width: 37.34375vw;
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features__area.area01 img {
    width: 239px;
  }
}
.modSectionAbout__features__area.area02 img {
  width: 71.5625vw;
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features__area.area02 img {
    width: 458px;
  }
}
.modSectionAbout__features__area.area03 img {
  width: 38.4375vw;
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features__area.area03 img {
    width: 246px;
  }
}
.modSectionAbout__features__area .number {
  font-size: 96px;
  color: var(--white);
}
@media screen and (max-width: 657px) {
  .modSectionAbout__features__area .number {
    font-size: 15vw;
  }
}
.modSectionAbout__features__area .number span {
  font-size: 22px;
  display: inline-block;
  color: var(--lightBlue);
  transform: translate3d(5.46875vw, -4.6875vw, 0);
}
@media screen and (max-width: 657px) {
  .modSectionAbout__features__area .number span {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features__area .number span {
    transform: translate3d(35px, -30px, 0);
  }
}
.modSectionAbout__features__area.area02 .number {
  margin-top: 23.4375vw;
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features__area.area02 .number {
    margin-top: 150px;
  }
}
.modSectionAbout__features__area.area03 .number {
  margin-top: 17.1875vw;
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features__area.area03 .number {
    margin-top: 110px;
  }
}
.modSectionAbout__features__area h5 {
  font-size: 38px;
  margin-top: 3.125vw;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 657px) {
  .modSectionAbout__features__area h5 {
    font-size: 5.9375vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features__area h5 {
    margin-top: 20px;
  }
}
.modSectionAbout__features__area__text {
  font-size: 22px;
  margin-top: 3.125vw;
}
@media screen and (max-width: 657px) {
  .modSectionAbout__features__area__text {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionAbout__features__area__text {
    margin-top: 20px;
  }
}

.modRecovery {
  padding: 16.875vw 0 12.1875vw;
  font-weight: bold;
}
@media screen and (min-width: 658px) {
  .modRecovery {
    padding: 108px 0 78px;
  }
}
.modRecovery h4 {
  color: #23b8ba;
  font-size: 50px;
}
@media screen and (max-width: 657px) {
  .modRecovery h4 {
    font-size: 7.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .modRecovery img {
    width: 100%;
  }
}
.modRecovery .modSection {
  width: 79.6875vw;
}
@media screen and (min-width: 658px) {
  .modRecovery .modSection {
    width: 510px;
  }
}
.modRecovery .modSection .text {
  margin-top: 5.3125vw;
  color: #23b8ba;
  font-size: 22px;
}
@media screen and (max-width: 657px) {
  .modRecovery .modSection .text {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modRecovery .modSection .text {
    margin-top: 34px;
  }
}
.modRecovery .modSection .box {
  padding: 3.4375vw 4.6875vw;
  margin-top: 6.25vw;
  background: #fdfaf2;
}
@media screen and (min-width: 658px) {
  .modRecovery .modSection .box {
    padding: 30px 40px;
    margin-top: 41px;
  }
}
.modRecovery .modSection .box dl {
  margin-top: 0.1em;
}
@media screen and (min-width: 658px) {
  .modRecovery .modSection .box dl {
    margin-top: 0.5em;
  }
}
.modRecovery .modSection .box dl:nth-child(1) {
  margin-top: 0;
}
.modRecovery .modSection .box dl dt,
.modRecovery .modSection .box dl dd {
  font-size: 22px;
  display: inline;
}
@media screen and (max-width: 657px) {
  .modRecovery .modSection .box dl dt,
  .modRecovery .modSection .box dl dd {
    font-size: 3.4375vw;
  }
}
.modRecovery .modSection .box dl dt {
  color: #23b8ba;
}

.modSectionCompare {
  margin-top: 17.1875vw;
}
@media screen and (min-width: 658px) {
  .modSectionCompare {
    margin-top: 110px;
  }
}
.modSectionCompare h4 {
  font-size: 50px;
  margin: 0vw 0vw 7.5vw 4.0625vw;
}
@media screen and (max-width: 657px) {
  .modSectionCompare h4 {
    font-size: 7.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionCompare h4 {
    margin: 0 0 48px 26px;
  }
}
.modSectionCompare h4 span {
  color: var(--lightBlue);
}
.modSectionCompare h4 span.font_fee {
  color: var(--lightRizeGold);
}
.modSectionCompare__rizekuma {
  position: relative;
}
.modSectionCompare__rizekuma img {
  position: absolute;
  top: -33.59375vw;
  right: 0;
  z-index: -1;
  width: 24.375vw;
}
@media screen and (min-width: 658px) {
  .modSectionCompare__rizekuma img {
    top: -215px;
    width: 156px;
  }
}

/**modSectionCompare__end**/
.modSectionPlans {
  height: 323.4375vw;
  background: url("../../img/bg_plans.jpg") top center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 658px) {
  .modSectionPlans {
    height: 2130px;
  }
}
.modSectionPlans h4 {
  font-size: 42px;
  padding-top: 29.375vw;
  color: var(--lightBlue);
  text-align: center;
}
@media screen and (max-width: 657px) {
  .modSectionPlans h4 {
    font-size: 6.5625vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionPlans h4 {
    padding-top: 188px;
  }
}
.modSectionPlans .planBox {
  margin-top: 6.5625vw;
}
@media screen and (min-width: 658px) {
  .modSectionPlans .planBox {
    margin-top: 42px;
  }
}
.modSectionPlans .planBox:first-of-type {
  margin-top: 8.4375vw;
}
@media screen and (min-width: 658px) {
  .modSectionPlans .planBox:first-of-type {
    margin-top: 54px;
  }
}
.modSectionPlans .planBox__priceArea {
  padding: 2.1875vw 4.375vw 2.5vw 4.375vw;
}
@media screen and (min-width: 658px) {
  .modSectionPlans .planBox__priceArea {
    padding: 14px 33px 16px 33px;
  }
}
.modSectionPlans .planBox__priceArea__priceBox {
  border-bottom: none;
}

/**modSectionPlans__end**/
.cv__button {
  text-align: center;
}
.cv__button p {
  position: relative;
  margin-bottom: 4.0625vw;
  color: #a07754;
  font-size: 32px;
}
@media screen and (max-width: 657px) {
  .cv__button p {
    font-size: 4.375vw;
  }
}
@media screen and (min-width: 658px) {
  .cv__button p {
    margin-bottom: 45px;
  }
}
.cv__button p:after {
  position: absolute;
  top: 1.5625vw;
  right: 0;
  left: 0;
  width: 4.375vw;
  height: 4.375vw;
  padding-right: 1.25vw;
  margin: 0 auto;
  content: "";
  background: url(../../img/img_smile.png) center left no-repeat;
  background-size: 4.375vw auto;
}
@media screen and (min-width: 658px) {
  .cv__button p:after {
    top: 14px;
    width: 32px;
    height: 32px;
    padding-right: 14px;
    background-size: 32px auto;
  }
}
.cv__button .modBtn--grade {
  width: 100%;
  padding: 0;
  line-height: 19.6875vw;
  color: var(--white);
  font-size: 24px;
  background: linear-gradient(to right, #65D171 0%, #A0E363 100%);
}
@media screen and (max-width: 657px) {
  .cv__button .modBtn--grade {
    font-size: 5.3125vw;
  }
}
@media screen and (min-width: 658px) {
  .cv__button .modBtn--grade {
    line-height: 110px;
    border-radius: 64px;
  }
}
.cv__button .modBtn--grade .modBtn__icon_calendar {
  display: inline-block;
  width: 5.4515625vw;
  height: 5.4515625vw;
  vertical-align: middle;
  background: url(../../img/icon_calendar.png) no-repeat center center;
  background-size: 100% auto;
  margin: -0.9375vw 3.53125vw 0vw 0vw;
}
@media screen and (min-width: 658px) {
  .cv__button .modBtn--grade .modBtn__icon_calendar {
    width: 34.89px;
    height: 34.89px;
    margin: -6px 22.6px 0 0;
  }
}
.cv__button .modBtn::after {
  background: url(../../img/btn_arrow.png) center center no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 658px) {
  .cv__button .modBtn::after {
    right: 20px;
    width: 32px;
    height: 6px;
  }
}

/**cv__button__end**/
.lead {
  padding: 0 0 10.9375vw;
}
@media screen and (min-width: 658px) {
  .lead {
    padding: 0 0 70px;
  }
}

.parts {
  position: relative;
  padding: 15.625vw 0;
  background-color: #f7fcff;
}
@media screen and (min-width: 658px) {
  .parts {
    padding: 100px 0;
  }
}
.parts .inner__content.cv + .modSection {
  margin-top: 11.09375vw;
}
@media screen and (min-width: 658px) {
  .parts .inner__content.cv + .modSection {
    margin-top: 71px;
  }
}
.parts .inner__content.cv + .modSection .modContentFree::after {
  content: none;
}
.parts .modBox--beige {
  background: var(--white);
}
@media screen and (min-width: 658px) {
  .parts .modBox--beige {
    padding: 33px 41px;
    margin: 69px auto 0;
  }
}
.parts .modBox--beige .modContentFree__list__item {
  background: var(--goldGray);
  box-shadow: none;
}
@media screen and (min-width: 658px) {
  .parts .modBox--beige .modContentFree__list__item {
    width: 281px;
  }
}
@media screen and (min-width: 658px) {
  .parts .modBox--beige .modContentFree__list__item:nth-child(n+2) {
    margin: 13px 0 0;
  }
}
@media screen and (min-width: 658px) {
  .parts .modBox--beige .modContentFree__img {
    margin: 0 13px 0 34px;
  }
}
@media screen and (min-width: 658px) {
  .parts .modBox--beige .modContentFree__img .yen {
    width: 34px;
    height: 46px;
  }
}
@media screen and (min-width: 658px) {
  .parts .modBox--beige .modContentFree__img .zero {
    width: 115px;
    height: 147px;
    margin: 0 0 0 15px;
  }
}

/**parts__end**/
.allPayment {
  margin-top: 15.625vw;
  margin-bottom: 15.625vw;
}
@media screen and (min-width: 658px) {
  .allPayment {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
.allPayment .modListPayment--box {
  margin-top: 9.375vw;
}
@media screen and (min-width: 658px) {
  .allPayment .modListPayment--box {
    width: auto;
    margin-top: 60px;
  }
}
@media screen and (min-width: 658px) {
  .allPayment .modListPayment > li:nth-child(n+2) {
    margin: 36px 0 0;
  }
}
.allPayment .modListPayment .payment__textArea__way > li img {
  height: 9.6546875vw;
}
@media screen and (min-width: 658px) {
  .allPayment .modListPayment .payment__textArea__way > li img {
    height: 61.79px;
  }
}
.allPayment .icon_credit {
  width: 49.53125vw;
}
@media screen and (min-width: 658px) {
  .allPayment .icon_credit {
    width: 317px;
  }
}
.allPayment .icon_debit {
  width: 23.725vw;
}
@media screen and (min-width: 658px) {
  .allPayment .icon_debit {
    width: 151.84px;
  }
}

/**allPayment__end**/
.flowBox {
  padding: 0 0 10.9375vw;
}
@media screen and (min-width: 658px) {
  .flowBox {
    padding: 0 0 70px;
    overflow-x: hidden;
  }
}
.flowBox .flowSlide {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 22px;
  padding: 0vw 5.3125vw 0vw 5.3125vw;
}
@media screen and (max-width: 657px) {
  .flowBox .flowSlide {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .flowBox .flowSlide {
    padding: 0 0 34px;
  }
}
.flowBox .flowSlide__cont {
  overflow-x: scroll;
  padding: 8.296875vw 0vw 0vw 0vw;
}
@media screen and (min-width: 658px) {
  .flowBox .flowSlide__cont {
    width: auto;
    padding: 53.1px 0 0;
    margin: 0 34px;
  }
}
.flowBox .flowSlide__item {
  width: 73.75vw;
}
@media screen and (min-width: 658px) {
  .flowBox .flowSlide__item {
    width: 472px;
  }
}
.flowBox .flowSlide__item:nth-child(n+2) {
  margin: 0vw 0vw 0vw 5.46875vw;
}
@media screen and (min-width: 658px) {
  .flowBox .flowSlide__item:nth-child(n+2) {
    margin: 0 0 0 20px;
  }
}
.flowBox .flowSlide__item h3 {
  margin-bottom: -5vw;
  line-height: 1.67;
  text-align: center;
}
@media screen and (min-width: 658px) {
  .flowBox .flowSlide__item h3 {
    margin-bottom: -27px;
  }
}
.flowBox .flowSlide__item h3 .cap {
  font-size: 16px;
}
@media screen and (max-width: 657px) {
  .flowBox .flowSlide__item h3 .cap {
    font-size: 3.75vw;
  }
}
.flowBox .flowSlide__item h3 .border {
  margin-top: 1.25vw;
  color: var(--goldGray);
  -webkit-text-stroke: 1px #c6b183;
  font-size: 52px;
}
@media screen and (max-width: 657px) {
  .flowBox .flowSlide__item h3 .border {
    font-size: 9.6875vw;
  }
}
@media screen and (min-width: 658px) {
  .flowBox .flowSlide__item h3 .border {
    margin-top: 8px;
  }
}
.flowBox .flowSlide__item .modBox {
  padding-bottom: 4.375vw;
}
@media screen and (min-width: 658px) {
  .flowBox .flowSlide__item .modBox {
    padding-bottom: 28px;
  }
}
.flowBox .flowSlide__item .modBox .midashi {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.203125vw 0 3.4375vw;
  color: var(--lightRizeGold);
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 657px) {
  .flowBox .flowSlide__item .modBox .midashi {
    font-size: 4.6875vw;
  }
}
@media screen and (min-width: 658px) {
  .flowBox .flowSlide__item .modBox .midashi {
    padding: 30px 0 15px;
  }
}
.flowBox .flowSlide__item .modBox .text {
  font-size: 14px;
  margin: 4.375vw 4.84375vw 0vw 4.84375vw;
}
@media screen and (max-width: 657px) {
  .flowBox .flowSlide__item .modBox .text {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .flowBox .flowSlide__item .modBox .text {
    margin: 24px 24px 0 24px;
  }
}
.flowBox .flowSlide__item__img {
  vertical-align: middle;
}

/**flowBox__end**/
.modFaq--lp .modContentFaq {
  padding-bottom: 0;
}
@media screen and (min-width: 658px) {
  .modFaq--lp .modContentFaq {
    padding: 45px 34px 63px;
  }
}
.modFaq--lp .modContentFaq .modListFaq__item:last-child {
  border-bottom: 1px solid var(--lightRizeGold);
}
.modFaq--lp .modContentFaq .modListFaq__item__a {
  font-weight: normal;
}

/**modFaq--lp**/
.clinicBox .relative {
  z-index: 1;
  height: auto;
}
@media screen and (min-width: 658px) {
  .clinicBox .relative {
    height: 490px;
  }
  .clinicBox .relative:before, .clinicBox .relative:after {
    height: 490px;
  }
}
.clinicBox .modContentClinic {
  padding: 73px 32.768px 68.864px;
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic {
    background-size: 564.48px auto;
  }
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic__inner {
    margin: 0 0 23px;
  }
}
.clinicBox .modContentClinic__title {
  font-size: 28px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 657px) {
  .clinicBox .modContentClinic__title {
    font-size: 4.375vw;
  }
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic__title {
    margin: 0 0 25px;
  }
}
.clinicBox .modContentClinic__list {
  justify-content: center;
}
.clinicBox .modContentClinic__list__item {
  display: inline-block;
  width: 21.875vw;
  margin: 0vw 0.625vw 0vw 0vw;
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic__list__item {
    width: 140px;
    margin: 0 4px 0 0;
  }
}
.clinicBox .modContentClinic__list__item:nth-child(n+4) {
  margin-top: 1.5625vw;
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic__list__item:nth-child(n+4) {
    margin-top: 10px;
  }
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic__list__item:nth-child(4n) {
    margin-right: 0;
  }
}
.clinicBox .modContentClinic__list__item .modBtn {
  font-size: 18px;
  height: 12.5vw;
}
@media screen and (max-width: 657px) {
  .clinicBox .modContentClinic__list__item .modBtn {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic__list__item .modBtn {
    height: 80px;
  }
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic__block {
    display: block;
  }
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic__block--half {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic__block--half .modContentClinic__inner {
    width: 50%;
  }
}
.clinicBox .modContentClinic__block--half .modContentClinic__list {
  justify-content: center;
}
@media screen and (min-width: 658px) {
  .clinicBox .modContentClinic__block--half .modContentClinic__list__item {
    width: calc(50% - 3px);
  }
}

.footer {
  padding: 5.40625vw 0vw 6.828125vw 0vw;
  position: relative;
}
@media screen and (min-width: 658px) {
  .footer {
    padding: 34.6px 0 43.7px;
  }
}
.footer__logo {
  text-align: center;
}
.footer__logo__icon {
  display: inline-block;
}
.footer__logo__icon img {
  width: 17.1875vw;
}
@media screen and (min-width: 658px) {
  .footer__logo__icon img {
    width: 110px;
  }
}
.footer__logo__text {
  font-weight: normal;
  font-size: 18px;
  margin: 4.375vw 0vw 15.625vw 0vw;
}
@media screen and (max-width: 657px) {
  .footer__logo__text {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .footer__logo__text {
    margin: 28px 0 100px;
  }
}
.footer__logo__text .emp {
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 657px) {
  .footer__logo__text .emp {
    font-size: 3.75vw;
  }
}
.footer .flex {
  font-size: 18px;
  justify-content: center;
  margin-top: 4.0625vw;
  margin-bottom: 4.0625vw;
}
@media screen and (max-width: 657px) {
  .footer .flex {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .footer .flex {
    margin-top: 26px;
    margin-bottom: 26px;
  }
}
.footer copyright {
  font-size: 17px;
  display: table;
  margin: 0 auto;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 657px) {
  .footer copyright {
    font-size: 2.65625vw;
  }
}

@keyframes textAnime {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes imgMove {
  0% {
    left: 0;
    opacity: 0;
    transform: translateY(0%) translateX(0) scale(0.5);
  }
  25% {
    left: -15px;
    opacity: 0.5;
  }
  50% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -15px;
    opacity: 0;
    transform: translateY(-450%) translateX(0) scale(1.2);
  }
}
@keyframes slideInUp2 {
  from {
    visibility: visible;
    transform: translate3d(0, 50px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp2 {
  animation-name: slideInUp2;
}
@keyframes slideInDown2 {
  from {
    visibility: visible;
    transform: translate3d(0, -50px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown2 {
  animation-name: slideInDown2;
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
@keyframes fadeInDown2 {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown2 {
  animation-name: fadeInDown2;
}

[data-animate=zoomIn],
[data-animate=bounceIn],
[data-animate=fadeInLeft],
[data-animate=fadeInRight],
[data-animate=fadeInUp],
[data-animate=fadeInUp2],
[data-animate=fadeInDown2],
[data-animate=slideInUp2],
[data-animate=slideInDown2] {
  opacity: 0;
}

[data-animate=zoomIn],
[data-animate=fadeInUp] {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.modSectionMovie {
  padding: 17.1875vw 0 8.125vw;
  text-align: center;
  background: rgba(198, 177, 131, 0.6);
}
@media screen and (min-width: 658px) {
  .modSectionMovie {
    padding: 110px 0 52px;
  }
}
.modSectionMovie .relative {
  width: 65.625vw;
  margin: 0 auto;
}
@media screen and (min-width: 658px) {
  .modSectionMovie .relative {
    width: 420px;
  }
}
.modSectionMovie .relative .title {
  position: absolute;
  top: 6.875vw;
  left: -9.375vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21.25vw;
  height: 8.125vw;
  color: #fff;
  background: var(--lightRizeGold);
  font-size: 26px;
}
@media screen and (max-width: 657px) {
  .modSectionMovie .relative .title {
    font-size: 4.0625vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionMovie .relative .title {
    top: 44px;
    left: -60px;
    width: 136px;
    height: 52px;
  }
}
.modSectionMovie .relative video {
  width: 100%;
}
.modSectionMovie .relative .circle {
  position: absolute;
  right: -9.375vw;
  bottom: 3.90625vw;
  width: 31.25vw;
  height: 31.25vw;
  background: url(../../img/bg_circle.png) center center no-repeat;
  background-size: 100% auto;
  animation: rotate 10s linear infinite;
}
@media screen and (min-width: 658px) {
  .modSectionMovie .relative .circle {
    right: -60px;
    bottom: 25px;
    width: 200px;
    height: 200px;
  }
}
.modSectionMovie .relative .button {
  position: absolute;
  right: 3.28125vw;
  bottom: 16.09375vw;
  width: 5.625vw;
}
@media screen and (min-width: 658px) {
  .modSectionMovie .relative .button {
    right: 21px;
    bottom: 103px;
    width: 36px;
  }
}
.modSectionMovie p {
  font-size: 22px;
  margin-top: 2.8125vw;
}
@media screen and (max-width: 657px) {
  .modSectionMovie p {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modSectionMovie p {
    margin-top: 18px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*03original*/
.modBtn--borderBlue {
  color: #86abc7;
  background: rgba(255, 255, 255, 0.44);
  border: 2px solid #86abc7;
}

.modBtn--pink {
  color: #fff;
  background: #ff857b;
}

.modBtn--iconToggle::after {
  background: url(https://www.rizeclinic.com/assets/img/common/icon_btn_toggle_gold.svg) no-repeat center center;
  background-size: 100% auto;
}

.modAccordion__head {
  text-align: center;
  background: linear-gradient(to right, #ff8f65, #f88cc6);
  font-size: 26px;
}
@media screen and (max-width: 657px) {
  .modAccordion__head {
    font-size: 4.0625vw;
  }
}

.section__reason .modAccordion__head {
  text-align: left;
}

.modAccordion__body {
  padding: 0;
}

.modAccordion__body > .modBtnWrap {
  padding: 0;
}

.section__feature .modAccordion__body {
  padding-bottom: 12.5vw;
  background: #e5f2ff;
}
@media screen and (min-width: 658px) {
  .section__feature .modAccordion__body {
    padding-bottom: 80px;
  }
}

.section__plans {
  padding-bottom: 12.5vw;
  background: #fdfded;
}
@media screen and (min-width: 658px) {
  .section__plans {
    padding-bottom: 80px;
  }
}

.allPayment .modListPayment--box > li .payment__title {
  color: #bfa163;
}

.parts .modBox--beige .modContentFree__list__item {
  background: rgba(146, 184, 213, 0.38);
}
.parts .modBox--beige .modContentFree__list__item .emp {
  color: #3c3939;
}

.area__bnr {
  margin: 12.5vw 3.125vw 0;
}
@media screen and (min-width: 658px) {
  .area__bnr {
    margin: 80px 20px 0;
  }
}

.area__caution {
  padding: 4.6875vw 3.125vw;
  margin: 12.5vw 3.125vw 0;
  background: rgba(185, 234, 245, 0.25);
}
@media screen and (min-width: 658px) {
  .area__caution {
    padding: 30px 20px;
    margin: 80px 20px 0;
  }
}

.intro {
  display: flex;
  flex-direction: column;
}
.intro img {
  width: 100%;
}

.info {
  display: flex;
  flex-direction: column;
}
.info img {
  width: 100%;
}

.feature {
  display: flex;
  flex-direction: column;
  margin-top: 14.0625vw;
}
@media screen and (min-width: 658px) {
  .feature {
    margin-top: 90px;
  }
}
.feature img {
  width: 100%;
}

.faq .faq__inner {
  padding: 0 3.125vw;
  margin-top: 14.0625vw;
}
@media screen and (min-width: 658px) {
  .faq .faq__inner {
    padding: 0 20px;
    margin-top: 90px;
  }
}
.faq .faq__block {
  padding: 0 3.125vw 6.25vw;
  border-bottom: solid 1px #beb8b6;
}
@media screen and (min-width: 658px) {
  .faq .faq__block {
    padding: 0 20px 40px;
  }
}
.faq .faq__block + .faq__block {
  margin-top: 10vw;
}
@media screen and (min-width: 658px) {
  .faq .faq__block + .faq__block {
    margin-top: 64px;
  }
}
.faq .faq__title {
  font-size: 26px;
  display: flex;
  gap: 2.5vw;
  align-items: center;
  font-weight: 700;
  line-height: 1.2;
  color: #e56294;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 657px) {
  .faq .faq__title {
    font-size: 4.0625vw;
  }
}
@media screen and (min-width: 658px) {
  .faq .faq__title {
    gap: 16px;
  }
}
.faq .faq__title::before {
  flex-shrink: 0;
  font-family: "FriendlyExpart";
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
  content: "Q";
  font-size: 40px;
}
@media screen and (max-width: 657px) {
  .faq .faq__title::before {
    font-size: 6.25vw;
  }
}
.faq .faq__body {
  font-size: 24px;
  display: flex;
  gap: 2.5vw;
  margin-top: 6.25vw;
  font-weight: 700;
  line-height: 1.7;
  color: #3c3939;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 657px) {
  .faq .faq__body {
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 658px) {
  .faq .faq__body {
    gap: 16px;
    margin-top: 40px;
  }
}
.faq .faq__body::before {
  flex-shrink: 0;
  font-family: "FriendlyExpart";
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
  content: "A";
  font-size: 40px;
}
@media screen and (max-width: 657px) {
  .faq .faq__body::before {
    font-size: 6.25vw;
  }
}
.faq .faq__subscript {
  font-weight: 400;
}

.movie {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}