@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

input:focus {
  outline: none;
}

input::-ms-clear {
  visibility: hidden;
}

textarea {
  overflow: auto;
}

hr {
  margin: 0;
  border: none;
}

option {
  padding: 0;
}

input[type=submit],
button {
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}

@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));
}

/* 汎用モジュール
========================================================*/
.modBpPc {
  display: block;
}
@media screen and (max-width: 657px) {
  .modBpPc {
    display: none;
  }
}
.modBpPc--inline {
  display: inline;
}
@media screen and (max-width: 657px) {
  .modBpPc--inline {
    display: none;
  }
}
.modBpSp {
  display: none;
}
@media screen and (max-width: 657px) {
  .modBpSp {
    display: block;
  }
}
.modBpSp--inline {
  display: none;
}
@media screen and (max-width: 657px) {
  .modBpSp--inline {
    display: inline;
  }
}

.modBtn {
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 657px) {
  .modBtn {
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 658px) {
  .modBtn {
    width: 324px;
    padding: 23px 0;
    border-radius: 40px;
  }
}
@media screen and (max-width: 657px) {
  .modBtn {
    width: 100%;
    padding: 6.92vw 0;
    border-radius: 10vw;
  }
}
.modBtn--secondary {
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modBtn--secondary {
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 658px) {
  .modBtn--secondary {
    width: 275px;
    padding: 14px 0;
  }
}
@media screen and (max-width: 657px) {
  .modBtn--secondary {
    width: 100%;
    padding: 2.8125vw 0vw 2.8125vw 0vw;
  }
}
.modBtn::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: transparent;
  border-radius: 40px;
  opacity: 0.2;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.modBtn::after {
  /*background: url(https://www.rizeclinic.com/assets/img/common/icon_btn_arrow.svg) no-repeat center center;
  background-size: 100% auto;*/
  position: absolute;
  top: 50%;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 658px) {
  .modBtn::after {
    right: 20px;
    width: 18px;
    height: 3px;
  }
}
@media screen and (max-width: 657px) {
  .modBtn::after {
    right: 3.125vw;
    width: 5vw;
    height: 0.9375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBtn:hover {
    opacity: 1;
  }
  .modBtn:hover::before {
    background: #fff;
  }
  .modBtn:hover::after {
    right: 20px;
    animation: arrow 0.4s;
  }
}
@keyframes arrow {
  50% {
    right: 15px;
  }
  100% {
    right: 20px;
  }
}
.modBtn--gray {
  color: var(--white);
  background: var(--gray);
}
.modBtn--gold {
  color: var(--white);
  background: var(--lightRizeGold);
}
.modBtn--gold.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;
}
@media screen and (max-width: 657px) {
  .modBtn--gold.modBtn--iconToggle::after {
    background: url(https://www.rizeclinic.com/assets/img/common/icon_btn_toggle_gold_sp.svg) no-repeat center center;
    background-size: 100% auto;
  }
}
.modBtn--white {
  color: var(--gray);
  background: var(--white);
}
.modBtn--primary {
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--green);
}
.modBtn--primary::after {
  background: url(https://www.rizeclinic.com/assets/img/common/icon_btn_arrow_green.svg) no-repeat center center;
  background-size: 100% auto;
}
.modBtn--green {
  color: var(--white);
  background: var(--green);
}
.modBtn--iconBack::after {
  background: url(https://www.rizeclinic.com/assets/img/common/icon_btn_arrow_back.svg) no-repeat center center;
  background-size: 100% auto;
  fill: #ff4500;
}
@media screen and (min-width: 658px) {
  .modBtn--iconBack::after {
    right: auto;
    left: 20px;
  }
}
@media screen and (max-width: 657px) {
  .modBtn--iconBack::after {
    right: auto;
    left: 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .modBtn--iconBack:hover::after {
    left: 20px;
    animation: arrow_back 0.4s;
  }
}
@keyframes arrow_back {
  50% {
    left: 15px;
  }
  100% {
    left: 20px;
  }
}
@media screen and (min-width: 658px) {
  .modBtn--iconToggle:hover::after {
    animation: none;
  }
}
.modBtn--iconToggle::after {
  position: absolute;
  top: 50%;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/common/icon_btn_toggle.svg) no-repeat center center;
  background-size: 100% auto;
  transform: translateY(-50%);
}
@media screen and (min-width: 658px) {
  .modBtn--iconToggle::after {
    right: 20px;
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 657px) {
  .modBtn--iconToggle::after {
    right: 3.125vw;
    width: 7.8125vw;
    height: 7.8125vw;
  }
}
.modBtn--reserve {
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modBtn--reserve {
    font-size: 3.75vw;
  }
}
.modBtn--reserve .icon {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: -4px 10px 0 0;
  vertical-align: middle;
  background: url(https://www.rizeclinic.com/assets/img/common/icon_calendar.svg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (max-width: 657px) {
  .modBtn--reserve .icon {
    margin: -0.625vw 1.5625vw 0vw 0vw;
    width: 3.4375vw;
    height: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBtnWrap {
    margin: 58px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modBtnWrap {
    margin: 8.2vw 5.13vw 0;
  }
}
@media screen and (min-width: 658px) {
  .modBtnWrap + .modBtnWrap {
    margin-top: 38px;
  }
}
@media screen and (max-width: 657px) {
  .modBtnWrap + .modBtnWrap {
    margin-top: 8vw;
  }
}
.modBtnWrap--center {
  text-align: center;
}
@media screen and (min-width: 658px) {
  .modBtnWrap--top {
    margin-top: 70px;
  }
}
@media screen and (max-width: 657px) {
  .modBtnWrap--top {
    margin-top: 6vw;
  }
}

.modTextLead {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 657px) {
  .modTextLead {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modTextLead {
    margin: 32px 0 0;
    line-height: 3.0625;
  }
}
@media screen and (max-width: 657px) {
  .modTextLead {
    margin: 9.375vw 0vw 0vw 0vw;
    line-height: 2.6363636364;
  }
  .modTextLead--spLeft {
    text-align: left;
    padding: 0vw 5.46875vw 0vw 5.46875vw;
  }
}
.modTextLead__item {
  color: var(--lightRizeGold);
  text-align: left;
}
@media screen and (max-width: 657px) {
  .modTextLead__item {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modTextLead__item {
    width: 280px;
    margin: 20px auto 23px;
  }
}
@media screen and (max-width: 657px) {
  .modTextLead__item {
    width: 60%;
    margin: 3.59375vw auto 3.90625vw auto;
  }
}
.modTextLead__item__emp {
  color: var(--orange);
}

.modLinkThumb {
  display: flex;
  justify-content: center;
  transition-timing-function: linear;
}
@media screen and (max-width: 657px) {
  .modLinkThumb {
    height: 43.75vw;
  }
}
.modLinkThumb__item {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--white);
}
@media screen and (min-width: 658px) {
  .modLinkThumb__item {
    width: 248px !important;
    height: 191px;
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
  .modLinkThumb__item:nth-child(n+2) {
    margin: 0 0 0 20px;
  }
}
@media screen and (max-width: 657px) {
  .modLinkThumb__item {
    width: 55.38vw !important;
    border-radius: 3vw;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
  }
}
.modLinkThumb__item > a {
  display: block;
  width: 100%;
  height: 100%;
}
.modLinkThumb__item > a:hover img {
  transition: 1s all;
  transform: scale(1.2, 1.2);
}
@media screen and (min-width: 658px) {
  .modLinkThumb__item picture {
    height: 137px;
  }
}
.modLinkThumb__item img {
  font-family: "object-fit: cover";
  -o-object-fit: cover;
  object-fit: cover;
  transition: 1s all;
}
.modLinkThumb__item__title {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: bold;
  background: #fff;
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modLinkThumb__item__title {
    font-size: 3.28125vw;
  }
}
@media screen and (min-width: 658px) {
  .modLinkThumb__item__title {
    height: 55px;
    padding: 12px 10px 12px 40px;
  }
}
@media screen and (max-width: 657px) {
  .modLinkThumb__item__title {
    height: 16.92vw;
    padding: 3.07vw 2.56vw 3.07vw 10.25vw;
  }
}
.modLinkThumb__item__title::before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/common/icon_smile.svg) no-repeat center center;
  background-size: 100% auto;
  transform: translateY(-50%);
}
@media screen and (min-width: 658px) {
  .modLinkThumb__item__title::before {
    left: 17px;
    width: 16px;
    height: 9px;
  }
}
@media screen and (max-width: 657px) {
  .modLinkThumb__item__title::before {
    left: 6.25vw;
    width: 5.78125vw;
    height: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modLinkThumb--noSwiper .modLinkThumb__item {
    width: 288px !important;
    height: 294px !important;
  }
  .modLinkThumb--noSwiper .modLinkThumb__item:nth-child(n+2) {
    margin: 0 0 0 50px;
  }
  .modLinkThumb--noSwiper .modLinkThumb__item__img {
    width: 100%;
    height: 188px;
  }
  .modLinkThumb--noSwiper .modLinkThumb__item__img img {
    width: 100%;
    height: 188px;
  }
  .modLinkThumb--noSwiper .modLinkThumb__item__title {
    padding: 0 10px 18px 40px;
    font-size: 16px;
  }
  .modLinkThumb--noSwiper .modLinkThumb__item__title::before {
    top: calc(50% - 10px);
    left: 22px;
    width: 19px;
    height: 10px;
  }
}
@media screen and (max-width: 657px) {
  .modLinkThumb--noSwiper {
    display: block;
    height: auto;
  }
  .modLinkThumb--noSwiper .modLinkThumb__item {
    width: 100% !important;
    margin: 0 auto;
  }
  .modLinkThumb--noSwiper .modLinkThumb__item:nth-child(n+2) {
    margin: 9.0625vw auto 0vw auto;
  }
}
@media screen and (max-width: 657px) and (max-width: 657px) {
  .modLinkThumb--noSwiper .modLinkThumb__item__title {
    font-size: 4.375vw;
  }
}
@media screen and (max-width: 657px) {
  .modLinkThumb--noSwiper .modLinkThumb__item__img img {
    height: 62.5vw;
  }
}
@media screen and (min-width: 658px) {
  .modLinkThumb--noSwiper .modLinkThumb__item {
    height: 226px;
    padding-top: 35px;
  }
}
@media screen and (max-width: 657px) {
  .modLinkThumb--noSwiper .modLinkThumb__item {
    padding: 7.96875vw 0vw 0vw 0vw;
  }
}
.modLinkChatbot {
  position: absolute;
  transition: none;
}
@media screen and (min-width: 658px) {
  .modLinkChatbot {
    margin-top: 0;
  }
}
@media screen and (max-width: 657px) {
  .modLinkChatbot {
    margin-top: -1.5625vw;
  }
}
@media screen and (min-width: 658px) {
  .modLinkChatbot img {
    width: 136px;
    height: 136px;
  }
}
@media screen and (max-width: 657px) {
  .modLinkChatbot img {
    width: 36.1vw;
    height: 33.3vw;
  }
}

.modBreadcrumbs {
  display: flex;
  color: var(--white);
  background: var(--lightRizeGold);
  font-size: 12px;
}
@media screen and (max-width: 657px) {
  .modBreadcrumbs {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .modBreadcrumbs {
    padding: 20px 40px;
    margin: 115px 0 0;
    border-radius: 0 60px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modBreadcrumbs {
    flex-wrap: wrap;
    padding: 4.1vw 2.56vw;
    margin: 17.94vw 0 0;
    border-radius: 0 7vw 0 0;
  }
}
.modBreadcrumbs li:nth-child(n+2) {
  position: relative;
}
@media screen and (min-width: 658px) {
  .modBreadcrumbs li:nth-child(n+2) {
    padding: 0 0 0 12px;
    margin: 0 0 0 10px;
  }
}
@media screen and (max-width: 657px) {
  .modBreadcrumbs li:nth-child(n+2) {
    margin: 0vw 0vw 0vw 1.5625vw;
    padding: 0vw 0vw 0vw 2.34375vw;
  }
}
.modBreadcrumbs li:nth-child(n+2)::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "/";
}

.modSection {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.modSection__inner {
  margin: 0 auto;
  background: var(--lightGoldGray);
}
@media screen and (min-width: 658px) {
  .modSection__inner {
    padding: 60px 70px 75px;
    border-radius: 0 50px 0 0;
    box-shadow: 0 0 20px rgba(242, 228, 194, 0.8);
  }
}
@media screen and (max-width: 657px) {
  .modSection__inner {
    padding: 7.65625vw 0vw 7.65625vw 0vw;
    box-shadow: 0 0 3.12vw rgba(242, 228, 194, 0.8);
    border-radius: 0 7.8vw 0 0;
  }
}
.modSection__title {
  text-align: center;
}
@media screen and (min-width: 658px) {
  .modSection__title {
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 657px) {
  .modSection__title {
    margin: 0 0 8.97vw;
  }
}
@media screen and (min-width: 658px) {
  .modSection__title--large {
    margin: 0 0 120px;
  }
}
@media screen and (max-width: 657px) {
  .modSection__title--large {
    margin: 0vw 0vw 21.5625vw 0vw;
  }
}
.modSection__title__main {
  font-weight: bold;
  color: var(--lightRizeGold);
  opacity: 0;
  font-size: 26px;
  letter-spacing: 0.2em;
  line-height: 1.3461538462;
}
@media screen and (max-width: 657px) {
  .modSection__title__main {
    font-size: 5.3125vw;
  }
}
.modSection__title__main span {
  display: inline-block;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateY(40px);
}
.modSection__title__main.is-act {
  opacity: 1;
}
.modSection__title__main.is-act span {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 657px) {
  .modSection__title__main--narrow {
    letter-spacing: 0.2em;
  }
}
.modSection__title__sub {
  display: block;
  font-family: "FriendlyExpart";
  color: var(--orange);
  opacity: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.1666666667;
}
@media screen and (max-width: 657px) {
  .modSection__title__sub {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 658px) {
  .modSection__title__sub {
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modSection__title__sub {
    margin: 1.5625vw 0vw 0vw 0vw;
  }
}
.modSection__title__sub span {
  display: inline-block;
  filter: blur(10px);
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateY(0);
}
.modSection__title__sub.is-act {
  opacity: 1;
}
.modSection__title__sub.is-act span {
  filter: blur(0);
  opacity: 1;
  transform: scale(1) translateY(0);
}
.modSection__title__note {
  color: #88837f;
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modSection__title__note {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .modSection__title__note {
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modSection__title__note {
    margin: 5px 0 0;
  }
}
.modSection__subTitle {
  position: relative;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.3em;
  font-size: 28px;
}
@media screen and (max-width: 657px) {
  .modSection__subTitle {
    font-size: 5.3125vw;
  }
}
@media screen and (min-width: 658px) {
  .modSection__subTitle {
    padding-left: 1em;
    line-height: 2;
    text-indent: -1em;
  }
}
@media screen and (max-width: 657px) {
  .modSection__subTitle {
    line-height: 2.2;
  }
}
.modSection__subTitle .dot {
  position: relative;
}
.modSection__subTitle .dot::before {
  position: absolute;
  top: -3px;
  left: 50%;
  display: block;
  content: "";
  background: var(--orange);
  border-radius: 100%;
}
@media screen and (min-width: 658px) {
  .modSection__subTitle .dot::before {
    width: 4px;
    height: 4px;
  }
}
@media screen and (max-width: 657px) {
  .modSection__subTitle .dot::before {
    width: 0.9375vw;
    height: 0.9375vw;
  }
}
@media screen and (min-width: 658px) {
  .modSection__subTitle--smile {
    width: 400px;
    padding-left: 0;
    margin: 0 auto;
    text-indent: 0;
  }
}
@media screen and (max-width: 657px) {
  .modSection__subTitle--smile {
    padding: 0vw 8.28125vw 0vw 8.28125vw;
  }
}
.modSection__subTitle--min {
  letter-spacing: 0.2em;
}
.modSection__lead {
  font-weight: bold;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.3em;
  line-height: 1.8928571429;
}
@media screen and (max-width: 657px) {
  .modSection__lead {
    font-size: 5.3125vw;
  }
}
@media screen and (max-width: 657px) {
  .modSection__lead {
    letter-spacing: 0.15em;
  }
}
@media screen and (min-width: 658px) {
  .modSection__lead--mb {
    margin: 0 0 102px;
  }
}
@media screen and (max-width: 657px) {
  .modSection__lead--mb {
    margin: 0vw 0vw 15.625vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modSection__lead--top {
    margin: 0 0 200px;
  }
}
@media screen and (max-width: 657px) {
  .modSection__lead--top {
    margin: 0vw 0vw 28.125vw 0vw;
  }
}
.modSection .num {
  font-family: "FriendlyExpart";
}
@media screen and (max-width: 657px) {
  .modSection .modBtnWrap {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 658px) {
  .modSection--top {
    margin-top: 180px;
  }
}
@media screen and (max-width: 657px) {
  .modSection--top {
    margin: 17.1875vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modSection--mid {
    margin-top: 90px;
  }
}
@media screen and (max-width: 657px) {
  .modSection--mid {
    margin: 13.28125vw 0vw 0vw 0vw;
  }
}

.modBox {
  display: block;
}
@media screen and (min-width: 658px) {
  .modBox {
    border-radius: 24px;
  }
}
@media screen and (max-width: 657px) {
  .modBox {
    border-radius: 3.75vw;
  }
}
.modBox .title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.modBox .title--large {
  color: var(--lightRizeGold);
  font-size: 26px;
}
@media screen and (max-width: 657px) {
  .modBox .title--large {
    font-size: 5vw;
  }
}
.modBox .title--large strong {
  color: var(--orange);
}
@media screen and (min-width: 658px) {
  .modBox .title--large {
    letter-spacing: 0.3em;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modBox .title--large {
    padding: 6.25vw 0vw 0vw 0vw;
  }
}
.modBox--white {
  background: var(--white);
}
@media screen and (min-width: 658px) {
  .modBox--white {
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
}
@media screen and (max-width: 657px) {
  .modBox--white {
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
  }
}
.modBox--white .title {
  color: var(--lightRizeGold);
}
.modBox--white .title__emp {
  color: var(--orange);
}
.modBox--beige {
  background: var(--lightGoldGray);
}
@media screen and (min-width: 658px) {
  .modBox--beige {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
  }
}
@media screen and (max-width: 657px) {
  .modBox--beige {
    box-shadow: 0 0 3.75vw rgba(0, 0, 0, 0.16);
  }
}
.modBox--gray {
  position: relative;
  color: var(--white);
  background: var(--gray);
}
@media screen and (min-width: 658px) {
  .modBox--gray {
    max-width: 960px;
    padding: 40px 20px 38px;
    margin: 111px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray {
    margin: 22.65625vw 5.625vw 0vw 5.625vw;
    padding: 7.8125vw 5.15625vw 7.8125vw 5.15625vw;
    border-radius: 3.75vw;
  }
}
.modBox--gray .title {
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 657px) {
  .modBox--gray .title {
    font-size: 5vw;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .title {
    line-height: 1.4375;
    letter-spacing: -0.02em;
  }
}
.modBox--gray .title .emp {
  color: var(--orange);
}
.modBox--gray .text {
  z-index: 1;
  font-weight: bold;
}
@media screen and (min-width: 658px) {
  .modBox--gray .text {
    padding: 0 60px;
    margin: 22px 0 0;
    line-height: 2;
    font-size: 16px;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .text {
    margin: 7.8125vw 0vw 0vw 0vw;
    line-height: 1.9;
  }
}
@media screen and (max-width: 657px) and (max-width: 657px) {
  .modBox--gray .text {
    font-size: 3.4375vw;
  }
}
.modBox--gray .text .small {
  font-weight: normal;
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modBox--gray .text .small {
    font-size: 2.8125vw;
  }
}
.modBox--gray .text--after {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 658px) {
  .modBox--gray .text--after {
    padding: 0 20px;
    margin: 30px 0 0;
  }
}
.modBox--gray .text--after::before {
  position: absolute;
  right: 0;
  z-index: 0;
  display: block;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/plans/text_after.svg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (min-width: 658px) {
  .modBox--gray .text--after::before {
    top: 5px;
    width: 122px;
    height: 80px;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .text--after::before {
    top: 1.5625vw;
    width: 38%;
    padding: 23% 0 0;
  }
}
@media screen and (min-width: 658px) {
  .modBox--gray .text--wide {
    padding: 0 30px;
  }
}
.modBox--gray .modBtnWrap {
  z-index: 1;
}
@media screen and (min-width: 658px) {
  .modBox--gray .modBtnWrap {
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .modBtnWrap {
    margin: 7.5vw 0vw 0vw 0vw;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .modBtnWrap .modBtn {
    padding: 2.8125vw 0vw 2.8125vw 0vw;
  }
}
.modBox--gray .bgText {
  position: absolute;
  z-index: 0;
  display: block;
}
@media screen and (min-width: 658px) {
  .modBox--gray .bgText {
    right: 60px;
    bottom: 90px;
    width: 153px;
    height: 82px;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .bgText {
    right: -2.34375vw;
    bottom: 18.75vw;
    width: 34.375vw;
    height: 17.1875vw;
  }
}
@media screen and (min-width: 658px) {
  .modBox--gray .bgText--professional {
    right: 17px;
    bottom: 72px;
    width: 206px;
    height: 111px;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .bgText--professional {
    display: none;
  }
}
.modBox--gray .subtitle {
  color: var(--orange);
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 657px) {
  .modBox--gray .subtitle {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBox--gray .subtitle {
    margin: 38px 0 16px;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .subtitle {
    margin: 5.9375vw 0vw 2.5vw 0vw;
  }
}
.modBox--gray .courseList {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 658px) {
  .modBox--gray .courseList {
    justify-content: center;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .courseList {
    position: relative;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0vw -5.15625vw 0vw 0vw;
    padding: 0vw 5.15625vw 0vw 0vw;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .courseList__cont {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
.modBox--gray .courseList__item {
  color: var(--gray);
  text-align: center;
  background: var(--white);
}
@media screen and (min-width: 658px) {
  .modBox--gray .courseList__item {
    width: 155px;
    padding: 5px 12px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .courseList__item {
    width: 31.25vw;
    height: 28.125vw;
    border-radius: 1.5625vw;
    padding: 0.78125vw 4.375vw 0.78125vw 4.375vw;
  }
}
.modBox--gray .courseList__item__parts {
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 657px) {
  .modBox--gray .courseList__item__parts {
    font-size: 2.8125vw;
  }
}
.modBox--gray .courseList__item__img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lightGoldGray);
}
@media screen and (min-width: 658px) {
  .modBox--gray .courseList__item__img {
    width: 78px;
    height: 78px;
    margin: -3px auto;
    border-radius: 10px;
  }
  .modBox--gray .courseList__item__img img {
    width: 78px;
    max-height: 78px;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .courseList__item__img {
    width: 15.625vw;
    height: 15.625vw;
    margin: 0 auto;
    border-radius: 1.5625vw;
  }
  .modBox--gray .courseList__item__img img {
    width: 15.625vw;
    max-height: 15.625vw;
  }
}
.modBox--gray .courseList__item__price {
  font-size: 8px;
}
@media screen and (max-width: 657px) {
  .modBox--gray .courseList__item__price {
    font-size: 1.71875vw;
  }
}
.modBox--gray .courseList__item__price .num {
  font-family: "FriendlyExpart";
  font-weight: normal;
  font-size: 13px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 657px) {
  .modBox--gray .courseList__item__price .num {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .modBox--gray .courseList__item__price .num {
    margin-right: 3px;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .courseList__item__price .num {
    margin-right: 0.46875vw;
  }
}
@media screen and (min-width: 658px) {
  .modBox--gray .courseList__item:nth-child(n+2) {
    margin: 0 0 0 13px;
  }
}
@media screen and (max-width: 657px) {
  .modBox--gray .courseList__item:nth-child(n+2) {
    margin: 0vw 0vw 0vw 2.03125vw;
  }
}
@media screen and (min-width: 658px) {
  .modBox__tryList {
    display: flex;
    flex-wrap: wrap;
    margin: 60px 0 33px -45px;
  }
}
@media screen and (max-width: 657px) {
  .modBox__tryList {
    margin: 6.25vw 0vw 0vw 0vw;
  }
}
.modBox__tryList__item {
  color: var(--white);
  background: var(--gray);
}
@media screen and (min-width: 658px) {
  .modBox__tryList__item {
    display: flex;
    flex-direction: column;
    width: calc(33.3333333333% - 45px);
    padding: 30px 30px 38px;
    margin: 80px 0 0 45px;
    border-radius: 24px;
  }
  .modBox__tryList__item:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 657px) {
  .modBox__tryList__item {
    margin: 2.8125vw 0vw 0vw 0vw;
    padding: 1.25vw 3.90625vw 4.21875vw 3.90625vw;
    border-radius: 2.1875vw;
  }
  .modBox__tryList__item:first-child {
    margin-top: 0;
  }
}
.modBox__tryList__item .title {
  font-weight: bold;
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 657px) {
  .modBox__tryList__item .title {
    font-size: 4.375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBox__tryList__item .title {
    margin: 0 0 5px;
  }
}
@media screen and (max-width: 657px) {
  .modBox__tryList__item .title {
    margin: 0vw 0vw 0.78125vw 0vw;
  }
}
.modBox__tryList__item .title strong {
  color: var(--orange);
  font-size: 34px;
}
@media screen and (max-width: 657px) {
  .modBox__tryList__item .title strong {
    font-size: 9.375vw;
  }
}
.modBox__tryList__item .text {
  font-weight: bold;
  font-size: 15px;
}
@media screen and (max-width: 657px) {
  .modBox__tryList__item .text {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBox__tryList__item .text {
    margin: 0 0 18px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 657px) {
  .modBox__tryList__item .text {
    margin: 0vw 0vw 0.9375vw 0vw;
    line-height: 1.8;
  }
}
@media screen and (max-width: 657px) {
  .modBox__tryList__item .noteText {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBox__tryList__item .noteText {
    margin-top: auto;
  }
}
.modBox--balloon {
  margin-top: 72px;
}
@media screen and (max-width: 657px) {
  .modBox--balloon {
    margin-top: 40px;
    margin: 17.1875vw 5.3125vw 0vw 5.3125vw;
  }
}
.modBox--balloon::before {
  position: absolute;
  top: -15px;
  left: calc(50% - 15px);
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent transparent var(--gray) transparent;
  border-style: solid;
  border-width: 0 15.5px 26px 15.5px;
}
@media screen and (max-width: 657px) {
  .modBox--balloon::before {
    top: -4vw;
    left: calc(50% - 2.34375vw);
    border-width: 0 2.421875vw 4.0625vw 2.421875vw;
  }
}

.modListTopic__item {
  text-align: center;
  background: var(--white);
}
@media screen and (min-width: 658px) {
  .modListTopic__item {
    width: 192px !important;
    height: 140px;
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
}
@media screen and (max-width: 657px) {
  .modListTopic__item {
    width: 35.89vw !important;
    height: 25.64vw;
    border-radius: 1.8vw;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
  }
}
.modListTopic__item img {
  font-family: "object-fit: cover";
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 658px) {
  .modListTopic__item__inner {
    padding: 12px 10px;
  }
}
@media screen and (max-width: 657px) {
  .modListTopic__item__inner {
    padding: 1.79vw 2.05vw;
  }
}
.modListTopic__item__inner dt {
  color: var(--white);
  font-size: 14px;
  background: linear-gradient(to right, #F7B837 0%, #B59751 100%);
}
@media screen and (max-width: 657px) {
  .modListTopic__item__inner dt {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .modListTopic__item__inner dt {
    padding: 3px 5px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 657px) {
  .modListTopic__item__inner dt {
    padding: 0.25vw 1.28vw;
    border-radius: 1.875vw;
  }
}
.modListTopic__item__inner dd {
  display: table-cell;
  align-items: center;
  vertical-align: middle;
}
@media screen and (min-width: 658px) {
  .modListTopic__item__inner dd {
    width: 172px;
    height: 84px;
  }
}
@media screen and (max-width: 657px) {
  .modListTopic__item__inner dd {
    width: 35.89vw;
    height: 16.15vw;
  }
}
.modListTopic__item__inner dd .time {
  font-weight: lighter;
  font-size: 13px;
}
@media screen and (max-width: 657px) {
  .modListTopic__item__inner dd .time {
    font-size: 2.5vw;
  }
}
.modListTopic__item__inner dd .text {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 657px) {
  .modListTopic__item__inner dd .text {
    font-size: 4.375vw;
  }
}
.modListColumn {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 658px) {
  .modListColumn {
    padding: 0 75px;
    margin: 0 0 0 -20px;
  }
}
@media screen and (max-width: 657px) {
  .modListColumn {
    margin: 0vw 0vw 0vw -2.34375vw;
  }
}
.modListColumn--center {
  justify-content: center;
}
.modListColumn__item {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--white);
}
@media screen and (min-width: 658px) {
  .modListColumn__item {
    width: calc(25% - 20px);
    margin: 20px 0 0 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(227, 216, 189, 0.2);
  }
  .modListColumn__item:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 657px) {
  .modListColumn__item {
    width: calc(50% - 2.34375vw);
    border-radius: 2.4vw;
    margin: 3.59375vw 0vw 0vw 2.34375vw;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.2);
  }
  .modListColumn__item:nth-child(-n+2) {
    margin-top: 0;
  }
}
.modListColumn__item > a {
  display: block;
  height: 100%;
}
.modListColumn__item > a:hover img {
  transition: 1s all;
  transform: scale(1.2, 1.2);
}
.modListColumn__item .picture {
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 658px) {
  .modListColumn__item .picture {
    height: 137px;
  }
}
@media screen and (max-width: 657px) {
  .modListColumn__item .picture {
    height: 31.25vw;
  }
}
.modListColumn__item img {
  font-family: "object-fit: cover";
  -o-object-fit: cover;
  object-fit: cover;
  transition: 1s all;
}
.modListColumn__item__title {
  position: relative;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, Arial, Helvetica, Verdana, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
  font-weight: bold;
  background: #fff;
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modListColumn__item__title {
    font-size: 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .modListColumn__item__title {
    min-height: 70px;
    padding: 12px 10px 12px 40px;
  }
}
@media screen and (max-width: 657px) {
  .modListColumn__item__title {
    height: calc(100% - 31.25vw);
    padding: 0vw 3.125vw 0vw 10.15625vw;
    line-height: 1.8;
  }
  .modListColumn__item__title .inner {
    display: block;
  }
}
.modListColumn__item__title::before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/common/icon_book.svg) no-repeat center center;
  background-size: 100% auto;
  transform: translateY(-50%);
}
@media screen and (min-width: 658px) {
  .modListColumn__item__title::before {
    left: 17px;
    width: 14px;
    height: 10px;
  }
}
@media screen and (max-width: 657px) {
  .modListColumn__item__title::before {
    left: 3.90625vw;
    width: 3.125vw;
    height: 2.34375vw;
  }
}
.modListColumn.swiper-wrapper {
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 658px) {
  .modListColumn.swiper-wrapper {
    height: 208px;
  }
}
@media screen and (max-width: 657px) {
  .modListColumn.swiper-wrapper {
    height: 48.71vw;
  }
}
.modListColumn.swiper-wrapper .modListColumn__item {
  margin: 0;
}
@media screen and (min-width: 658px) {
  .modListColumn.swiper-wrapper .modListColumn__item {
    width: 248px !important;
  }
}
@media screen and (max-width: 657px) {
  .modListColumn.swiper-wrapper .modListColumn__item {
    width: 56.41vw !important;
  }
}
@media screen and (max-width: 657px) {
  .modListFaq {
    padding: 1.28vw 0 0;
  }
}
.modListFaq__item {
  border-bottom: 1px solid var(--lightRizeGold);
}
@media screen and (min-width: 658px) {
  .modListFaq__item {
    padding: 25px 0;
  }
}
@media screen and (max-width: 657px) {
  .modListFaq__item {
    padding: 5.12vw 0;
  }
}
.modListFaq__item:last-child {
  border-bottom: none;
}
.modListFaq__item .mark {
  display: inline-block;
  font-family: "FriendlyExpart";
  line-height: 1;
  vertical-align: middle;
  font-size: 56px;
}
@media screen and (max-width: 657px) {
  .modListFaq__item .mark {
    font-size: 9.6875vw;
  }
}
@media screen and (min-width: 658px) {
  .modListFaq__item .mark {
    width: 63px;
  }
}
@media screen and (max-width: 657px) {
  .modListFaq__item .mark {
    width: 10vw;
  }
}
.modListFaq__item .text {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 658px) {
  .modListFaq__item .text {
    width: calc(100% - 63px);
    margin-top: -3px;
  }
}
@media screen and (max-width: 657px) {
  .modListFaq__item .text {
    width: calc(100% - 10vw);
    margin-top: -0.46875vw;
    line-height: 1.6363636364;
  }
}
.modListFaq__item .wrapA {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 657px) {
  .modListFaq__item .wrapA {
    align-items: flex-start;
  }
}
.modListFaq__item__f {
  display: flex;
  align-items: center;
  color: var(--orange);
  font-size: 18px;
}
@media screen and (max-width: 657px) {
  .modListFaq__item__f {
    font-size: 3.4375vw;
  }
}
.modListFaq__item__f .text {
  font-weight: bold;
}
.modListFaq__item__a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 657px) {
  .modListFaq__item__a {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modListFaq__item__a {
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modListFaq__item__a {
    margin: 2.5vw 0 0;
  }
}
.modListFaq__item .caution {
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modListFaq__item .caution {
    font-size: 2.8125vw;
  }
}
@media screen and (max-width: 657px) {
  .modListNews {
    padding: 0 5.12vw;
  }
}
.modListNews__item {
  background: var(--white);
}
@media screen and (min-width: 658px) {
  .modListNews__item {
    border-radius: 24px;
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
}
@media screen and (max-width: 657px) {
  .modListNews__item {
    border-radius: 3.75vw;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
  }
}
.modListNews__item a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 658px) {
  .modListNews__item a {
    padding: 28px 48px 28px;
  }
}
@media screen and (max-width: 657px) {
  .modListNews__item a {
    padding: 4.1vw 6.41vw 4.1vw;
  }
}
.modListNews__item:nth-child(n+2) {
  margin: 20px 0 0;
}
.modListNews__item__head::before {
  display: inline-block;
  vertical-align: 0;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/common/icon_likes.svg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (min-width: 658px) {
  .modListNews__item__head::before {
    width: 16px;
    height: 14px;
    margin: 0 10px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modListNews__item__head::before {
    width: 2.3vw;
    height: 2.05vw;
    margin: 0 2.3vw 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modListNews__item__head .time {
    font-size: 3.4375vw;
  }
}
.modListNews__item__head .new {
  display: inline-block;
  font-family: "FriendlyExpart";
  color: var(--orange);
  vertical-align: 0;
  font-size: 18px;
}
@media screen and (max-width: 657px) {
  .modListNews__item__head .new {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modListNews__item__head .new {
    margin: 0 0 0 10px;
  }
}
@media screen and (max-width: 657px) {
  .modListNews__item__head .new {
    margin: 0 0 0 1.28vw;
  }
}
.modListNews__item__title {
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 657px) {
  .modListNews__item__title {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modListNews__item__title {
    margin: 6px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modListNews__item__title {
    margin: 1.02vw 0 0;
  }
}
@media screen and (min-width: 658px) {
  .modListCard {
    display: flex;
    justify-content: space-between;
  }
}
.modListCard__item {
  position: relative;
  will-change: transform;
}
@media screen and (min-width: 658px) {
  .modListCard__item {
    width: calc(33.3333333333% - 30px);
  }
}
@media screen and (max-width: 657px) {
  .modListCard__item:nth-child(n+2) {
    margin: 7.8125vw 0vw 0vw 0vw;
  }
}
.modListCard__item__inner {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 658px) {
  .modListCard__item__inner {
    height: 458px;
    padding: 65px 30px 61px;
    border-radius: 24px;
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
}
@media screen and (max-width: 657px) {
  .modListCard__item__inner {
    padding: 8.59375vw 7.8125vw 8.59375vw 7.8125vw;
    height: 92.1875vw;
    border-radius: 3.75vw;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
  }
}
.modListCard__item__inner--front {
  position: relative;
  display: block;
  background: var(--white);
  opacity: 1;
}
@media screen and (max-width: 657px) {
  .modListCard__item__inner--front {
    padding: 8.59375vw 7.8125vw 8.59375vw 7.8125vw;
  }
}
.modListCard__item__inner--front.is-show {
  z-index: -1 !important;
}
.modListCard__item__inner--reverse {
  background: var(--gray);
  opacity: 0;
}
@media screen and (max-width: 657px) {
  .modListCard__item__inner--reverse {
    padding: 7.8125vw 6.25vw 7.8125vw 6.25vw;
  }
}
.modListCard__item__inner--reverse.is-show {
  z-index: -1 !important;
}
.modListCard__item__inner--reverse.is-show .modBtn {
  pointer-events: none;
}
@media screen and (max-width: 657px) {
  .modListCard__item__inner:not(.is-show) {
    height: 92.1875vw;
  }
}
.modListCard__item__inner.is-show {
  position: relative;
  z-index: 1;
  opacity: 1;
  animation: a1_1 0.5s forwards;
}
@keyframes a1_1 {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    opacity: 1;
    transform: rotateY(90deg);
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.modListCard__item__inner.is-hide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  animation: a2_1 0.5s forwards;
}
@keyframes a2_1 {
  0% {
    opacity: 0;
    transform: rotateY(0deg);
  }
  50% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.modListCard__item__inner--reverse {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
@media screen and (min-width: 658px) {
  .modListCard__item__inner--reverse {
    padding: 35px 30px 20px;
  }
}
.modListCard__item__inner--reverse.is-hide {
  z-index: 0;
  animation: a1_2 0.5s forwards;
}
@keyframes a1_2 {
  0% {
    opacity: 0;
    transform: rotateY(0deg);
  }
  50% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.modListCard__item__inner--reverse.is-show {
  z-index: 1;
  animation: a2_2 0.5s forwards;
}
.modListCard__item__inner--reverse.is-show .modBtn {
  pointer-events: none;
}
@keyframes a2_2 {
  0% {
    opacity: 1;
    transform: rotateY(0deg);
  }
  50% {
    opacity: 1;
    transform: rotateY(90deg);
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.modListCard__item__inner--reverse .modListCard__item__title {
  color: var(--orange);
  font-size: 18px;
}
@media screen and (max-width: 657px) {
  .modListCard__item__inner--reverse .modListCard__item__title {
    font-size: 5vw;
  }
}
@media screen and (min-width: 658px) {
  .modListCard__item__inner--reverse .modListCard__item__title {
    margin: 0;
  }
}
.modListCard__item__inner--reverse .modListCard__item__text {
  font-weight: bold;
  color: var(--white);
  font-size: 15px;
  line-height: 1.8181818182;
}
@media screen and (max-width: 657px) {
  .modListCard__item__inner--reverse .modListCard__item__text {
    font-size: 3.4375vw;
  }
}
@media screen and (max-width: 657px) {
  .modListCard__item__inner--reverse .modListCard__item__text {
    line-height: 1.85;
    letter-spacing: -0.01em;
  }
}
@media screen and (min-width: 658px) {
  .modListCard__item__inner--reverse .modListCard__item__text {
    margin: 8px 0 0;
    line-height: 1.75;
  }
}
.modListCard__item__inner--reverse .modBtnWrap {
  position: absolute;
  margin: 0;
}
@media screen and (min-width: 658px) {
  .modListCard__item__inner--reverse .modBtnWrap {
    position: absolute;
    bottom: 58px;
    left: 30px;
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 657px) {
  .modListCard__item__inner--reverse .modBtnWrap {
    bottom: 14.84375vw;
    width: calc(100% - 12.5vw);
  }
}
.modListCard__item__inner--reverse .modBtnWrap .modBtn {
  width: 100%;
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modListCard__item__inner--reverse .modBtnWrap .modBtn {
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 658px) {
  .modListCard__item__inner--reverse .modBtnWrap .modBtn {
    padding: 15px 0;
  }
}
@media screen and (max-width: 657px) {
  .modListCard__item__inner--reverse .modBtnWrap .modBtn {
    padding: 2.65625vw 0vw 2.65625vw 0vw;
  }
}
@media screen and (max-width: 657px) {
  .modListCard__item:nth-child(2) .modListCard__item__inner, .modListCard__item:nth-child(3) .modListCard__item__inner {
    height: 100.78125vw;
  }
}
@media screen and (max-width: 657px) {
  .modListCard__item:nth-child(3) .modListCard__item__inner--front .modListCard__item__title {
    margin: 4.375vw 0vw 6.5625vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modListCard__item--row3 .modListCard__item__inner--front {
    padding-top: 45px;
  }
  .modListCard__item--row3 .modListCard__item__inner--front .modListCard__item__title {
    margin-bottom: 36px;
  }
}
.modListCard__item__title {
  font-weight: bold;
  color: var(--lightRizeGold);
  text-align: center;
  font-size: 19px;
  line-height: 1.5789473684;
}
@media screen and (max-width: 657px) {
  .modListCard__item__title {
    font-size: 5vw;
  }
}
@media screen and (min-width: 658px) {
  .modListCard__item__title {
    margin: 0 0 45px;
  }
}
@media screen and (max-width: 657px) {
  .modListCard__item__title {
    margin: 0vw 0vw 3.125vw 0vw;
  }
}
.modListCard__item__title .emp {
  color: var(--orange);
}
.modListCard__item__img {
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 658px) {
  .modListCard__item__img {
    width: 98%;
  }
}
@media screen and (max-width: 657px) {
  .modListCard__item__img {
    width: 91%;
  }
}
.modListCard__item__cont {
  display: none;
}
.modListCard__item__btn {
  position: absolute;
}
@media screen and (min-width: 658px) {
  .modListCard__item__btn {
    right: 13px;
    bottom: 12px;
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 657px) {
  .modListCard__item__btn {
    right: 3.125vw;
    bottom: 3.125vw;
    width: 7.8125vw;
    height: 7.8125vw;
  }
}
.modListCard__item__btn.js-rev {
  transform: rotate(-180deg);
}
.modListCard__item__btn img {
  width: 100%;
  height: 100%;
}
.modListCard--show .modListCard__item__cont {
  display: block;
  font-weight: bold;
}
@media screen and (max-width: 657px) {
  .modListCard--show .modListCard__item__cont .text {
    line-height: 1.8;
  }
}
.modListCard--show .modListCard__item .modListCard__item__inner {
  height: 100% !important;
}
@media screen and (max-width: 657px) {
  .modListCard--show .modListCard__item .modListCard__item__inner {
    padding: 7.03125vw 6.25vw 8.59375vw 6.25vw;
  }
}
@media screen and (max-width: 657px) {
  .modListCard--show .modListCard__item .modListCard__item__inner .modListCard__item__title {
    margin: 0vw 0vw 4.6875vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modListFlow__item:nth-child(n+2) {
    margin: 54px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modListFlow__item:nth-child(n+2) {
    margin: 7.8125vw 0vw 0vw 0vw;
  }
}
.modListFlow__item__title {
  font-weight: bold;
  color: var(--lightRizeGold);
  background: var(--lightGoldGray);
  font-size: 16px;
  line-height: 1.3125;
}
@media screen and (max-width: 657px) {
  .modListFlow__item__title {
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 658px) {
  .modListFlow__item__title {
    padding: 20px 40px;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 657px) {
  .modListFlow__item__title {
    padding: 3.75vw 6.25vw 3.75vw 6.25vw;
    margin: 0vw 0vw 1.09375vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modListFlow__item__cont {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 658px) {
  .modListFlow__item__cont .imgBlock {
    width: 411px;
    height: 314px;
  }
}
.modListFlow__item__cont .imgBlock img {
  font-family: "object-fit: cover";
  -o-object-fit: cover;
  object-fit: cover;
}
.modListFlow__item__cont .textBlock {
  background: var(--white);
  font-size: 15px;
}
@media screen and (max-width: 657px) {
  .modListFlow__item__cont .textBlock {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modListFlow__item__cont .textBlock {
    width: calc(100% - 438px);
    padding: 28px 40px 42px;
    line-height: 1.8666666667;
  }
}
@media screen and (max-width: 657px) {
  .modListFlow__item__cont .textBlock {
    padding: 3.84vw 6.41vw 8.97vw;
    line-height: 1.65;
    padding: 3.75vw 6.25vw 8.90625vw 6.25vw;
  }
}
@media screen and (min-width: 658px) {
  .modListFlow__item__cont .textBlock--single {
    width: 100%;
  }
}
.modListFlow__item__cont .textBlock__empBox {
  background: var(--goldGray);
}
@media screen and (max-width: 657px) {
  .modListFlow__item__cont .textBlock__empBox {
    font-size: 2.96875vw;
  }
}
@media screen and (min-width: 658px) {
  .modListFlow__item__cont .textBlock__empBox {
    padding: 23px 20px 20px;
    margin: 15px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modListFlow__item__cont .textBlock__empBox {
    padding: 3.4375vw 1.5625vw 9.375vw 1.5625vw;
    margin: 5.15625vw 0vw 0vw 0vw;
    line-height: 1.55;
  }
}
.modListFlow__item__cont .textBlock .modBtnWrap {
  margin: 40px 0 0;
}
@media screen and (max-width: 657px) {
  .modListFlow__item__cont .textBlock .modBtnWrap {
    margin: 8.125vw 0vw 0vw 0vw;
  }
}
.modListPayment {
  padding: 0 45px 0;
}
@media screen and (max-width: 657px) {
  .modListPayment {
    padding: 0vw 4.6875vw 0vw 4.6875vw;
  }
}
.modListPayment > li:nth-child(n+2) {
  margin-top: 50px;
}
@media screen and (max-width: 657px) {
  .modListPayment > li:nth-child(n+2) {
    margin: 9.375vw 0vw 0vw 0vw;
  }
}
.modListPayment .payment__title {
  font-size: 24px;
  position: relative;
  padding: 0 0 10px;
  font-weight: bold;
  color: var(--lightRizeGold);
  text-align: center;
  border-bottom: solid 1px var(--lightGray);
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__title {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__title {
    padding: 0vw 0vw 1.5625vw 0vw;
  }
}
.modListPayment .payment__title__num {
  position: absolute;
  left: 0;
  color: var(--gray);
  font-size: 30px;
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__title__num {
    font-size: 4.0625vw;
  }
}
.modListPayment .payment__textArea {
  padding: 30px 40px 42px;
  margin: 26px 0 0;
  word-break: break-all;
  background-color: var(--goldGray);
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__textArea {
    margin: 4.6875vw 0vw 0vw 0vw;
    padding: 5vw 5vw 5vw 5vw;
  }
}
.modListPayment .payment__textArea__text {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__textArea__text {
    font-size: 3.4375vw;
  }
}
.modListPayment .payment__textArea__way {
  display: flex;
}
@media screen and (min-width: 658px) {
  .modListPayment .payment__textArea__way {
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__textArea__way {
    margin: 3.125vw 0vw 0vw 0vw;
  }
}
.modListPayment .payment__textArea__way > li {
  font-size: 0;
}
.modListPayment .payment__textArea__way > li:nth-child(n+2) {
  margin-left: 20px;
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__textArea__way > li:nth-child(n+2) {
    margin: 0vw 0vw 0vw 1.5625vw;
  }
}
.modListPayment .payment__textArea__way > li img {
  width: auto;
  height: 31px;
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__textArea__way > li img {
    height: 4.84375vw;
  }
}
.modListPayment .payment__textArea__note {
  font-size: 14px;
  display: block;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__textArea__note {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .modListPayment .payment__textArea__note {
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__textArea__note {
    margin: 0.78125vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modListPayment .payment__textArea__note + .payment__textArea__note {
    margin-top: 5px;
  }
}
@media screen and (max-width: 657px) {
  .modListPayment .payment__textArea__note + .payment__textArea__note {
    margin-top: 0;
  }
}
@media screen and (min-width: 658px) {
  .modListPayment--box {
    width: 964px;
    padding: 0;
    margin: 0 auto;
  }
}
.modListPayment--box > li {
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 658px) {
  .modListPayment--box > li {
    padding: 54px 40px;
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
}
@media screen and (max-width: 657px) {
  .modListPayment--box > li {
    padding: 8vw 5vw;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
  }
}
.modListPayment--box > li .payment__title {
  padding: 0;
  color: var(--orange);
  border: none;
}
@media screen and (max-width: 657px) and (max-width: 657px) {
  .modListPayment--box > li .payment__title {
    font-size: 4.0625vw;
  }
}
@media screen and (min-width: 658px) {
  .modListPayment--box > li .payment__textArea {
    margin-top: 36px;
  }
}

.modDot {
  position: relative;
}
.modDot::before {
  position: absolute;
  display: block;
  content: "";
  background: var(--orange);
  border-radius: 100%;
}
@media screen and (min-width: 658px) {
  .modDot::before {
    top: -3px;
    left: calc(50% - 4px);
    width: 4px;
    height: 4px;
  }
}
@media screen and (max-width: 657px) {
  .modDot::before {
    top: -0.46875vw;
    left: calc(50% - 0.625vw);
    width: 0.625vw;
    height: 0.625vw;
  }
}

.modModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.modModal .btnClose,
.modModal .btnMinus {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  text-indent: -99999px;
  background: var(--gray) url(https://www.rizeclinic.com/assets/img/top/icon_modal_close.svg) no-repeat center center;
  background-size: 18px;
  border-radius: 100%;
}
@media screen and (max-width: 657px) {
  .modModal .btnClose,
  .modModal .btnMinus {
    top: -3.90625vw;
    right: -3.90625vw;
    width: 7.8125vw;
    height: 7.8125vw;
  }
}
.modModal .btnMinus {
  background: var(--gray) url(https://www.rizeclinic.com/assets/img/top/icon_modal_minus.svg) no-repeat center center;
}
.modModal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 658px) {
  .modModal__inner {
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
    width: 557px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 657px) {
  .modModal__inner {
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
    width: calc(100% - 13.125vw);
    border-radius: 3.75vw;
  }
}
.modModal__inner__scroll {
  max-height: 80vh;
  overflow-y: scroll;
}
@media screen and (min-width: 658px) {
  .modModal__inner__scroll {
    padding: 50px 0 45px;
  }
}
@media screen and (max-width: 657px) {
  .modModal__inner__scroll {
    padding: 7.8125vw 0vw 7.03125vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modModal--rizekuma .modModal__inner {
    padding: 55px 0 37px 46px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 657px) {
  .modModal--rizekuma .modModal__inner {
    padding: 8.59375vw 0vw 0vw 0vw;
  }
}
@media screen and (max-width: 657px) {
  .modModal--rizekuma .profile {
    padding: 0vw 0vw 0vw 7.1875vw;
  }
}
@media screen and (min-width: 658px) {
  .modModal--rizekuma .profile__inner__img img {
    width: 420px;
    height: 178px;
  }
}
@media screen and (max-width: 657px) {
  .modModal--rizekuma .profile__inner__img img {
    width: 74.0625vw;
    height: 28.75vw;
  }
}
.modModal--rizekuma .profile__text {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 657px) {
  .modModal--rizekuma .profile__text {
    font-size: 3.28125vw;
  }
}
@media screen and (min-width: 658px) {
  .modModal--rizekuma .profile__text {
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modModal--rizekuma .profile__text {
    margin: 2.34375vw 0vw 0vw 0vw;
  }
}
.modModal--rizekuma .wrapImgRizekuma {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 657px) {
  .modModal--rizekuma .wrapImgRizekuma {
    overflow: hidden;
    padding: 3.125vw 0vw 0vw 7.1875vw;
  }
}
@media screen and (min-width: 658px) {
  .modModal--rizekuma .imgInkuma img {
    width: 147px;
    height: 172px;
  }
}
@media screen and (max-width: 657px) {
  .modModal--rizekuma .imgInkuma img {
    display: block;
    margin: 0vw 0vw 0vw 3.125vw;
  }
}
.modModal--rizekuma .imgInkuma__caption {
  display: block;
  font-size: 14px;
  line-height: 1.9444444444;
}
@media screen and (max-width: 657px) {
  .modModal--rizekuma .imgInkuma__caption {
    font-size: 2.65625vw;
  }
}
@media screen and (min-width: 658px) {
  .modModal--rizekuma .imgInkuma__caption {
    margin: 0 35px 0 -15px;
    text-align: center;
  }
}
@media screen and (min-width: 658px) {
  .modModal--rizekuma .imgKumagurumi img {
    width: 350px;
    height: 221px;
  }
}
@media screen and (max-width: 657px) {
  .modModal--rizekuma .imgKumagurumi img {
    width: 54.84375vw;
    height: auto;
    margin-top: -3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .modModal--rizekuma .modBtnWrap {
    margin: 33px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modModal--rizekuma .modBtnWrap {
    margin: 3.125vw 5vw 5.625vw 5vw;
  }
  .modModal--rizekuma .modBtnWrap .modBtn {
    padding: 2.8125vw 0vw 2.8125vw 0vw;
  }
}
@media screen and (max-width: 657px) and (max-width: 657px) {
  .modModal--rizekuma .modBtnWrap .modBtn {
    font-size: 2.34375vw;
  }
}

@media screen and (min-width: 658px) {
  .modAccordion {
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion {
    margin: 6.25vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modAccordion + .modAccordion {
    margin-top: 20px;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion + .modAccordion {
    margin-top: 4.6875vw;
  }
}
.modAccordion__head {
  position: relative;
  z-index: 1;
  font-weight: bold;
  color: var(--white);
  cursor: pointer;
  background: var(--orange);
  font-size: 20px;
}
@media screen and (max-width: 657px) {
  .modAccordion__head {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modAccordion__head {
    max-width: 1056px;
    padding: 20px 45px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion__head {
    padding: 3.90625vw 3.90625vw 3.90625vw 3.90625vw;
  }
}
.modAccordion__head .toggleIcon {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: block;
  background: var(--white);
  border-radius: 100%;
  transform: translateY(-50%);
}
@media screen and (min-width: 658px) {
  .modAccordion__head .toggleIcon {
    right: 28px;
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion__head .toggleIcon {
    right: 2.34375vw;
    width: 7.8125vw;
    height: 7.8125vw;
  }
}
.modAccordion__head .toggleIcon::before, .modAccordion__head .toggleIcon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  background: var(--lightRizeGold);
  transition: all 0.3s ease;
  transform: translate(-50%);
}
@media screen and (min-width: 658px) {
  .modAccordion__head .toggleIcon::before, .modAccordion__head .toggleIcon::after {
    width: 17px;
    height: 2px;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion__head .toggleIcon::before, .modAccordion__head .toggleIcon::after {
    width: 3vw;
    height: 1px;
  }
}
.modAccordion__head .toggleIcon::before {
  transform: translate(-50%) rotate(90deg);
}
.modAccordion__head .toggleIcon.is-open::before {
  opacity: 0;
  transform: translate(-50%) rotate(0deg);
}
.modAccordion__body {
  z-index: 0;
  width: 100%;
  background: var(--lightGoldGray);
}
@media screen and (min-width: 658px) {
  .modAccordion__body {
    padding: 152px 0 66px;
    margin: -36px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion__body {
    padding: 10.9375vw 0vw 10.625vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modAccordion__body .push7Cont {
    max-width: 1056px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion__body .push7Cont {
    padding: 0vw 5.15625vw 0vw 5.15625vw;
  }
}
.modAccordion__body .push7Cont__title {
  font-weight: bold;
  color: var(--lightRizeGold);
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 26px;
}
@media screen and (max-width: 657px) {
  .modAccordion__body .push7Cont__title {
    font-size: 5vw;
  }
}
@media screen and (min-width: 658px) {
  .modAccordion__body .push7Cont__title {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion__body .push7Cont__title {
    padding: 0vw 0vw 3.90625vw 0vw;
  }
}
.modAccordion__body .push7Cont__text {
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 657px) {
  .modAccordion__body .push7Cont .modBtnWrap {
    padding: 0 6vw;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion__body .push7Cont .modBtnWrap .modBtn {
    padding: 3vw 0;
  }
}
@media screen and (min-width: 658px) {
  .modAccordion__body--column {
    padding: 86px 0 66px;
  }
}
.modAccordion__body--column .modBox {
  padding: 30px 20px 38px;
  margin-top: 0;
}
@media screen and (max-width: 657px) {
  .modAccordion__body--column .modBox {
    padding: 8.59375vw 6.25vw 7.8125vw 6.25vw;
  }
}
.modAccordion__body--column .modBox + .modBox {
  margin-top: 30px;
}
@media screen and (max-width: 657px) {
  .modAccordion__body--column .modBox + .modBox {
    margin-top: 6.71875vw;
  }
}
.modAccordion__body--column .modBox .title {
  color: var(--goldGray);
  font-size: 15px;
}
@media screen and (max-width: 657px) {
  .modAccordion__body--column .modBox .title {
    font-size: 4.375vw;
  }
}
.modAccordion__body--column .modBox .text {
  font-size: 15px;
}
@media screen and (max-width: 657px) {
  .modAccordion__body--column .modBox .text {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modAccordion__body--column .modBox .text {
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion__body--column .modBox .text {
    margin: 3.125vw 0vw 0vw 0vw;
  }
}
.modAccordion__body--bgNone {
  padding-bottom: 0;
  background: none;
}
@media screen and (min-width: 658px) {
  .modAccordion__body--bgNone {
    padding-top: 100px;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion__body--bgNone {
    padding-top: 5.9375vw;
  }
}
.modAccordion__body .modReasonBox:first-child {
  margin-top: 0;
}
@media screen and (max-width: 657px) {
  .modAccordion__body > .modBtnWrap {
    padding: 0vw 5.15625vw 0vw 5.15625vw;
  }
}
@media screen and (max-width: 657px) {
  .modAccordion__body > .modReasonBox__wrapper,
  .modAccordion__body > .modMediaBox {
    padding: 6.25vw 0vw 0vw 0vw;
  }
}

@media screen and (min-width: 658px) {
  .modTab {
    width: 1056px;
    margin: 0 auto;
  }
}
.modTab__header {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 658px) {
  .modTab__header {
    padding: 0 45px;
    border-bottom: 6px solid #fff;
  }
}
@media screen and (max-width: 657px) {
  .modTab__header {
    padding: 0vw 5.15625vw 0vw 5.15625vw;
    border-bottom: 0.9375vw solid #fff;
  }
}
.modTab__header__item {
  position: relative;
  width: 50%;
  font-weight: bold;
  color: var(--lightGray);
  text-align: center;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
  opacity: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 25px;
  line-height: 1.32;
}
.modTab__header__item:hover {
  opacity: 1;
}
@media screen and (max-width: 657px) {
  .modTab__header__item {
    font-size: 4.375vw;
  }
}
@media screen and (min-width: 658px) {
  .modTab__header__item {
    letter-spacing: 0.3em;
    padding: 0 0 25px;
  }
  .modTab__header__item--small {
    font-size: 20px;
  }
}
@media screen and (max-width: 657px) {
  .modTab__header__item {
    letter-spacing: 0.1em;
    padding: 0vw 0vw 4.6875vw 0vw;
  }
}
.modTab__header__item strong {
  font-size: 25px;
}
@media screen and (max-width: 657px) {
  .modTab__header__item strong {
    font-size: 5.3125vw;
  }
}
.modTab__header__item::after {
  position: absolute;
  left: 0;
  display: block;
  width: 0;
  content: "";
  background: transparent;
  transition: transform 0.3s;
  transform: scale(0, 1);
}
@media screen and (min-width: 658px) {
  .modTab__header__item::after {
    bottom: -6px;
    height: 6px;
  }
}
@media screen and (max-width: 657px) {
  .modTab__header__item::after {
    bottom: -0.9375vw;
    height: 0.9375vw;
  }
}
.modTab__header__item.swiper-slide-thumb-active {
  color: var(--lightRizeGold);
}
.modTab__header__item.swiper-slide-thumb-active::after {
  width: 100%;
  background: var(--orange);
}
.modTab__header__item:first-child.swiper-slide-thumb-active::after {
  transform: scale(1, 1);
  transform-origin: right top;
}
.modTab__header__item:last-child.swiper-slide-thumb-active::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
@media screen and (min-width: 658px) {
  .modTab__header__item .icon {
    display: inline-block;
    margin: 20px 20px 0 0;
    font-size: 0;
    vertical-align: bottom;
  }
}
@media screen and (max-width: 657px) {
  .modTab__header__item .icon {
    display: block;
    height: 13vw;
    margin: 10vw auto 0;
  }
}
@media screen and (min-width: 658px) {
  .modTab__header__item .icon img {
    height: 56px;
  }
}
@media screen and (min-width: 658px) {
  .modTab__header__item .icon--plan {
    width: 46px;
  }
  .modTab__header__item .icon--plan img {
    position: relative;
    bottom: -10px;
  }
}
@media screen and (max-width: 657px) {
  .modTab__header__item .icon--plan {
    width: 9vw;
  }
}
@media screen and (min-width: 658px) {
  .modTab__header__item .icon--site {
    width: 67px;
  }
}
@media screen and (max-width: 657px) {
  .modTab__header__item .icon--site {
    width: 12vw;
  }
}
.modTab__body {
  overflow: hidden;
}
@media screen and (min-width: 658px) {
  .modTab__body {
    width: 966px;
    margin: 86px 45px 0;
  }
}
@media screen and (max-width: 657px) {
  .modTab__body {
    margin: 14.84375vw 5.46875vw 0vw 5.46875vw;
  }
}
.modTab__body--wide {
  padding: 0;
}
@media screen and (min-width: 658px) {
  .modTab__body--wide {
    width: 1056px;
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modTab__body--wide {
    margin: 8.59375vw 0vw 0vw 0vw;
  }
  .modTab__body--wide .modTab__body__item {
    padding: 4.6875vw 0vw 0vw 0vw;
  }
}
.modTab__body .modReasonBox__wrapper {
  width: 100%;
}
@media screen and (min-width: 658px) {
  .modTab__body .modReasonBox__wrapper .modReasonBox {
    margin-right: 0;
    margin-left: 45px;
  }
}
@media screen and (min-width: 658px) {
  .modTab__body .modReasonBox__wrapper .modReasonBox__cont .title::before {
    top: -60px;
  }
}
@media screen and (max-width: 657px) {
  .modTab__body .modReasonBox__wrapper .modReasonBox__cont .title::before {
    top: -15.625vw;
  }
}
@media screen and (min-width: 658px) {
  .modTab__body .modReasonBox__wrapper .modReasonBox__cont .title::after {
    bottom: -30px;
  }
}
@media screen and (max-width: 657px) {
  .modTab__body .modReasonBox__wrapper .modReasonBox__cont .title::after {
    bottom: -21.875vw;
  }
}
@media screen and (min-width: 658px) {
  .modTab__body .modReasonBox__wrapper .modReasonBox__cont .text {
    margin-top: 26px;
  }
}
@media screen and (min-width: 658px) {
  .modTab__body .modReasonBox__wrapper .modReasonBox__img {
    padding-top: 115px;
  }
}
@media screen and (max-width: 657px) {
  .modTab__body .modReasonBox__wrapper .modReasonBox__img {
    margin: 10.3125vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modTab__body .section {
    margin: 20px 0 0;
  }
}
@media screen and (min-width: 658px) {
  .modTab__body .section + .section {
    margin: 97px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modTab__body .section + .section {
    margin: 10.3125vw 0vw 0vw 0vw;
  }
}
.modTab__body .section__title {
  font-weight: bold;
  color: var(--lightRizeGold);
  font-size: 26px;
}
@media screen and (max-width: 657px) {
  .modTab__body .section__title {
    font-size: 5vw;
  }
}
@media screen and (min-width: 658px) {
  .modTab__body .section__title {
    padding: 0 0 0 24px;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 657px) {
  .modTab__body .section__title {
    margin: 0vw 0vw 7.8125vw 0vw;
    padding: 0vw 0vw 0vw 4.6875vw;
  }
}
.modTab__body .section__title__sub {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--orange);
  letter-spacing: normal;
  background: #fff;
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modTab__body .section__title__sub {
    font-size: 3.28125vw;
  }
}
@media screen and (min-width: 658px) {
  .modTab__body .section__title__sub {
    min-width: 241px;
    padding: 0 7px 0 24px;
    margin: 0 0 20px -24px;
    border-radius: 4px;
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
}
@media screen and (max-width: 657px) {
  .modTab__body .section__title__sub {
    min-width: 41.5625vw;
    padding: 0 5px 0 5vw;
    margin-left: -5vw;
    border-radius: 3px;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
  }
}
.modTab__body .caution {
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modTab__body .caution {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .modTab__body .caution {
    margin: 40px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modTab__body .caution {
    margin: 20px 0 0;
  }
}

.modReasonBox {
  font-weight: bold;
}
@media screen and (min-width: 658px) {
  .modReasonBox {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 88px 0 0 45px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox {
    margin: 9.21875vw 0vw 0vw 0vw;
  }
}
.modReasonBox:first-child {
  margin-top: 0;
}
.modReasonBox__cont .title {
  color: var(--lightRizeGold);
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.6153846154;
  position: relative;
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .title {
    font-size: 5vw;
  }
}
.modReasonBox__cont .title::before, .modReasonBox__cont .title::after {
  position: absolute;
  display: block;
  content: "";
}
.modReasonBox__cont .title::before {
  background: url(https://www.rizeclinic.com/assets/img/top/icon_comma01.png) no-repeat center center;
  background-size: 100% auto;
}
.modReasonBox__cont .title::after {
  background: url(https://www.rizeclinic.com/assets/img/top/icon_comma02.png) no-repeat center center;
  background-size: 100% auto;
}
.modReasonBox__cont .title__emp {
  color: var(--orange);
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .title {
    padding: 0vw 11.5625vw 0vw 11.5625vw;
    letter-spacing: 0.05em;
  }
}
.modReasonBox__cont .title__sub {
  display: inline-block;
  color: var(--orange);
  letter-spacing: normal;
  background: var(--lightGoldGray);
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .title__sub {
    font-size: 3.28125vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .title__sub {
    min-width: 241px;
    padding: 0 7px;
    margin: 0 0 10px;
    border-radius: 4px;
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .title__sub {
    min-width: 41.5625vw;
    border-radius: 0.46875vw;
    margin: 0vw 0vw 1.5625vw 0vw;
    padding: 0vw 0.78125vw 0vw 0.78125vw;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
  }
}
.modReasonBox__cont .title__second {
  color: var(--lightRizeGold);
  letter-spacing: normal;
  font-size: 15px;
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .title__second {
    font-size: 3.28125vw;
  }
}
.modReasonBox__cont .title--black {
  color: var(--gray);
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .title--black {
    padding-left: 25px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .title--black {
    padding: 0vw 0vw 0vw 12.5vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .title--black .title__sub {
    padding: 0 20px;
    margin-left: -25px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .title--black .title__sub {
    margin-left: -2.34375vw;
    padding: 0vw 3.125vw 0vw 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .title::before {
    top: -82px;
    left: -61px;
    width: 76px;
    height: 69px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .title::before {
    top: -13.90625vw;
    left: 1.015625vw;
    width: 18.4375vw;
    height: 15vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .title::after {
    right: 18px;
    bottom: -39px;
    width: 91px;
    height: 81px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .title::after {
    right: 4.09375vw;
    bottom: -18.6875vw;
    width: 20.78125vw;
    height: 19.53125vw;
  }
}
.modReasonBox__cont .text {
  letter-spacing: -0.02em;
  line-height: 2;
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .text {
    margin: 42px 50px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .text {
    margin: 11.5625vw 12.8125vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .valueList {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0 0 -12px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .valueList {
    margin: 1.5625vw 9.375vw 0vw 12.5vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .valueList__item {
    width: calc(50% - 40px);
    margin: 60px 0 0 40px;
  }
  .modReasonBox__cont .valueList__item:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .valueList__item {
    margin: 6.25vw 0vw 0vw 0vw;
  }
}
.modReasonBox__cont .valueList__item__title {
  font-family: "FriendlyExpart";
  line-height: 1;
  color: var(--orange);
  font-size: 36px;
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .valueList__item__title {
    font-size: 6.40625vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .valueList__item__title {
    margin: 0 0 24px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .valueList__item__title {
    margin: 0vw 0vw 2.03125vw 0vw;
  }
}
.modReasonBox__cont .valueList__item__title > span {
  display: block;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, Arial, Helvetica, Verdana, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
  color: var(--lightRizeGold);
  font-size: 16px;
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .valueList__item__title > span {
    font-size: 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .valueList__item__title > span {
    margin: 15px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .valueList__item__title > span {
    margin: 1.25vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__cont .valueList__item__text {
    line-height: 2;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__cont .valueList__item__text {
    line-height: 1.7272727273;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__img {
    padding: 55px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__img {
    margin: 6.40625vw 0vw 0vw 0vw;
  }
}
.modReasonBox__img .text {
  line-height: 2.1818181818;
}
@media screen and (min-width: 658px) {
  .modReasonBox__img .text {
    margin: 18px 22px 0;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__img .text {
    margin: 4.53125vw 6.71875vw 0vw 6.71875vw;
  }
}
.modReasonBox__img img {
  height: auto;
}
@media screen and (min-width: 658px) {
  .modReasonBox__img img {
    width: 411px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__img img {
    width: 100%;
  }
}
.modReasonBox--wide {
  display: block;
}
@media screen and (min-width: 658px) {
  .modReasonBox--wide {
    width: 1056px;
    margin-right: auto;
    margin-left: auto;
  }
}
.modReasonBox--wide .modReasonBox__cont .title::before, .modReasonBox--wide .modReasonBox__cont .title::after {
  display: none;
}
.modReasonBox--wide .modReasonBox__cont .title--mark::before, .modReasonBox--wide .modReasonBox__cont .title--mark::after {
  display: block;
}
.modReasonBox--wide .modReasonBox__img img {
  width: 100%;
}
@media screen and (min-width: 658px) {
  .modReasonBox__wrapper {
    width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__wrapper .modReasonBox {
    margin: 88px 70px 0 118px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox {
    margin: 9.21875vw 0vw 0vw 0vw;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox:nth-child(n+2) {
    margin: 29.21875vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__wrapper .modReasonBox__img {
    padding: 51px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox__img {
    margin: 11.875vw 0vw 0vw 0vw;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox__img .text {
    margin: 3.90625vw 5.625vw 0vw 5.625vw;
    line-height: 2;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__wrapper .modReasonBox__cont .text {
    margin: 48px 50px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox__cont .text {
    margin: 7.5vw 7.8125vw 0vw 0vw;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox__cont .title {
    padding: 0vw 0vw 0vw 8.28125vw;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox__cont .title::before {
    top: -17.1875vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__wrapper .modReasonBox__cont .title::after {
    right: 18px;
    bottom: -40px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox__cont .title::after {
    bottom: -23.4375vw;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox__cont .title + .text {
    margin: 28.125vw 5.625vw 0vw 5.625vw;
  }
}
@media screen and (min-width: 658px) {
  .modReasonBox__wrapper .modReasonBox__cont.modReasonBox--nonImg .title::after {
    right: 13px;
    bottom: -62px;
  }
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox__cont.modReasonBox--nonImg .title::after {
    bottom: -20.3125vw;
  }
}
.modReasonBox__wrapper .modReasonBox .modBtnWrap {
  margin: 66px 0 0 0;
}
@media screen and (max-width: 657px) {
  .modReasonBox__wrapper .modReasonBox .modBtnWrap {
    margin: 7.5vw 5.625vw 0vw 5.625vw;
  }
}

@media screen and (min-width: 658px) {
  .modMediaBox__item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    width: 1056px;
    min-height: 414px;
    padding-left: 45px;
    margin: 0 auto;
  }
}
.modMediaBox__item .title {
  color: var(--lightRizeGold);
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.6153846154;
  position: relative;
}
@media screen and (max-width: 657px) {
  .modMediaBox__item .title {
    font-size: 5vw;
  }
}
.modMediaBox__item .title::before, .modMediaBox__item .title::after {
  position: absolute;
  display: block;
  content: "";
}
.modMediaBox__item .title::before {
  background: url(https://www.rizeclinic.com/assets/img/top/icon_comma01.png) no-repeat center center;
  background-size: 100% auto;
}
.modMediaBox__item .title::after {
  background: url(https://www.rizeclinic.com/assets/img/top/icon_comma02.png) no-repeat center center;
  background-size: 100% auto;
}
.modMediaBox__item .title__emp {
  color: var(--orange);
}
@media screen and (min-width: 658px) {
  .modMediaBox__item .title {
    order: 1;
    width: 560px;
  }
}
@media screen and (max-width: 657px) {
  .modMediaBox__item .title {
    padding: 0vw 11.5625vw 0vw 11.5625vw;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 658px) {
  .modMediaBox__item .title::before {
    top: -82px;
    left: -61px;
    width: 76px;
    height: 69px;
  }
}
@media screen and (max-width: 657px) {
  .modMediaBox__item .title::before {
    top: -13.90625vw;
    left: 1.015625vw;
    width: 18.4375vw;
    height: 15vw;
  }
}
@media screen and (min-width: 658px) {
  .modMediaBox__item .title::after {
    right: -25px;
    bottom: -35px;
    width: 91px;
    height: 81px;
  }
}
@media screen and (max-width: 657px) {
  .modMediaBox__item .title::after {
    right: 4.09375vw;
    bottom: -18.6875vw;
    width: 20.78125vw;
    height: 19.53125vw;
  }
}
.modMediaBox__item .title__sub {
  display: inline-block;
  color: var(--orange);
  letter-spacing: normal;
  background: var(--lightGoldGray);
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modMediaBox__item .title__sub {
    font-size: 3.28125vw;
  }
}
@media screen and (min-width: 658px) {
  .modMediaBox__item .title__sub {
    min-width: 241px;
    padding: 0 7px;
    margin: 0 0 10px;
    border-radius: 4px;
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
}
@media screen and (max-width: 657px) {
  .modMediaBox__item .title__sub {
    min-width: 41.5625vw;
    border-radius: 0.46875vw;
    margin: 0vw 0vw 1.5625vw 0vw;
    padding: 0vw 0.78125vw 0vw 0.78125vw;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
  }
}
@media screen and (min-width: 658px) {
  .modMediaBox__item .img {
    position: absolute;
    top: 0;
    right: 0;
    order: 3;
    width: 411px;
    height: 314px;
    padding: 48px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modMediaBox__item .img {
    margin: 6.40625vw 0vw 0vw 0vw;
  }
}
.modMediaBox__item .text {
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 2;
}
@media screen and (max-width: 657px) {
  .modMediaBox__item .text {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modMediaBox__item .text {
    order: 2;
    width: 560px;
    margin: 42px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modMediaBox__item .text {
    margin: 4.53125vw 6.71875vw 0vw 6.71875vw;
  }
}
@media screen and (min-width: 658px) {
  .modMediaBox__item--marginL {
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modMediaBox__item--marginL {
    margin: 31.25vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modMediaBox__item:nth-child(n+2):not(.modMediaBox__item--marginL) {
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modMediaBox__item:nth-child(n+2):not(.modMediaBox__item--marginL) {
    margin: 31.25vw 0vw 0vw 0vw;
  }
}

@media screen and (min-width: 658px) {
  .modFaq {
    margin: 167px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modFaq {
    margin: 20.3125vw auto 0vw auto;
  }
}
@media screen and (min-width: 658px) {
  .modFaq .modSection__title {
    margin: 0 0 35px;
  }
}
@media screen and (max-width: 657px) {
  .modFaq .modSection__title {
    margin: 0vw 0vw 10.78125vw 0vw;
  }
}

@media screen and (min-width: 658px) {
  .modLocations {
    margin: 200px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modLocations {
    margin: 25vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modLocations .modSection__title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 657px) {
  .modLocations .modSection__title {
    margin: 0vw 0vw 0vw 0vw;
  }
}

@media screen and (min-width: 658px) {
  .modNews {
    max-width: 1060px;
    margin: 147px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modNews {
    margin: 14.0625vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modNews .modSection__title {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 657px) {
  .modNews .modSection__title {
    margin: 0vw 0vw 10.15625vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modNews .modBtnWrap {
    margin-top: 65px;
  }
}
@media screen and (max-width: 657px) {
  .modNews .modBtnWrap {
    margin: 11.5625vw 5.3125vw 0vw 5.3125vw;
  }
}

.modPrice {
  position: relative;
}
@media screen and (min-width: 658px) {
  .modPrice {
    margin: 170px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modPrice {
    margin: 16.5625vw 0vw 0vw 0vw;
  }
}

.modContentClinic {
  position: relative;
  background: url(https://www.rizeclinic.com/assets/img/common/bg_map_japan.svg) no-repeat;
}
@media screen and (min-width: 658px) {
  .modContentClinic {
    max-width: 968px;
    min-height: 742px;
    padding: 80px 0 0;
    margin: 0 auto;
    background-position: 145px 40px;
    background-size: 564px auto;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic {
    min-height: 106vw;
    padding: 13.3vw 5.12vw 10.76vw;
    background-position: center 10%;
    background-size: 85% auto;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__inner {
    margin: 0 0 45px;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__inner {
    margin: 0vw 0vw 3.59375vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__block--half {
    width: 360px;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__block--half {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modContentClinic__block--half .modContentClinic__inner {
    width: 50%;
  }
  .modContentClinic__block--half .modContentClinic__list {
    justify-content: center;
  }
  .modContentClinic__block--half .modContentClinic__list__item {
    width: calc(50% - 0.46875vw);
  }
}
.modContentClinic__title {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 657px) {
  .modContentClinic__title {
    font-size: 4.375vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__title {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__title {
    margin: 0vw 0vw 3.90625vw 0vw;
  }
}
.modContentClinic__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 658px) {
  .modContentClinic__list__item {
    width: 118px;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__list__item {
    width: calc(25% - 0.625vw);
    margin: 0vw 0.78125vw 1.25vw 0vw;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__list__item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__list__item:nth-child(n+2) {
    margin: 0 0 0 3px;
  }
}
.modContentClinic__list__item .modBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  line-height: 1.4;
  font-size: 15px;
}
@media screen and (max-width: 657px) {
  .modContentClinic__list__item .modBtn {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__list__item .modBtn {
    min-height: 54px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modContentClinic__list__item .modBtn {
    font-size: 14px;
  }
}
@media screen and (max-width: 319px) {
  .modContentClinic__list__item .modBtn {
    font-size: 0.8rem;
    line-height: 1;
    letter-spacing: -0.1em;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__list__item .modBtn {
    height: 10.78125vw;
  }
}
.modContentClinic__list__item .modBtn::after {
  content: none;
}
.modContentClinic__list--national .modContentClinic__list__item {
  position: absolute;
}
@media screen and (min-width: 658px) {
  .modContentClinic__list--national .modContentClinic__list__item {
    width: 167px;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__list--national .modContentClinic__list__item--hokkaido {
    top: 30%;
    left: 49%;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__list--national .modContentClinic__list__item--hokkaido {
    top: 28vw;
    right: 18vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__list--national .modContentClinic__list__item--chubu {
    top: 49%;
    left: 33%;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__list--national .modContentClinic__list__item--chubu {
    top: 49vw;
    left: 33vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__list--national .modContentClinic__list__item--kanto {
    top: 61%;
    right: 28%;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__list--national .modContentClinic__list__item--kanto {
    top: 57vw;
    right: 8vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__list--national .modContentClinic__list__item--chugoku {
    bottom: 25%;
    left: 18%;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__list--national .modContentClinic__list__item--chugoku {
    bottom: 25vw;
    left: 11vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__list--national .modContentClinic__list__item--kinki {
    right: 40%;
    bottom: 15%;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__list--national .modContentClinic__list__item--kinki {
    right: 29vw;
    bottom: 15vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentClinic__list--national .modContentClinic__list__item--kyushu {
    bottom: 5%;
    left: 16%;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__list--national .modContentClinic__list__item--kyushu {
    bottom: 2vw;
    left: 13vw;
  }
}
.modContentClinic__list--national .modContentClinic__list__item .modBtn {
  font-size: 18px;
}
@media screen and (max-width: 657px) {
  .modContentClinic__list--national .modContentClinic__list__item .modBtn {
    font-size: 2.8125vw;
  }
}
.modContentClinic__link {
  text-align: center;
}
@media screen and (min-width: 658px) {
  .modContentClinic__link {
    margin: 45px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentClinic__link {
    margin: 6.40625vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFixedPay {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 964px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 657px) {
  .modContentFixedPay {
    margin: 2.5vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFixedPay + .modContentNote {
    padding: 0 0 0 12px;
    margin: -20px auto 0;
  }
}
@media screen and (min-width: 658px) {
  .modContentFixedPay__left {
    width: 475px;
    height: 300px;
    padding: 88px 0 0 54px;
    background: url(https://www.rizeclinic.com/assets/img/common/bg_fixedpay.svg) no-repeat -10px center;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__left {
    width: 80%;
    height: 57.03125vw;
    margin: 0 auto;
    background: url(https://www.rizeclinic.com/assets/img/common/bg_fixedpay_sp.svg) no-repeat left center;
    background-size: 100% auto;
    padding: 16.71875vw 0vw 0vw 0vw;
  }
}
.modContentFixedPay__left .upper {
  display: flex;
  text-align: center;
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__left .upper {
    justify-content: center;
    padding: 0vw 3.75vw 0vw 0vw;
  }
}
.modContentFixedPay__left .upper__text {
  display: flex;
  align-items: flex-end;
  font-size: 21px;
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__left .upper__text {
    font-size: 4.0625vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFixedPay__left .upper__text {
    margin-bottom: 15px;
    letter-spacing: -0.2em;
  }
  .modContentFixedPay__left .upper__text:first-of-type {
    margin-right: 14px;
  }
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__left .upper__text {
    letter-spacing: -0.1em;
    padding: 0vw 0vw 2.96875vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFixedPay__left .upper img {
    width: 185px;
    height: 93px;
  }
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__left .upper img {
    width: 32.8125vw;
    height: 16.09375vw;
    margin: 0vw 1.25vw 0vw 1.25vw;
  }
}
.modContentFixedPay__left .under {
  font-weight: bold;
  font-size: 27px;
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__left .under {
    font-size: 5vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFixedPay__left .under {
    margin: 0 0 0 27px;
    text-align: left;
  }
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__left .under {
    text-align: center;
  }
}
.modContentFixedPay__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 658px) {
  .modContentFixedPay__right {
    width: 470px;
    padding-top: 82px;
  }
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__right {
    padding: 0vw 5.15625vw 0vw 5.15625vw;
    margin: -1.25vw 0vw 0vw 0vw;
  }
}
.modContentFixedPay__right .item {
  font-weight: bold;
  text-align: center;
  background: var(--white);
}
@media screen and (min-width: 658px) {
  .modContentFixedPay__right .item {
    width: 151px;
    height: 136px;
    padding: 20px 0;
    border-radius: 24px;
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__right .item {
    width: calc(33.3333333333% - 0.78125vw);
    border-radius: 3.75vw;
    padding: 5.625vw 0vw 3.75vw 0vw;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
  }
}
.modContentFixedPay__right .item dt {
  font-size: 20px;
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__right .item dt {
    font-size: 4.0625vw;
  }
}
.modContentFixedPay__right .item dd {
  color: var(--orange);
  font-size: 38px;
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__right .item dd {
    font-size: 6.25vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFixedPay__right .item dd {
    margin: 3px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentFixedPay__right .item dd {
    margin: 0.46875vw 0vw 0vw 0vw;
  }
}
.modContentFixedPay__right .item.is-act.delay-1 {
  animation-delay: 0s;
}
.modContentFixedPay__right .item.is-act.delay-2 {
  animation-delay: 0.4s;
}
.modContentFixedPay__right .item.is-act.delay-3 {
  animation-delay: 0.8s;
}
.modContentFixedPay .modContentNote {
  line-height: 1.4;
}
@media screen and (min-width: 658px) {
  .modContentFixedPay .modContentNote {
    margin-top: 15px;
  }
}
@media screen and (max-width: 657px) {
  .modContentFixedPay .modContentNote {
    margin: 2.34375vw 0vw 0vw 0vw;
  }
}
.modContentNote {
  max-width: 968px;
  margin: 17px auto 0;
  color: var(--gray);
  text-align: left;
  letter-spacing: -0.01em;
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .modContentNote {
    font-size: 2.8125vw;
  }
}
@media screen and (max-width: 657px) {
  .modContentNote {
    padding: 0vw 5.15625vw 0vw 5.15625vw;
    margin: 2.65625vw auto 0vw auto;
  }
}
.modContentFree {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-delay: 0.5s;
}
@media screen and (min-width: 658px) {
  .modContentFree {
    max-width: 960px;
    padding: 30px 120px 25px;
    margin: 128px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentFree {
    padding: 5.15625vw 6.40625vw 5.15625vw 6.40625vw;
    margin: 10.78125vw 5.15625vw 0vw 5.15625vw;
  }
}
.modContentFree::after {
  position: absolute;
  display: block;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/common/text_free.svg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (min-width: 658px) {
  .modContentFree::after {
    top: -91px;
    right: 5px;
    width: 170px;
    height: 103px;
  }
}
@media screen and (max-width: 657px) {
  .modContentFree::after {
    top: -15.9375vw;
    right: 0.9375vw;
    width: 25.15625vw;
    height: 19.375vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFree__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 550px;
  }
}
.modContentFree__list__item {
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.01em;
  background: var(--white);
  font-size: 19px;
}
@media screen and (max-width: 657px) {
  .modContentFree__list__item {
    font-size: 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFree__list__item {
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
    width: 255px;
    padding: 2px 0;
    border-radius: 6px;
  }
  .modContentFree__list__item:nth-child(even) {
    margin-left: 30px;
  }
  .modContentFree__list__item:nth-child(n+3) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 657px) {
  .modContentFree__list__item {
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
    width: 43.90625vw;
    line-height: 1;
    border-radius: 0.9375vw;
    padding: 0.9375vw 0vw 0.9375vw 0vw;
  }
  .modContentFree__list__item:nth-child(n+2) {
    margin: 2.03125vw 0vw 0vw 0vw;
  }
}
.modContentFree__list__item .caution {
  display: inline-block;
  vertical-align: top;
  font-size: 10px;
}
@media screen and (max-width: 657px) {
  .modContentFree__list__item .caution {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFree__list__item .caution {
    margin: 0 -10px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentFree__list__item .caution {
    transform: scale(0.5);
    margin: 0vw -1.5625vw 0vw 0vw;
  }
}
.modContentFree__list__item .emp {
  color: var(--lightRizeGold);
}
.modContentFree__img {
  display: flex;
  align-items: center;
}
.modContentFree__img .yen,
.modContentFree__img .zero {
  display: block;
}
.modContentFree__img .zero.is-act {
  animation: rotateAnime 1.5s ease-in-out 0.5s forwards;
}
@keyframes rotateAnime {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@media screen and (min-width: 658px) {
  .modContentFree__img {
    margin: 0 0 0 37px;
  }
  .modContentFree__img .yen {
    width: 27px;
    height: 37px;
  }
  .modContentFree__img .zero {
    width: 94px;
    height: 119px;
    margin: 0 0 0 12px;
  }
}
@media screen and (max-width: 657px) {
  .modContentFree__img {
    margin: 0vw 2.03125vw 0vw 5.3125vw;
  }
  .modContentFree__img .yen {
    width: 5.3125vw;
    height: 7.1875vw;
  }
  .modContentFree__img .zero {
    width: 17.96875vw;
    height: 22.96875vw;
    margin: 0vw 0vw 0vw 2.34375vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFree--inBox {
    align-items: flex-start;
    max-width: 715px;
    padding: 0;
    margin: 32px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentFree--inBox {
    padding: 0vw 0vw 0vw 0vw;
    margin: 7.8125vw 0vw 0vw 0vw;
  }
}
.modContentFree--inBox::after {
  content: none;
}
.modContentFree--inBox .modContentFree__list__item {
  color: var(--gray);
  background: var(--goldGray);
}
@media screen and (min-width: 658px) {
  .modContentFree--inBox .modContentFree__list__item {
    width: 257px;
    padding: 0;
  }
}
@media screen and (min-width: 658px) {
  .modContentFree--inBox .modContentFree__list__item:nth-child(n+3) {
    margin-top: 13px;
  }
}
.modContentFree--inBox .modContentFree__list__item .emp {
  color: var(--gray);
}
@media screen and (min-width: 658px) {
  .modContentFree--inBox .modContentFree__img {
    width: 134px;
    height: auto;
  }
}
.modContentPrice {
  max-width: 964px;
  overflow: hidden;
  animation-delay: 1.2s;
}
@media screen and (min-width: 658px) {
  .modContentPrice {
    margin: 70px auto 0;
    border-radius: 24px;
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice {
    border-radius: 3.75vw;
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
    margin: 6.25vw 5.15625vw 6.25vw 5.15625vw;
  }
}
.modContentPrice__head {
  text-align: center;
  background: var(--lightGoldGray);
  line-height: 0.5434782609;
}
.modContentPrice__head .parts {
  color: var(--lightRizeGold);
  letter-spacing: 0.1em;
  font-size: 25px;
}
@media screen and (max-width: 657px) {
  .modContentPrice__head .parts {
    font-size: 5vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentPrice__head .parts {
    padding: 32px 0 15px;
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice__head .parts {
    padding: 3.75vw 0vw 1.25vw 0vw;
  }
}
.modContentPrice__head .parts .emp {
  font-weight: bold;
}
.modContentPrice__head .parts::before {
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: middle;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/common/icon_yen.svg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (min-width: 658px) {
  .modContentPrice__head .parts::before {
    width: 31px;
    height: 38px;
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice__head .parts::before {
    width: 4.53125vw;
    height: 5.625vw;
  }
}
.modContentPrice__body {
  text-align: center;
  background: var(--white);
}
@media screen and (min-width: 658px) {
  .modContentPrice__body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 0 30px;
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice__body {
    padding: 4.0625vw 0vw 1.5625vw 0vw;
  }
}
.modContentPrice__body .course {
  font-size: 18px;
  line-height: 1.3333333333;
}
@media screen and (max-width: 657px) {
  .modContentPrice__body .course {
    font-size: 4.375vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentPrice__body .course {
    margin: 0 65px -15px -25px;
  }
}
.modContentPrice__body .course__count {
  font-weight: bold;
}
@media screen and (min-width: 658px) {
  .modContentPrice__body .course__count {
    display: inline-block;
    margin: 0 15px 0 0;
    vertical-align: 4px;
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice__body .course__count {
    margin: 0vw 3.75vw 0vw 0vw;
  }
}
.modContentPrice__body .course__num {
  font-family: "FriendlyExpart";
  font-weight: normal;
  font-size: 28px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 657px) {
  .modContentPrice__body .course__num {
    font-size: 7.1875vw;
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice__body .course__num {
    margin: 0vw 0.9375vw 0vw 0vw;
  }
}
.modContentPrice__body .price {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
@media screen and (min-width: 658px) {
  .modContentPrice__body .price__icon img {
    width: 86px;
    height: 43px;
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice__body .price__icon img {
    width: 15.78125vw;
    height: 8.125vw;
  }
}
.modContentPrice__body .price__num {
  font-family: "FriendlyExpart";
  color: var(--orange);
  letter-spacing: -0.05em;
  font-size: 50px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 657px) {
  .modContentPrice__body .price__num {
    font-size: 10.625vw;
  }
}
.modContentPrice__body .price__month {
  font-weight: bold;
  font-size: 17px;
  line-height: 1.2941176471;
}
@media screen and (max-width: 657px) {
  .modContentPrice__body .price__month {
    font-size: 4.0625vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentPrice__body .price__month {
    margin: 0 0 0 8px;
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice__body .price__month {
    margin: 0vw 0vw 0vw 1.25vw;
  }
}
.modContentPrice__body .price__rate {
  position: absolute;
  font-weight: bold;
  color: var(--lightRizeGold);
  font-size: 14px;
  line-height: 0.7368421053;
}
@media screen and (max-width: 657px) {
  .modContentPrice__body .price__rate {
    font-size: 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentPrice__body .price__rate {
    top: 25px;
    right: 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice__body .price__rate {
    top: 4.0625vw;
    left: calc(100% - 25.9375vw);
  }
}
.modContentPrice__btnWrap {
  display: block;
}
@media screen and (min-width: 658px) {
  .modContentPrice__btnWrap {
    margin: 70px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice__btnWrap {
    margin: 8.2vw 5.12vw 0;
  }
}
.modContentPrice__btnWrap .modBtn {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 658px) {
  .modContentPrice__btnWrap .modBtn:nth-child(n+2) {
    margin: 26px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentPrice__btnWrap .modBtn:nth-child(n+2) {
    margin: 4.0625vw auto 0vw auto;
  }
}
@media screen and (min-width: 658px) {
  .modContentFaq {
    padding: 45px 68px 63px;
    border-radius: 0 60px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentFaq {
    border-radius: 0 7.8vw 0 0;
    padding: 0vw 5.15625vw 12.8125vw 5.15625vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFaq .modSection__title {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 657px) {
  .modContentFaq .modSection__title {
    margin-bottom: 5.46875vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentFaq .modBtnWrap {
    margin-top: 45px;
  }
}
@media screen and (max-width: 657px) {
  .modContentFaq .modBtnWrap {
    margin: 6.40625vw 0vw 0vw 0vw;
  }
}
.modContentCampaign {
  position: relative;
  color: var(--white);
  text-align: center;
  background: linear-gradient(to right, #E8857D 0%, #EFAAA4 100%);
}
@media screen and (min-width: 658px) {
  .modContentCampaign {
    width: 964px;
    padding: 43px 40px;
    margin: 55px auto 0;
    border-radius: 24px;
  }
}
@media screen and (max-width: 657px) {
  .modContentCampaign {
    margin: 8.59375vw 0vw 0vw 0vw;
    padding: 7.03125vw 5.15625vw 14.84375vw 5.15625vw;
    border-radius: 3.125vw;
  }
}
.modContentCampaign::before {
  position: absolute;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent transparent #ec9790 transparent;
  border-style: solid;
  transform: translateX(-50%);
}
@media screen and (min-width: 658px) {
  .modContentCampaign::before {
    top: -13px;
    border-width: 0 15.5px 26px 15.5px;
  }
}
@media screen and (max-width: 657px) {
  .modContentCampaign::before {
    top: -2.8125vw;
    border-width: 0 1.5625vw 2.8125vw 1.5625vw;
  }
}
.modContentCampaign::after {
  position: absolute;
  display: block;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/plans/text_campaign.svg) no-repeat 0 0;
  background-size: 100% auto;
}
@media screen and (min-width: 658px) {
  .modContentCampaign::after {
    right: 0;
    bottom: 35px;
    width: 196px;
    height: 97px;
  }
}
@media screen and (max-width: 657px) {
  .modContentCampaign::after {
    right: 1.5625vw;
    bottom: 2.34375vw;
    width: 45%;
    padding: 23% 0 0;
  }
}
.modContentCampaign__title {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 657px) {
  .modContentCampaign__title {
    font-size: 5vw;
  }
}
@media screen and (max-width: 657px) {
  .modContentCampaign__title {
    line-height: 1.4;
  }
}
.modContentCampaign__off {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #e8857d;
  background: var(--white);
  font-size: 27px;
}
@media screen and (max-width: 657px) {
  .modContentCampaign__off {
    font-size: 6.25vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentCampaign__off {
    width: 716px;
    padding: 28px 0;
    margin: 32px auto;
    border-radius: 24px;
  }
}
@media screen and (max-width: 657px) {
  .modContentCampaign__off {
    border-radius: 1.875vw;
    margin: 2.34375vw 0vw 3.125vw 0vw;
    padding: 4.6875vw 0.78125vw 2.34375vw 0.78125vw;
  }
}
.modContentCampaign__off .icon {
  display: inline-block;
  background: url(https://www.rizeclinic.com/assets/img/plans/icon_arrow_down.svg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (min-width: 658px) {
  .modContentCampaign__off .icon {
    width: 68px;
    height: 76px;
    margin: 0 14px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentCampaign__off .icon {
    width: 9.0625vw;
    height: 10.15625vw;
    margin: 0vw 1.40625vw 0vw 0vw;
  }
}
.modContentCampaign__off .num {
  font-family: "FriendlyExpart";
  font-weight: normal;
  font-size: 55px;
}
@media screen and (max-width: 657px) {
  .modContentCampaign__off .num {
    font-size: 12.5vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentCampaign__off .num {
    margin: 0 3px;
  }
}
@media screen and (max-width: 657px) {
  .modContentCampaign__off .num {
    margin: 0vw 0.46875vw 0vw 0.46875vw;
  }
}
.modContentCampaign__off .ja {
  display: inline-block;
}
@media screen and (min-width: 658px) {
  .modContentCampaign__off .ja {
    margin: 8px 0 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modContentCampaign__off .ja {
    margin: 1.25vw 0vw 0vw 0vw;
  }
}
.modContentCampaign__off .en {
  font-family: "FriendlyExpart";
  font-weight: normal;
  font-size: 35px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 657px) {
  .modContentCampaign__off .en {
    font-size: 7.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .modContentCampaign__off .en {
    margin: 6px 0 0 6px;
  }
}
@media screen and (max-width: 657px) {
  .modContentCampaign__off .en {
    margin: 0.9375vw 0vw 0vw 0.9375vw;
  }
}
.modContentCampaign__text {
  font-weight: bold;
  line-height: 2;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 657px) {
  .modContentCampaign__text {
    font-size: 3.4375vw;
  }
}
@media screen and (max-width: 657px) {
  .modContentCampaign__text {
    padding: 0vw 1.5625vw 0vw 1.5625vw;
  }
}

.js-text-hide {
  display: none;
}

.swiper-pagination {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 22px auto 0;
}
@media screen and (max-width: 657px) {
  .swiper-pagination {
    margin: 6.09375vw auto 0vw auto;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 3px;
}
@media screen and (max-width: 657px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 2vw;
    height: 2vw;
    border-radius: 2px;
  }
}
.swiper-pagination .swiper-pagination-bullet:nth-child(n+2) {
  margin-left: 12px;
}
@media screen and (max-width: 657px) {
  .swiper-pagination .swiper-pagination-bullet:nth-child(n+2) {
    margin: 0vw 0vw 0vw 2.03125vw;
  }
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
}

.modBlockUsf {
  position: relative;
  display: block;
  will-change: transform;
}
@media screen and (min-width: 658px) {
  .modBlockUsf {
    width: 177px;
    height: 171px;
    margin: 48px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .modBlockUsf {
    margin: 7.5vw auto 0vw auto;
    width: 30.46875vw;
    height: 29.53125vw;
  }
}
.modBlockUsf__text {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.1s;
}
@media screen and (min-width: 658px) {
  .modBlockUsf__text {
    top: -10px;
    width: 177px;
    height: 177px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockUsf__text {
    left: -0.96875vw;
    width: 30.46875vw;
    height: 30.46875vw;
  }
}
.modBlockUsf__img {
  position: absolute;
}
@media screen and (min-width: 658px) {
  .modBlockUsf__img {
    top: 13px;
    left: 23px;
    width: 134px;
    height: 125px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockUsf__img {
    top: 3.75vw;
    left: 2.96875vw;
    width: 22.8125vw;
    height: 22.8125vw;
  }
}
.modBlockUsf__img.is-act {
  animation: rotation 1.5s ease-in-out 0.5s forwards;
}
@keyframes rotation {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.modBlockHello {
  position: relative;
  display: block;
  text-align: center;
}
@media screen and (min-width: 658px) {
  .modBlockHello {
    margin: 50px 0 0;
  }
}
.modBlockHello .rizekuma {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 658px) {
  .modBlockHello .rizekuma {
    width: 105px;
    height: auto;
  }
}
@media screen and (max-width: 657px) {
  .modBlockHello .rizekuma {
    width: 15.9375vw;
    height: auto;
    margin: 9.375vw 0vw 0vw 0vw;
  }
}
.modBlockHello .hello {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 658px) {
  .modBlockHello .hello {
    width: 235px;
    height: 174px;
    margin: -31px 0 0 -140px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockHello .hello {
    width: 36.71875vw;
    height: 26.875vw;
    margin: 2.5vw 0vw 0vw -22.65625vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockHello + .modReasonBox {
    margin: 295px 0 0 45px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockHello + .modReasonBox {
    margin: 49.6875vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason .modSection__inner {
    padding: 42px 70px 70px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .modSection__inner {
    padding: 7.8125vw 5.46875vw 12.5vw 5.46875vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason .modSection__inner--attempt {
    padding: 68px 120px 92px;
    margin: 95px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .modSection__inner--attempt {
    margin: 16.40625vw 0vw 0vw 0vw;
    padding: 7.8125vw 5.46875vw 5.46875vw 5.46875vw;
  }
}
.modBlockReason__title {
  font-weight: bold;
  color: var(--lightRizeGold);
  font-size: 26px;
  line-height: 1.6153846154;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 657px) {
  .modBlockReason__title {
    font-size: 5vw;
  }
}
.modBlockReason__title::before, .modBlockReason__title::after {
  position: absolute;
  display: block;
  content: "";
}
.modBlockReason__title::before {
  background: url(https://www.rizeclinic.com/assets/img/top/icon_comma01.png) no-repeat center center;
  background-size: 100% auto;
}
.modBlockReason__title::after {
  background: url(https://www.rizeclinic.com/assets/img/top/icon_comma02.png) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (max-width: 657px) {
  .modBlockReason__title {
    padding: 1.5625vw 2.8125vw 1.5625vw 2.8125vw;
  }
  .modBlockReason__title--center {
    text-align: center;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason__title {
    margin: 0 45px;
  }
}
.modBlockReason__title .emp {
  color: var(--orange);
}
@media screen and (min-width: 658px) {
  .modBlockReason__title::before {
    top: -81px;
    left: -63px;
    width: 76px;
    height: 69px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason__title::before {
    top: -17.5vw;
    left: -4.375vw;
    width: 17.5vw;
    height: 15vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason__title::after {
    top: 21px;
    right: -31px;
    width: 91px;
    height: 81px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason__title::after {
    right: -0.9375vw;
    bottom: -19.84375vw;
    width: 20.3125vw;
    height: 16.40625vw;
  }
}
.modBlockReason__text {
  font-weight: bold;
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 657px) {
  .modBlockReason__text {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason__text {
    margin: 64px 45px 0;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason__text {
    margin: 19.53125vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason__text--top {
    margin-top: 45px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason__text--top {
    margin: 3.125vw 0vw 0vw 0vw;
  }
}
.modBlockReason .reason {
  position: relative;
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason {
    margin: 100px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason {
    margin: 18.75vw 0vw 0vw 0vw;
  }
}
.modBlockReason .reason__head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head {
    padding-bottom: 3.125vw;
    border-bottom: 0.46875vw solid var(--white);
    margin: 0vw 0vw 5.46875vw 0vw;
  }
}
.modBlockReason .reason__head::before, .modBlockReason .reason__head::after {
  position: absolute;
  display: block;
  content: "";
  background: var(--orange);
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__head::before, .modBlockReason .reason__head::after {
    top: 185px;
    left: calc(50% - 40px);
    width: 80px;
    height: 1px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head::before, .modBlockReason .reason__head::after {
    bottom: 63.4375vw;
    left: calc(50% - 4.21875vw);
    width: 12.5vw;
    height: 1px;
  }
}
.modBlockReason .reason__head::before {
  transform: rotate(-45deg);
}
.modBlockReason .reason__head::after {
  transform: rotate(45deg);
}
.modBlockReason .reason__head__item {
  position: relative;
  width: 50%;
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__head__item {
    pointer-events: none;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head__item {
    cursor: pointer;
  }
  .modBlockReason .reason__head__item::after {
    position: absolute;
    bottom: -3.59375vw;
    left: 15%;
    display: block;
    width: 68%;
    height: 0.46875vw;
    content: "";
    background: var(--orange);
    transition: transform 0.3s;
    transform: scale(0, 1);
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head__item:first-child.swiper-slide-thumb-active::after {
    transform: scale(1, 1);
    transform-origin: right top;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head__item:last-child.swiper-slide-thumb-active::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@media screen and (max-width: 657px) and (max-width: 657px) {
  .modBlockReason .reason__head__item.swiper-slide-thumb-active .title {
    color: var(--lightRizeGold);
  }
}
@media screen and (max-width: 657px) and (max-width: 657px) {
  .modBlockReason .reason__head__item.swiper-slide-thumb-active .img img {
    filter: none;
    opacity: 1;
  }
}
.modBlockReason .reason__head__item .title {
  font-weight: bold;
  color: var(--lightRizeGold);
  text-align: center;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head__item .title {
    font-size: 4.375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__head__item .title {
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head__item .title {
    color: var(--lightGray);
    margin: 0vw 0vw 3.90625vw 0vw;
  }
}
.modBlockReason .reason__head__item .title .emp {
  font-size: 25px;
  line-height: 1.32;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head__item .title .emp {
    font-size: 5.3125vw;
  }
}
.modBlockReason .reason__head__item .title .emp .num {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, Arial, Helvetica, Verdana, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 32px;
}
.modBlockReason .reason__head__item .img {
  display: block;
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__head__item .img {
    min-height: 305px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head__item .img {
    min-height: 53.90625vw;
  }
}
.modBlockReason .reason__head__item .img img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head__item .img img {
    filter: grayscale(100%) sepia(10%);
  }
}
.modBlockReason .reason__head__item .img--staff img {
  height: auto;
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__head__item .img--staff img {
    width: 130px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head__item .img--staff img {
    width: 27.65625vw;
  }
}
.modBlockReason .reason__head__item .img--machine img {
  height: auto;
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__head__item .img--machine img {
    width: 191px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head__item .img--machine img {
    width: 39.84375vw;
  }
}
.modBlockReason .reason__head__item:last-child .title {
  padding-left: 2.34375vw;
}
.modBlockReason .reason__head .swiper-wrapper {
  align-items: flex-end;
}
.modBlockReason .reason__head--show {
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__head--show::before, .modBlockReason .reason__head--show::after {
    bottom: 10.9375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__head--show .reason__head__item {
    width: auto;
    padding: 0 6%;
  }
}
.modBlockReason .reason__head--show .reason__head__item::after {
  display: none;
}
.modBlockReason .reason__body {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__body {
    pointer-events: none;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body {
    padding-top: 28px;
    overflow-x: hidden;
    overflow-y: hidden;
  }
}
.modBlockReason .reason__body__item {
  position: relative;
  margin: 0 auto;
  color: var(--white);
  background: var(--gray);
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__body__item {
    width: calc(50% - 95px) !important;
    min-height: 614px;
    padding: 52px 20px 175px;
    margin: 0 auto !important;
    border-radius: 24px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item {
    border-radius: 3.75vw;
    padding: 7.03125vw 5.9375vw 7.8125vw 5.9375vw;
  }
}
.modBlockReason .reason__body__item::before {
  position: absolute;
  top: -15px;
  left: calc(50% - 15px);
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent transparent var(--gray) transparent;
  border-style: solid;
  border-width: 0 15.5px 26px 15.5px;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item::before {
    top: -25px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item--professional::before {
    left: calc(25% - 3.4375vw);
  }
}
.modBlockReason .reason__body__item--professional::after {
  position: absolute;
  right: -12px;
  bottom: 82px;
  display: block;
  width: 227px;
  height: 131px;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/whatwedo/text_professional.svg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item--professional::after {
    right: -2.8125vw;
    bottom: 10.46875vw;
    width: 48.4375vw;
    height: 27.65625vw;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item--effect::before {
    left: calc(25% - 3.4375vw);
  }
}
.modBlockReason .reason__body__item--effect::after {
  position: absolute;
  right: -2px;
  bottom: 66px;
  display: block;
  width: 153px;
  height: 82px;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/whatwedo/text_effect.svg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item--effect::after {
    right: 0;
    bottom: 6.25vw;
    width: 29.84375vw;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item--machine::before {
    right: calc(25% - 3.4375vw);
    left: auto;
  }
}
.modBlockReason .reason__body__item--machine::after {
  position: absolute;
  right: 0;
  bottom: 132px;
  display: block;
  width: 165px;
  height: 57px;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/whatwedo/text_machine.svg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item--machine::after {
    right: -2.8125vw;
    bottom: 10.46875vw;
    width: 39.0625vw;
    height: 27.65625vw;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item--select::before {
    right: calc(25% - 3.4375vw);
    left: auto;
  }
}
.modBlockReason .reason__body__item--select::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  display: block;
  width: 164px;
  height: 121px;
  content: "";
  background: url(https://www.rizeclinic.com/assets/img/whatwedo/text_select.svg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item--select::after {
    right: -2.8125vw;
    bottom: 1.5625vw;
    width: 39.0625vw;
    height: 27.65625vw;
  }
}
.modBlockReason .reason__body__item .title {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item .title {
    font-size: 5vw;
  }
}
.modBlockReason .reason__body__item .title .emp {
  color: var(--orange);
}
.modBlockReason .reason__body__item .text {
  font-weight: bold;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item .text {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__body__item .text {
    padding: 0 20px;
    margin: 35px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item .text {
    margin: 7.5vw 0vw 0vw 0vw;
    padding: 0;
    line-height: 1.85;
  }
}
.modBlockReason .reason__body__item .modBtn {
  z-index: 1;
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item .modBtn {
    font-size: 3.4375vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__body__item .modBtn {
    pointer-events: initial;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item .modBtn {
    padding: 2.8125vw 0vw 2.8125vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__body__item .modBtnWrap {
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -162px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item .modBtnWrap {
    margin: 12.5vw 0vw 0vw 0vw;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason__body__item {
    height: 113.5vw;
    padding: 7.34375vw 5.9375vw 7.8125vw 5.9375vw;
  }
  .modBlockReason .reason__body__item .text {
    line-height: 1.82;
  }
  .modBlockReason .reason__body__item .modBtnWrap {
    position: absolute;
    bottom: 8.90625vw;
    left: 5.9375vw;
    width: calc(100% - 11.875vw);
    margin: 0;
  }
  .modBlockReason .reason__body__item.reason__body__item--machine .title {
    line-height: 1.5;
  }
  .modBlockReason .reason__body__item.reason__body__item--machine .text {
    margin: 4.6875vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .modBlockReason .reason__box {
    width: 432px;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason--plan .reason__head--show::before, .modBlockReason .reason--plan .reason__head--show::after {
    bottom: 43.75vw;
    left: calc(50% - 5.78125vw);
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason--plan .reason__head__item .img--machine img {
    width: 32.96875vw;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 657px) {
  .modBlockReason .reason--plan .reason__head__item .img {
    min-height: unset;
  }
}

.plansOutline {
  text-align: center;
}
@media screen and (min-width: 658px) {
  .plansOutline {
    width: 1054px;
    margin: 75px auto 0;
    border-radius: 20px;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline {
    margin: 9.375vw 5.15625vw 0vw 5.15625vw;
    border-radius: 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .plansOutline--top {
    margin-top: 130px;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline--top {
    margin: 15.625vw 5.15625vw 0vw 5.15625vw;
  }
}
@media screen and (min-width: 658px) {
  .plansOutline--bottom {
    margin-top: 160px;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline--bottom {
    margin: 23.4375vw 5.15625vw 0vw 5.15625vw;
  }
}
@media screen and (min-width: 658px) {
  .plansOutline .modBox {
    padding: 35px 96px 40px;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline .modBox {
    padding: 6.09375vw 5.15625vw 6.09375vw 5.15625vw;
  }
}
.plansOutline__title {
  margin: 0 0 10px;
  font-weight: bold;
  color: var(--lightRizeGold);
  font-size: 25px;
}
@media screen and (max-width: 657px) {
  .plansOutline__title {
    font-size: 5vw;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__title {
    margin: 0vw 0vw 1.5625vw 0vw;
  }
}
.plansOutline__thumb {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (min-width: 658px) {
  .plansOutline__thumb img {
    width: 63px;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__thumb img {
    width: 12.5vw;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__thumb {
    width: 12.5vw;
  }
}
@media screen and (min-width: 658px) {
  .plansOutline__thumb li {
    width: 63px;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__thumb li {
    width: 12.5vw;
  }
}
@media screen and (min-width: 658px) {
  .plansOutline__thumb li:nth-child(n+2) {
    margin: 0 0 0 20px;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__thumb li:nth-child(n+2) {
    margin: 0vw 0vw 0vw 3.125vw;
  }
}
.plansOutline__thumbList {
  display: flex;
  justify-content: center;
}
.plansOutline__thumbList__item {
  margin: 0 10px;
}
@media screen and (min-width: 658px) {
  .plansOutline__thumbList__item {
    width: 63px;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__thumbList__item {
    width: 12.5vw;
  }
}
@media screen and (min-width: 658px) {
  .plansOutline__thumbList--half .plansOutline__thumbList__item {
    margin: 0 21%;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__thumbList--half .plansOutline__thumbList__item {
    margin: 0 17%;
  }
}
.plansOutline__pay {
  border-top: 1px solid var(--lightRizeGold);
}
@media screen and (min-width: 658px) {
  .plansOutline__pay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0 0;
    margin: 25px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__pay {
    margin: 2.8125vw 0vw 0vw 0vw;
    padding: 2.65625vw 0vw 0vw 0vw;
  }
}
.plansOutline__pay__course {
  font-weight: bold;
  letter-spacing: 0.01em;
  font-size: 18px;
}
@media screen and (max-width: 657px) {
  .plansOutline__pay__course {
    font-size: 4.375vw;
  }
}
@media screen and (min-width: 658px) {
  .plansOutline__pay__course {
    margin: 0 65px -15px 0;
  }
}
.plansOutline__pay__course .num {
  font-family: "FriendlyExpart";
  font-weight: normal;
  font-size: 28px;
}
@media screen and (max-width: 657px) {
  .plansOutline__pay__course .num {
    font-size: 7.1875vw;
  }
}
.plansOutline__pay__price {
  position: relative;
  line-height: 1;
}
@media screen and (min-width: 658px) {
  .plansOutline__pay__price .icon {
    width: 86px;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__pay__price .icon {
    width: 17.1875vw;
  }
}
.plansOutline__pay__price .num {
  font-family: "FriendlyExpart";
  font-weight: normal;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.05em;
  font-size: 50px;
}
@media screen and (max-width: 657px) {
  .plansOutline__pay__price .num {
    font-size: 10.625vw;
  }
}
.plansOutline__pay__price .month {
  font-weight: bold;
  vertical-align: super;
  font-size: 17px;
}
@media screen and (max-width: 657px) {
  .plansOutline__pay__price .month {
    font-size: 4.21875vw;
  }
}
.plansOutline__pay__price .rate {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 0 9%;
  font-weight: bold;
  color: var(--lightRizeGold);
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .plansOutline__pay__price .rate {
    font-size: 3.125vw;
  }
}
.plansOutline__pay__wrapper {
  display: flex;
}
.plansOutline__pay__wrapper .plansOutline__pay {
  display: block;
  width: 50%;
}
@media screen and (min-width: 658px) {
  .plansOutline__pay__wrapper .plansOutline__pay {
    text-align: center;
  }
  .plansOutline__pay__wrapper .plansOutline__pay + .plansOutline__pay {
    position: relative;
  }
  .plansOutline__pay__wrapper .plansOutline__pay + .plansOutline__pay::before {
    position: absolute;
    top: 60%;
    left: 0;
    display: block;
    width: 1px;
    height: 70%;
    content: "";
    background: var(--lightRizeGold);
    transform: translateY(-50%);
  }
}
.plansOutline__pay__wrapper .plansOutline__pay__course {
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 657px) {
  .plansOutline__pay__wrapper .plansOutline__pay__course {
    font-size: 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .plansOutline__pay__wrapper .plansOutline__pay__course {
    margin-bottom: 20px;
  }
}
.plansOutline__pay__wrapper .plansOutline__pay__inner {
  display: inline-block;
}
@media screen and (max-width: 657px) {
  .plansOutline__pay__wrapper .plansOutline__pay__price .num {
    font-size: 6.875vw;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__pay__wrapper .plansOutline__pay__price .month {
    font-size: 2.8125vw;
  }
}
.plansOutline__text {
  padding: 10px 0 0;
  margin: 15px 0 0;
  border-top: 1px solid var(--lightRizeGold);
}
@media screen and (max-width: 657px) {
  .plansOutline__text {
    margin: 2.34375vw 0vw 0vw 0vw;
    padding: 1.5625vw 0vw 0vw 0vw;
  }
}
.plansOutline__text .perOne {
  padding: 5px 5px;
  text-align: center;
  background: var(--lightGoldGray);
  line-height: 1.5;
  font-size: 16px;
}
@media screen and (max-width: 657px) {
  .plansOutline__text .perOne {
    font-size: 2.8125vw;
  }
}
.plansOutline__text .caution {
  text-align: left;
  line-height: 1.4285714286;
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .plansOutline__text .caution {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .plansOutline__text .caution {
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .plansOutline__text .caution {
    margin: 2.03125vw 0vw 0vw 0vw;
  }
}
.plansOutline__text .modBtnWrap {
  margin: 29px 0 0;
}
@media screen and (max-width: 657px) {
  .plansOutline__text .modBtnWrap {
    margin: 5.3125vw 0vw 0vw 0vw;
  }
}
.plansOutline__text .modBtnWrap .modBtn {
  padding: 14px 0;
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .plansOutline__text .modBtnWrap .modBtn {
    padding: 3.125vw 0vw 3.125vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .plansPoint {
    max-width: 100vw;
    margin: 175px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .plansPoint {
    margin: 12.5vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .plansPoint .modSection__title {
    margin: 0 0 175px;
  }
}
@media screen and (max-width: 657px) {
  .plansPoint .modSection__title {
    margin: 0vw 0vw 24.21875vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .plansPoint .modBox {
    margin-top: 75px;
  }
}
@media screen and (min-width: 658px) {
  .plansPoint .modBox .text {
    padding: 0 20px;
  }
}
.plansPoint .modBox .modBtnWrap {
  margin: 36px 0 0;
}
@media screen and (max-width: 657px) {
  .plansPoint .modBox .modBtnWrap {
    margin: 5.625vw 0vw 0vw 0vw;
  }
}

.colSlide {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
}
@media screen and (max-width: 657px) {
  .colSlide {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 658px) {
  .colSlide {
    padding-right: 47px;
    margin: 70px auto 0 auto;
  }
}
@media screen and (max-width: 657px) {
  .colSlide {
    padding: 0vw 5.3125vw 0vw 5.3125vw;
    margin: auto;
  }
}
@media screen and (max-width: 657px) {
  .colSlide__cont {
    overflow-x: scroll;
    padding: 6.25vw 0vw 0vw 0vw;
  }
}
@media screen and (max-width: 657px) {
  .colSlide__item {
    width: 35.9375vw;
  }
}
@media screen and (min-width: 658px) {
  .colSlide__item:nth-child(n+2) {
    margin: 0 0 0 50px;
  }
}
@media screen and (max-width: 657px) {
  .colSlide__item:nth-child(n+2) {
    margin: 0vw 0vw 0vw 4.6875vw;
  }
}
.colSlide__item__name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  background-color: var(--lightRizeGold);
}
@media screen and (min-width: 658px) {
  .colSlide__item__name {
    height: 54px;
    margin: 15px 0 0;
    line-height: 1.2;
    border-radius: 27px;
  }
}
@media screen and (max-width: 657px) {
  .colSlide__item__name {
    height: 10.9375vw;
    border-radius: 6.25vw;
    margin: 3.59375vw 0vw 3.125vw 0vw;
  }
}
.colSlide__item__img {
  display: block;
  height: 294px;
}
@media screen and (max-width: 657px) {
  .colSlide__item__img {
    height: 67.1875vw;
  }
}
.colSlide__item__img img {
  height: 100%;
}
@media screen and (min-width: 658px) {
  .colSlide__item__img img {
    box-shadow: 0 0 24px rgba(227, 216, 189, 0.4);
    border-radius: 24px;
  }
}
@media screen and (max-width: 657px) {
  .colSlide__item__img img {
    box-shadow: 0 0 3.75vw rgba(227, 216, 189, 0.4);
    border-radius: 3.75vw;
  }
}
.colSlide__item__title {
  font-weight: bold;
  color: var(--lightRizeGold);
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 657px) {
  .colSlide__item__title {
    font-size: 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .colSlide__item__title {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 657px) {
  .colSlide__item__title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.46875vw;
    margin: 0vw 0vw 1.5625vw 0vw;
  }
}
@media screen and (min-width: 658px) {
  .colSlide--other {
    padding-right: 0;
    margin: 90px auto 0;
  }
}
@media screen and (max-width: 657px) {
  .colSlide--other {
    margin: 0vw auto 0vw auto;
  }
}
@media screen and (max-width: 657px) {
  .colSlide--pain .colSlide__item:nth-child(n+2) {
    margin: 0vw 0vw 0vw 11.25vw;
  }
}

.topRecommendBox {
  transition: transform 0.8s ease-in-out;
  transition-delay: 5s;
  transform: translateX(100%);
  backface-visibility: hidden;
}
@media screen and (min-width: 658px) {
  .topRecommendBox {
    border-radius: 60px 0 0 60px;
    box-shadow: 0 0 60px rgba(242, 228, 194, 0.8);
  }
}
@media screen and (max-width: 657px) {
  .topRecommendBox {
    bottom: 29.21875vw;
    border-radius: 9.3vw 0 0 9.3vw;
    box-shadow: 0 0 9.3vw rgba(242, 228, 194, 0.8);
  }
}
.topRecommendBox a {
  display: flex;
}
@media screen and (min-width: 658px) {
  .topRecommendBox.is-hide {
    transition-delay: none;
    animation: hideAnim 0.6s ease-in-out 0s 1 forwards;
  }
}
@media screen and (max-width: 657px) {
  .topRecommendBox.is-hide {
    animation: hideAnim_sp 0.6s ease-in-out 0s 1 forwards;
  }
}
.topRecommendBox.is-anim {
  animation: showAnim 0.6s ease-in-out 0s 1 forwards;
}
@keyframes hideAnim {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(120px);
  }
  0%, 80% {
    opacity: 1;
  }
}
@keyframes hideAnim_sp {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(26.25vw);
  }
  0%, 80% {
    opacity: 1;
  }
}
@keyframes showAnim {
  0% {
    opacity: 0;
    transform: translateX(145px);
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
  20%, 100% {
    opacity: 1;
  }
}
.topRecommendBox__head {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--midGoldGray);
}
@media screen and (min-width: 658px) {
  .topRecommendBox__head {
    width: 25px;
    border-radius: 60px 0 0 60px;
  }
}
@media screen and (max-width: 657px) {
  .topRecommendBox__head {
    width: 5.625vw;
    border-radius: 9.3vw 0 0 9.3vw;
  }
}
@media screen and (min-width: 658px) {
  .topRecommendBox__head img {
    width: 15px;
    height: 19px;
    margin: 8px 0 0 3px;
  }
}
@media screen and (max-width: 657px) {
  .topRecommendBox__head img {
    width: 3.84vw;
    height: 4.87vw;
    margin: 2.05vw 0 0 0.76vw;
  }
}
.topRecommendBox__body {
  line-height: 1.2;
  background: var(--white);
}
@media screen and (min-width: 658px) {
  .topRecommendBox__body {
    width: 120px;
    padding: 13px 0 15px 0;
  }
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body {
    width: 26.25vw;
    padding: 3.046875vw 0vw 2.34375vw 0vw;
  }
}
.topRecommendBox__body .parts {
  font-weight: bold;
  color: var(--lightRizeGold);
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.2em;
  line-height: 1.3333333333;
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .parts {
    font-size: 2.34375vw;
  }
}
.topRecommendBox__body .course {
  font-weight: bold;
  text-align: center;
  font-size: 11px;
  line-height: 0.7333333333;
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .course {
    font-size: 2.65625vw;
  }
}
@media screen and (min-width: 658px) {
  .topRecommendBox__body .course {
    margin: 7px 0 0;
  }
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .course {
    margin: 0.515625vw 0vw 0vw 0vw;
  }
}
.topRecommendBox__body .course .num {
  font-size: 11px;
  line-height: 0.7368421053;
  margin: 0 5px 0 0;
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .course .num {
    font-size: 3.28125vw;
  }
}
.topRecommendBox__body .price {
  font-size: 9px;
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .price {
    font-size: 2.1875vw;
  }
}
@media screen and (min-width: 658px) {
  .topRecommendBox__body .price {
    padding: 10px 0 0 13px;
  }
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .price {
    padding: 2.578125vw 0vw 0vw 2.34375vw;
  }
}
.topRecommendBox__body .price .num {
  font-family: "FriendlyExpart";
  color: var(--orange);
  font-size: 23px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .price .num {
    font-size: 5.3125vw;
  }
}
.topRecommendBox__body .price .yen {
  font-size: 9px;
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .price .yen {
    font-size: 2.1875vw;
  }
}
@media screen and (min-width: 658px) {
  .topRecommendBox__body .price .yen {
    margin: 0 0 0 5px;
  }
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .price .yen {
    margin: 0vw 0vw 0vw 0.78125vw;
  }
}
.topRecommendBox__body .month {
  font-size: 9px;
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .month {
    font-size: 2.1875vw;
  }
}
@media screen and (min-width: 658px) {
  .topRecommendBox__body .month {
    margin: -3px 0 0 63px;
  }
}
@media screen and (max-width: 657px) {
  .topRecommendBox__body .month {
    text-align: right;
    padding: 0vw 3.078125vw 0vw 0vw;
  }
}

.top__counselingBtn {
  position: fixed;
  bottom: 6.25vw;
  left: 0;
  z-index: 10;
  display: block;
  width: 56.5625vw;
  border-radius: 0 9.3vw 9.3vw 0;
  padding: 3.125vw 0vw 3.125vw 0vw;
}
@media screen and (max-width: 657px) {
  .top__counselingBtn {
    font-size: 3.125vw;
  }
}
@media screen and (min-width: 658px) {
  .top__counselingBtn {
    display: none;
  }
}
.top__counselingBtn .icon {
  display: inline-block;
  width: 3vw;
  height: 3vw;
  vertical-align: middle;
  background: url(https://www.rizeclinic.com/assets/img/common/icon_calendar.svg) no-repeat center center;
  background-size: 100% auto;
  margin: -0.625vw 3.59375vw 0vw 0vw;
}