.is-fadein {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.is-fadeleft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.is-faderight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.is-zoomin {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.is-bganime {
  -webkit-animation-name: bgextendAnimeBase;
  animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.is-bganime img {
  -webkit-animation-name: bgextendAnimeSecond;
  animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is-bganime--left::before {
  -webkit-animation-name: bgLRextendAnime;
  animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}

.is-bganime--right::before {
  -webkit-animation-name: bgRLextendAnime;
  animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }

  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }

  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50.001% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50.001% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  letter-spacing: 0.04em;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 60px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  background: #fff;
}

blockquote,
q {
  quotes: "" "";
}

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

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
}

figure {
  margin: 0;
}

a {
  color: inherit;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

a:hover {
  opacity: 0.8;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dl dd {
  margin: 0;
}

ol.list-num {
  padding-left: 1.2em;
}

ol.list-num>li {
  margin-bottom: 10px;
  counter-increment: number;
  position: relative;
}

ol.list-num>li::before {
  content: counter(number) ".";
  display: block;
  margin-left: -1em;
  position: absolute;
  top: 0;
  left: 0;
}

input[type=text] {
  border-radius: 0;
  -webkit-appearance: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
select,
textarea {
  font-size: 16px;
  color: #666;
  border: none;
  padding: 0 10px;
  height: 40px;
  border: 2px solid #e3e3e3;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
select:focus,
textarea:focus {
  color: #111;
}

textarea {
  height: 200px;
  padding: 5px 10px;
}

input:-internal-autofill-selected {
  background-color: #fff;
}

body,
button,
input,
select,
textarea {
  color: #666;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: .1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 0;
}

p {
  margin: 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

.c-line-btn {
  text-decoration: none;
  font-size: 24px;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 25px 40px;
  max-width: 100%;
  width: 330px;
  display: inline-block;
}

.c-grad-btn {
  text-decoration: none;
  background: linear-gradient(180deg, #FBA8A4 0%, rgba(251,168,164,0.7) 100%);
  box-shadow: 0px 10px 10px rgba(0,0,0,0.05);
  border-radius: 50px;
  color: #fff;
  padding: 25px 58px;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
}

.c-grad-btn--green {
  background: linear-gradient(360deg, #60C4C1 -1.67%, rgba(96,196,193,0.48) 88.91%);
}

.c-btn-center {
  text-align: center;
}

.c-border-heading {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  position: relative;
}

.c-border-heading::after {
  position: absolute;
  content: "";
  background-color: #fff;
  height: 1px;
  width: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -20px;
}

.c-heading-open {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FF8D87;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .05em;
}

.c-heading-open::before,
.c-heading-open::after {
  content: "";
  width: 2px;
  height: 30px;
  background-color: #C4A860;
}

.c-heading-open::before {
  margin-right: 1em;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.c-heading-open::after {
  margin-left: 1em;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

.c-sec-heading {
  font-weight: normal;
  font-size: 26px;
  position: relative;
  z-index: 0;
  padding-left: .4em;
}

.c-sec-heading::before {
  content: "";
  background: rgba(237,202,191,0.58);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: -.3em;
}

.c-sec-heading--green::before {
  background: rgba(96,196,193,0.46);
}

.c-page-header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 220px;
}

.c-page-header--about {
  background-image: url(../images/about/header_about.jpg);
}

.c-page-header--doctor {
  background-image: url(../images/doctor/header_doctor.jpg);
}

.c-page-header--flow {
  background-image: url(../images/flow/header_flow.jpg);
}

.c-page-header--case {
  background-image: url(../images/case/header_case.jpg);
}

.c-page-header--price {
  background-image: url(../images/price/header_price.jpg);
}

.c-page-header__inner {
  position: relative;
  height: 220px;
}

.c-page-header__title {
  letter-spacing: .01em;
  font-size: 24px;
  color: #fff;
  position: absolute;
  left: 15px;
  bottom: 20px;
  font-weight: normal;
}

.l-footer {
  margin-bottom: 77px;
}

.l-footer__cv {
  color: #fff;
  background-image: url(../images/common/footer_bg_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.l-footer__tel {
  padding: 52px 20px;
  background: linear-gradient(180deg, #EDCABF 0%, rgba(237,202,191,0.7) 100%);
}

.l-footer__web {
  padding: 65px 20px;
  background: linear-gradient(180deg, #FBA8A4 0%, rgba(251,168,164,0.7) 100%);
}

.l-footer__web .c-btn-center {
  margin-top: 60px;
}

.l-footer__tel-link {
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: block;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.l-footer__tel-link i {
  padding-right: 10px;
}

.l-footer__tel-txt {
  font-size: 16px;
  line-height: 1.8;
  max-width: 340px;
  margin: 0 auto;
}

.l-footer__tel-txt span {
  display: inline-block;
}

.l-footer__info.l-container {
  padding-top: 15px;
  padding-bottom: 45px;
}

.l-footer__c-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}

.l-footer__c-item dt {
  width: 100px;
  line-height: 2;
}

.l-footer__c-item dt span {
  font-weight: bold;
  background: rgba(237,202,191,0.24);
  border-radius: 15px;
  display: inline-block;
  padding: 0px 12px;
}

.l-footer__c-item dd {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 10px;
  line-height: 2;
}

.l-footer__c-item dd span {
  font-size: 13px;
}

.l-footer__c-item dd a {
  color: #60C4C1;
}

.l-footer__table {
  margin-top: 45px;
}

.l-footer__table .biz-hour {
  width: 100%;
  white-space: inherit;
}

.l-footer__table .biz-hour .line01 {
  background: rgba(96,196,193,0.3);
  border-bottom: none;
}

.l-footer__table .biz-hour tr {
  border-bottom: 1px solid #60C4C1;
}

.l-footer__table .biz-hour th {
  width: 28%;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.l-footer__table .biz-hour th,
.l-footer__table .biz-hour td {
  padding: 10px 1%;
  text-align: center;
}

.l-footer__table .biz-hour td {
  font-size: 12px;
}

.l-footer__note {
  font-size: 11px;
  margin-top: 5px;
}

.l-footer__note li {
  margin-top: 4px;
}

.l-footer__navi {
  background-color: #E6DFD7;
}

.l-footer__navi-inner {
  padding: 38px 32px 10px 32px;
}

.l-footer__menu li a {
  text-decoration: none;
  line-height: 2;
}

.l-footer__copy {
  margin-top: 52px;
  font-size: 10px;
  line-height: 2;
}

.sp-fixed {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 77px;
  z-index: 100;
}

.sp-fixed__item {
  width: 50%;
  position: relative;
}

.sp-fixed__item a {
  text-align: center;
  color: #fff;
  display: block;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

.sp-fixed__item a span {
  display: block;
  font-weight: normal;
}

.sp-fixed__item--web {
  background: linear-gradient(180deg, #FBA8A4 0%, rgba(251,168,164,0.7) 100%);
}

.sp-fixed__item--web a {
  padding-top: 14px;
}

.sp-fixed__item--web a span {
  font-size: 16px;
  line-height: 1.2;
  margin-top: 4px;
}

.sp-fixed__item--tel {
  background: linear-gradient(180deg, #EDCABF 0%, rgba(237,202,191,0.7) 100%);
}

.sp-fixed__item--tel a {
  padding-top: 8px;
}

.sp-fixed__item--tel a span {
  font-size: 15px;
  line-height: 1.2;
}

.g-nav {
  background-color: #fff;
  z-index: 999;
  display: none;
  width: 100%;
  height: 100vh;
  top: 60px;
  left: 0;
  padding: 50px 20px 200px;
  position: fixed;
  overflow-y: auto;
}

.g-nav.is-menu {
  display: block;
}

.g-nav__menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.g-nav__item {
  text-align: center;
}

.g-nav__item:not(:last-child) {
  margin-bottom: 20px;
}

.g-nav__link {
  text-decoration: none;
  font-size: 18px;
}

.g-nav__link::after {
  position: absolute;
  content: "";
  background-color: #979797;
  width: 100%;
  max-width: 70px;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.g-nav__link.is-current::after {
  position: absolute;
  content: "";
  background-color: #979797;
  width: 120%;
  max-width: 74px;
  height: 1px;
  top: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 1;
  visibility: visible;
}

.g-nav__btn {
  display: block;
  text-decoration: none;
}

.g-nav__btn--tel {
  color: #233A5C;
  font-weight: bold;
  letter-spacing: .1em;
  text-align: center;
  font-size: 20px;
  border: 1px solid #233A5C;
  padding: 10px;
  border-radius: 50px;
}

.g-nav__btn--tel i {
  color: #60C4C1;
  padding-right: .3em;
}

.g-nav__btn--tel span {
  display: block;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0;
}

.g-nav__btn--web {
  background: linear-gradient(360deg, #60C4C1 -1.67%, rgba(96,196,193,0.48) 88.91%);
  color: #fff;
  margin-top: 20px;
  font-weight: bold;
  letter-spacing: .1em;
  padding: 10px;
  border-radius: 50px;
  font-size: 18px;
}

.g-nav__btn--web i {
  display: block;
  font-size: 18px;
  margin-bottom: .2em;
}

.l-header {
  height: 60px;
  position: fixed;
  width: 100%;
  background-color: rgba(255,255,255,0.6);
  top: 0;
  left: 0;
  z-index: 1300;
}

.l-header__inner {
  padding: 0 10px;
}

.l-header__logo-area {
  display: inline-block;
  text-align: center;
  padding-top: 12px;
}

.l-header__logo {
  letter-spacing: .1em;
  text-decoration: none;
  font-size: 15px;
}

.l-header__lead {
  font-size: 10px;
  display: inline-block;
}

.l-header__cv {
  text-align: center;
  list-style: none;
  margin: 0;
  margin-top: 50px;
  padding-left: 0;
}

.is-menu-open .l-header {
  background-color: #fff;
}

.l-wrapper {
  overflow: hidden;
  margin: 0 auto;
}

.l-container {
  margin: 0 auto;
  padding: 0 15px;
}

.l-container:after {
  content: "";
  clear: both;
  display: block;
}

.l-main {
  background-color: #F7F5F3;
}

.home .l-main {
  background-color: transparent;
}

.l-page-content {
  padding: 60px 0 65px;
}

.l-sec-content:not(:first-of-type) {
  margin-top: 70px;
}

.l-sec-content__inner {
  margin-top: 40px;
}

.nav-btn {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 70px;
  height: 60px;
  background: linear-gradient(360deg, #60C4C1 -1.67%, rgba(96,196,193,0.48) 88.91%);
}

.nav-btn__line {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: all .3s;
}

.nav-btn__line:nth-of-type(1) {
  top: 20px;
}

.nav-btn__line:nth-of-type(2) {
  top: 30px;
}

.nav-btn__line:nth-of-type(3) {
  top: 40px;
}

.nav-btn.is-close .nav-btn__line:nth-of-type(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  top: 30px;
}

.nav-btn.is-close .nav-btn__line:nth-of-type(2) {
  width: 0;
}

.nav-btn.is-close .nav-btn__line:nth-of-type(3) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  top: 30px;
}

.about .primary {
  margin-top: 50px;
}

.about .primary__pic {
  width: 80%;
  min-width: 280px;
  margin: 0 auto;
}

.about .primary__txtbox {
  margin-top: 30px;
  line-height: 2;
  font-size: 18px;
}

.about .primary__txt-main {
  font-weight: bold;
  font-size: 22px;
}

.about .primary__txt-main--pink {
  color: #FBA8A4;
}

.about .primary__txt-main--green {
  color: #60C4C1;
}

.about .sec-point__wrap {
  margin-top: -70px;
}

.case-col__item {
  padding: 40px 20px;
}

.case-col__item:nth-child(1) {
  background: rgba(237,202,191,0.2);
}

.case-col__item:nth-child(2) {
  background: rgba(96,196,193,0.1);
}

.case-col__item:nth-child(3) {
  background: rgba(237,202,191,0.2);
}

.case-col__item:nth-child(4) {
  background: rgba(96,196,193,0.1);
}

.case-col__item:nth-child(5) {
  background: rgba(237,202,191,0.2);
}

.case-col__item:nth-child(6) {
  background: rgba(96,196,193,0.1);
}

.case-col__item figure {
  max-width: 200px;
  width: 40%;
  margin: 0 auto;
}

.case-col__item h3 {
  font-weight: bold;
  color: #C4A860;
  text-align: center;
  font-size: 18px;
  letter-spacing: .05em;
  margin: 20px 0;
}

.case-col__item p {
  line-height: 1.88;
}

.greeting {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px 35px;
  margin-top: 18px;
}

.greeting:first-of-type {
  margin-top: 35px;
}

.greeting__cc {
  font-weight: normal;
  line-height: 2.2;
  letter-spacing: .05em;
  font-size: 20px;
}

.greeting__deco {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  -webkit-text-decoration-color: rgba(96,196,193,0.46);
  text-decoration-color: rgba(96,196,193,0.46);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

.greeting__title {
  color: #969696;
  text-align: center;
  font-size: 18px;
  margin-bottom: 32px;
}

.greeting__txtbox {
  margin-top: 32px;
}

.greeting__txtbox p {
  letter-spacing: .05em;
  margin-bottom: 1em;
  font-size: 16px;
}

.greeting__name {
  letter-spacing: .05em;
  text-align: center;
  margin-top: 35px;
}

.greeting__name span {
  display: block;
  font-weight: bold;
}

.greeting__g-title {
  color: #44B6B2;
  font-size: 18px;
}

.greeting__col {
  margin-top: 20px;
}

.greeting__list li {
  margin-top: 20px;
}

.greeting__list li::before {
  content: "・";
  color: #44B6B2;
}

.access {
  margin-top: 30px;
}

.access__list {
  letter-spacing: .05em;
  position: relative;
  padding-left: 40px;
}

.access__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 25px;
}

.access__list:first-child::before {
  background-image: url(../images/doctor/train.svg);
}

.access__list:nth-child(2) {
  margin-top: 20px;
}

.access__list:nth-child(2)::before {
  background-image: url(../images/doctor/access.svg);
}

.access__list span {
  color: #FF8D87;
  font-weight: bold;
  padding: 0 .2em;
  font-size: 20px;
  line-height: 16px;
}

.access__list a {
  color: #FF8D87;
  padding-left: .5em;
}

.access__map {
  margin-top: 28px;
}

.access__map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.flow-faq .faq dt,
.flow-faq .faq dd {
  background-color: #fff;
}

.step-icon {
  background-color: #FF8D87;
  display: inline-block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: .05em;
  padding-top: 10px;
}

.step-icon span {
  font-size: 20px;
  display: block;
  font-weight: bold;
  line-height: 1;
}

.faq {
  letter-spacing: .05em;
}

.faq dt {
  position: relative;
  color: #60C4C1;
  font-weight: bold;
  background-color: #f5f5f5;
  border-radius: 10px;
  font-size: 16px;
  padding: 10px 15px 10px 40px;
  margin-top: 30px;
}

.faq dt::before {
  content: "Q";
  position: absolute;
  font-size: 20px;
  left: 14px;
  top: 11px;
  line-height: 1;
}

.faq dt:first-child {
  margin-top: 0;
}

.faq dd {
  position: relative;
  color: #FF8D87;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin-top: 8px;
  font-size: 16px;
  padding: 15px 15px 15px 40px;
}

.faq dd::before {
  content: "A";
  position: absolute;
  font-size: 20px;
  left: 14px;
  top: 18px;
  line-height: 1;
  font-weight: bold;
}

.flow-list:not(:first-child) {
  margin-top: 40px;
}

.flow-list__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #DADADA;
  padding-bottom: 18px;
  margin-bottom: 26px;
}

.flow-list__title-txt {
  color: #FF8787;
  letter-spacing: .05em;
  font-size: 20px;
  padding-left: 10px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pic-col p {
  line-height: 1.88;
  margin-top: 1em;
}

.mv {
  background-color: #E6DFD7;
  padding-top: 60px;
  padding-bottom: 18px;
}

.mv__inner {
  padding: 0 15px;
  margin: 0 auto;
}

.mv__cc-wrap {
  text-align: center;
}

.mv__cc {
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  border-radius: 10px;
  padding: 6px 12px 15px;
  font-size: 16px;
  margin-top: 24px;
  border: 2px solid #FF8787;
}

.mv__1000 {
  font-size: 36px;
  position: relative;
  top: 4px;
  padding-right: 4px;
  letter-spacing: .01em;
}

.mv__tech {
  font-size: 24px;
  position: relative;
  top: 2px;
}

.mv__fv {
  margin-top: 18px;
}

.mv__fv .pc {
  display: none;
}

.mv__title {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 9vw;
  letter-spacing: .1em;
}

.top-price {
  padding: 0 15px;
  margin-top: -10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top-price li {
  width: 48%;
  max-width: 311px;
  margin: 0 1%;
}

.top-price li:nth-child(2) {
  margin-right: 0;
}

.top-price li:first-child {
  margin-left: 0;
}

.top-price__note {
  padding: 0 15px;
  font-size: 11px;
}

.tab-wrap {
  margin-top: 40px;
}

.tab {
  border-bottom: 3px solid #EDCABF;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tab li {
  width: 25%;
}

.tab li.is-current a {
  background-color: #fff;
}

.tab a {
  display: block;
  background-color: #EDCABF;
  text-decoration: none;
  height: 55px;
  text-align: center;
  transition: .3s;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .05em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tab a:hover {
  opacity: 1;
}

.tab__area {
  display: none;
  opacity: 0;
  background: #fff;
  padding: 35px 0 100px;
  position: relative;
}

.tab__area.is-active {
  display: block;
  -webkit-animation-name: displayAnime;
  animation-name: displayAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.tab__content {
  margin-top: 30px;
}

.tab__content .c-btn-center {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.tab__mark {
  font-weight: bold;
  line-height: 1;
  font-size: 120px;
  color: rgba(237,197,191,0.1);
  letter-spacing: 0.15em;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -8px;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.price-sec__intro {
  font-size: 16px;
  margin-top: 1em;
  letter-spacing: .08em;
}

.price-sec__intro span {
  font-weight: bold;
  color: #FF8D87;
}

.price-sec__col {
  margin-top: 20px;
}

.flow-sec__lists {
  margin-top: -40px;
}

.flow-sec__lists:last-of-type {
  margin-top: 80px;
}

.flow-sec__lists:last-of-type .flow-sec__list:last-child::after {
  display: none;
}

.flow-sec__list {
  position: relative;
  width: 230px;
  margin: 80px auto 0;
}

.flow-sec__list .step-icon {
  position: absolute;
  left: -30px;
  top: -30px;
}

.flow-sec__list::after {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-top: 11px solid rgba(96,196,193,0.46);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}

.flow-sec__txt {
  letter-spacing: .05em;
  text-align: center;
  border-top: 1px solid #60C4C1;
  border-bottom: 1px solid #60C4C1;
  padding: 3px 0;
  margin-top: 1em;
  font-size: 18px;
}

.case-sec__lists {
  margin-top: -20px;
}

.case-sec__list {
  margin-top: 50px;
}

.case-sec__pic {
  max-width: 220px;
  margin: 0 auto;
}

.case-sec__txt {
  text-align: center;
  background-color: rgba(196,168,96,0.8);
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  letter-spacing: .05em;
  padding: 8px 2px;
  margin-top: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.sec-point {
  background-color: #FAF5F1;
  padding: 60px 0 80px;
}

.sec-point__title {
  color: #fff;
  font-weight: bold;
  line-height: 1.88;
  margin-top: -12px;
}

.sec-point__title span {
  display: inline-block;
  background-color: #FF8D87;
  padding: 0 6px;
  font-size: 30px;
  margin-top: 10px;
}

.sec-point__maru {
  border-radius: 50%;
  background: rgba(230,223,215,0.6);
  width: 263px;
  height: 263px;
  padding: 17px;
  margin: 0 auto;
}

.sec-point__maru p {
  border-radius: 50%;
  border: 2px solid #C4A860;
  width: 228px;
  height: 228px;
  color: #FF8D87;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: .05em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sec-point__mark {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  margin: 30px auto;
}

.sec-point__mark::before,
.sec-point__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  background-color: #C4A860;
}

.sec-point__mark::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.sec-point__mark::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sec-point__content {
  margin-top: 95px;
}

.sec-point__pic {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.sec-point__box {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  margin-top: -60px;
  z-index: 0;
  padding: 80px 20px 40px;
}

.sec-point__motif {
  display: block;
  color: rgba(237,202,191,0.24);
  letter-spacing: .05em;
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  text-align: right;
  margin-top: -30px;
}

.sec-point__heading {
  color: #FF8D87;
  font-weight: normal;
  line-height: 2;
  letter-spacing: .08em;
  font-size: 18px;
}

.sec-point__txt {
  line-height: 2;
  letter-spacing: .08em;
  margin-top: 19px;
}

.sec-doctor {
  background-color: rgba(230,223,215,0.5);
  padding: 80px 15px 80px;
}

.sec-doctor__inner {
  background-color: #fff;
  padding: 80px 25px 35px;
}

.sec-doctor__title {
  text-align: center;
  position: relative;
  letter-spacing: 0.05em;
  font-size: 24px;
  margin-bottom: 25px;
}

.sec-doctor__title::before {
  content: attr(data-en);
  display: block;
  color: rgba(96,196,193,0.3);
  letter-spacing: 0.08em;
  line-height: 1;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -25px;
  font-size: 46px;
}

.sec-doctor__greeting {
  line-height: 2.2;
  letter-spacing: .05em;
  font-size: 16px;
  margin-top: 20px;
}

.sec-doctor__name {
  text-align: right;
  margin-top: 1em;
}

.sec-doctor .c-btn-center {
  margin-top: 20px;
}

.price .price-card__note {
  font-weight: bold;
}

.price .price-card__card {
  width: 100%;
  font-size: 40px;
}

.price .price-card__card span {
  font-weight: bold;
  font-size: 20px;
}

.price .price-card__label span {
  color: #fff;
  font-size: 24px;
}

.price-card {
  letter-spacing: .08em;
}

.price-card__note {
  text-align: right;
}

.price-card__list {
  margin-top: 10px;
}

.price-card__card {
  border: 1px solid #FF8787;
  border-radius: 20px;
  text-align: center;
  color: #FF8787;
  font-weight: bold;
  padding-bottom: 20px;
  font-size: 32px;
  width: 230px;
  margin: 0 auto;
}

.price-card__card span {
  color: #666;
  font-size: 18px;
  font-weight: normal;
}

.price-card__card--green {
  border: 1px solid #60C4C1;
  color: #60C4C1;
}

.price-card__card:not(:first-child) {
  margin-top: 20px;
}

.price-card__label {
  background-color: #FF8787;
  border-radius: 18px 18px 0px 0px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 5px;
  margin-bottom: 20px;
}

.price-card__label--green {
  background-color: #60C4C1;
}

.price-intro {
  background-color: #fff;
  max-width: 960px;
  width: 90%;
  margin: -30px auto 0;
  position: relative;
  padding: 20px;
}

.price-intro p {
  font-size: 18px;
  letter-spacing: .05em;
}

.price-intro p span {
  color: #FF8787;
  font-weight: bold;
}

.price-intro p:not(:first-child) {
  margin-top: 1em;
}

.price-note {
  letter-spacing: .08em;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
}

.price-note-min {
  letter-spacing: .08em;
  margin-top: 24px;
}

.price-box {
  letter-spacing: .08em;
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 20px;
  margin-top: 40px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.price-box:last-child {
  margin-top: 20px;
}

.price-box__title {
  letter-spacing: .05em;
  color: #FF8787;
  font-size: 19px;
  padding-bottom: .4em;
  border-bottom: 1px dashed #969696;
  margin-bottom: 1em;
}

.price-box__title span {
  color: #666;
  font-weight: normal;
  font-size: 12px;
  padding-left: .5em;
}

.price-box__title--green {
  color: #44B6B2;
}

.price-box__dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}

.price-box__dt {
  width: 200px;
}

.price-box__dt::before {
  content: "●";
  color: #FF8787;
  padding-right: .3em;
}

.price-box__dd {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: .5em;
  font-weight: bold;
}

.price-box__dd-wide {
  font-size: 12px;
  margin-top: 8px;
  padding-left: 14px;
}

.price-box__list li {
  font-weight: bold;
  margin-top: 18px;
}

.price-box__list li::before {
  content: "●";
  color: #44B6B2;
  padding-right: .3em;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
  -ms-text-justify: inter-ideograph !important;
  text-justify: inter-ideograph !important;
}

.u-bc-white {
  background: #fff;
}

.u-bdr-t {
  border-top: 1px solid !important;
}

.u-bdr-b {
  border-bottom: 1px solid !important;
}

.u-bdr-l {
  border-left: 1px solid !important;
}

.u-bdr-r {
  border-right: 1px solid !important;
}

.u-bdr-n {
  border: none !important;
}

.u-c-black {
  color: #000 !important;
}

.u-c-white {
  color: white !important;
}

.u-c-pink {
  color: #FF8787 !important;
}

.u-c-green {
  color: #60C4C1 !important;
}

.u-cs-a {
  cursor: auto;
}

.u-cs-p {
  cursor: pointer;
}

.u-sp-hide {
  display: none !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-b {
  display: block !important;
}

.u-fs-8 {
  font-size: 8px !important;
}

.u-fs-9 {
  font-size: 9px !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-fs-11 {
  font-size: 11px !important;
}

.u-fs-12 {
  font-size: 12px !important;
}

.u-fs-13 {
  font-size: 13px !important;
}

.u-fs-14 {
  font-size: 14px !important;
}

.u-fs-15 {
  font-size: 15px !important;
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-fs-17 {
  font-size: 17px !important;
}

.u-fs-18 {
  font-size: 18px !important;
}

.u-fs-19 {
  font-size: 19px !important;
}

.u-fs-20 {
  font-size: 20px !important;
}

.u-fs-21 {
  font-size: 21px !important;
}

.u-fs-22 {
  font-size: 22px !important;
}

.u-fs-23 {
  font-size: 23px !important;
}

.u-fs-24 {
  font-size: 24px !important;
}

.u-fs-25 {
  font-size: 25px !important;
}

.u-fs-26 {
  font-size: 26px !important;
}

.u-fs-27 {
  font-size: 27px !important;
}

.u-fs-28 {
  font-size: 28px !important;
}

.u-fs-29 {
  font-size: 29px !important;
}

.u-fs-30 {
  font-size: 30px !important;
}

.u-fs-31 {
  font-size: 31px !important;
}

.u-fs-32 {
  font-size: 32px !important;
}

.u-fs-33 {
  font-size: 33px !important;
}

.u-fs-34 {
  font-size: 34px !important;
}

.u-fs-35 {
  font-size: 35px !important;
}

.u-fs-36 {
  font-size: 36px !important;
}

.u-fs-37 {
  font-size: 37px !important;
}

.u-fs-38 {
  font-size: 38px !important;
}

.u-fs-39 {
  font-size: 39px !important;
}

.u-fs-40 {
  font-size: 40px !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pt-55 {
  padding-top: 55px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-fs-o {
  font-style: oblique !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

@media screen and (min-width: 768px) {
  img {
    width: auto;
  }

  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="number"],
  input[type="tel"],
  input[type="range"],
  input[type="date"],
  input[type="month"],
  input[type="week"],
  input[type="time"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="color"],
  select,
  textarea {
    font-size: 16px;
  }

  .case-col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .case-col__item {
    width: 50%;
    padding: 50px 60px;
  }

  .case-col__item:nth-child(3) {
    background: rgba(96,196,193,0.1);
  }

  .case-col__item:nth-child(4) {
    background: rgba(237,202,191,0.2);
  }

  .case-col__item figure {
    width: 190px;
    height: 137px;
  }

  .mv {
    height: 480px;
  }

  .mv__inner {
    position: relative;
    max-width: 1500px;
  }

  .mv__cc-wrap {
    text-align: left;
  }

  .mv__cc {
    text-align: left;
    margin-top: 50px;
    font-size: 28px;
    padding: 0px 15px 15px;
    position: relative;
    z-index: 1;
  }

  .mv__1000 {
    font-size: 50px;
    top: 8px;
  }

  .mv__tech {
    font-size: 28px;
    top: -1px;
  }

  .mv__fv {
    margin-top: 0;
    position: absolute;
    max-width: 770px;
    width: 60%;
    right: 0;
    top: 20px;
    z-index: 0;
  }

  .mv__fv .sp {
    display: none;
  }

  .mv__fv .pc {
    display: block;
  }

  .mv__title {
    text-align: left;
    position: relative;
    font-size: 9vw;
    line-height: 1.3;
    margin-top: 30px;
  }

  .top-price {
    margin-top: -20px;
  }

  .top-price__note {
    text-align: center;
    font-size: 14px;
  }

  .flow-sec__lists {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flow-sec__lists:last-of-type {
    margin-top: 45px;
  }

  .flow-sec__list {
    width: calc(33.333% - 60px);
  }

  .flow-sec__list .step-icon {
    left: -20px;
  }

  .flow-sec__list::after {
    top: 40%;
    right: -55px;
    left: initial;
    bottom: initial;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    border: 15px solid transparent;
    border-left: 20px solid rgba(96,196,193,0.46);
  }

  .flow-sec__list:last-child::after {
    display: none;
  }

  .case-sec__lists {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -70px;
  }

  .case-sec__list {
    width: calc(33.333% - 35px);
    margin-top: 70px;
  }

  .price .price-card__card {
    font-size: 48px;
  }

  .price .price-card__card span {
    font-size: 24px;
  }

  .price .price-card__label {
    font-size: 24px;
  }

  .price .price-card__label span {
    font-size: 32px;
  }

  .price-card__list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .price-card__card {
    width: calc(50% - 10px);
    margin-bottom: 15px;
  }

  .price-card__card:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) and (min-width: 1000px) {
  .mv__title {
    font-size: 100px;
  }
}

@media screen and (min-width: 768px) and (min-width: 1160px) {
  .mv__title {
    font-size: 128px;
  }
}

@media screen and (min-width: 1000px) {
  :target {
    scroll-margin-top: 90px;
  }

  body,
  button,
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .c-line-btn {
    font-size: 32px 40px;
    padding: 18px;
    width: 418px;
  }

  .c-border-heading {
    font-size: 32px;
  }

  .c-border-heading::after {
    width: 80px;
    bottom: -25px;
  }

  .c-heading-open {
    font-size: 32px;
  }

  .c-sec-heading {
    font-size: 38px;
  }

  .c-sec-heading::before {
    width: 46px;
    height: 46px;
  }

  .c-page-header {
    height: 344px;
  }

  .c-page-header__inner {
    height: 344px;
  }

  .c-page-header__title {
    font-size: 48px;
    bottom: 32px;
  }

  .l-footer {
    margin-bottom: 0;
  }

  .l-footer__cv {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-image: url(../images/common/footer_bg.jpg);
  }

  .l-footer__tel {
    width: 50%;
    padding: 86px 20px 89px;
  }

  .l-footer__web {
    width: 50%;
    padding: 86px 20px 110px;
  }

  .l-footer__tel-link {
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 49px;
  }

  .l-footer__tel-link i {
    font-size: 32px;
  }

  .l-footer__info.l-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 80px;
  }

  .l-footer__clinic {
    width: 50%;
    margin-top: -20px;
  }

  .l-footer__c-item {
    margin-top: 24px;
  }

  .l-footer__c-item dd {
    padding-left: 20px;
  }

  .l-footer__c-item dd span {
    font-size: 14px;
  }

  .l-footer__table {
    width: 50%;
    margin-top: 0;
  }

  .l-footer__table .biz-hour th {
    font-size: 14px;
    width: 30%;
  }

  .l-footer__table .biz-hour th,
  .l-footer__table .biz-hour td {
    padding: 15px 1%;
  }

  .l-footer__table .biz-hour td {
    font-size: 14px;
  }

  .l-footer__table-inner {
    width: 450px;
    margin: 0 auto;
  }

  .l-footer__note {
    font-size: 14px;
    margin-top: 10px;
  }

  .l-footer__note li {
    margin-top: 8px;
  }

  .l-footer__navi-inner {
    padding: 53px 20px 13px 20px;
  }

  .l-footer__menu {
    text-align: center;
  }

  .l-footer__menu li {
    display: inline-block;
  }

  .l-footer__menu li::after {
    content: "|";
    font-size: 14px;
    position: relative;
    top: -1px;
  }

  .l-footer__menu li:first-child::before {
    content: "|";
    font-size: 14px;
    position: relative;
    top: -1px;
  }

  .l-footer__menu li a {
    padding: 0 8px 0 6px;
  }

  .l-footer__copy {
    margin-top: 34px;
    text-align: center;
  }

  .sp-fixed {
    display: none;
  }

  .g-nav {
    background-color: transparent;
    position: static;
    z-index: 0;
    display: block;
    padding: 0;
    height: auto;
    overflow-y: initial;
  }

  .g-nav__menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
  }

  .g-nav__item:not(:last-child) {
    text-align: left;
    margin-right: 15px;
    margin-bottom: 0;
  }

  .g-nav__link {
    font-size: 14px;
    position: relative;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }

  .g-nav__link:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -10px;
  }

  .g-nav__btn {
    height: 90px;
  }

  .g-nav__btn--tel {
    font-size: 18px;
    padding: 0;
    padding-top: 20px;
    margin-right: 16px;
    border: none;
  }

  .g-nav__btn--web {
    text-align: center;
    margin-top: 0;
    font-size: 15px;
    padding: 23px 8px 0;
    border-radius: 0;
  }

  .l-header {
    height: 90px;
    transition: ease .3s;
  }

  .l-header__inner {
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .l-header__nav {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .l-header__nav-inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
  }

  .l-header__logo-area {
    padding-top: 0;
    margin-left: 10px;
  }

  .l-header__logo {
    font-size: 16px;
  }

  .l-header__lead {
    font-size: 12px;
  }

  .l-header__cv {
    margin-top: 0;
    text-align: left;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 20px;
  }

  .l-container {
    padding: 0 15px;
    max-width: 1130px;
  }

  .l-page-content {
    padding: 127px 0 137px;
  }

  .l-sec-content:not(:first-of-type) {
    margin-top: 150px;
  }

  .l-sec-content__inner {
    margin-top: 80px;
  }

  .nav-btn {
    display: none;
  }

  .about .primary {
    margin-top: 100px;
  }

  .about .primary__box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about .primary__pic {
    width: 280px;
    margin: 0;
  }

  .about .primary__txtbox {
    font-size: 26px;
    width: calc(100% - 320px);
  }

  .about .primary__txt-main {
    font-size: 32px;
  }

  .about .primary__img {
    width: 380px;
    margin-left: auto;
    margin-top: -60px;
  }

  .about .sec-point__wrap {
    margin-top: -70px;
  }

  .case-col__item h3 {
    font-size: 20px;
    margin: 15px 0;
  }

  .greeting {
    padding: 65px 50px 70px;
    margin-top: 36px;
  }

  .greeting:first-of-type {
    margin-top: 75px;
  }

  .greeting__cc {
    font-size: 28px;
    text-align: center;
  }

  .greeting__title {
    font-size: 20px;
    margin-bottom: 64px;
  }

  .greeting__txtbox {
    margin-top: 64px;
  }

  .greeting__txtbox p {
    font-size: 20px;
  }

  .greeting__name {
    margin-top: 70px;
  }

  .greeting__g-title {
    font-size: 20px;
  }

  .greeting__col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .greeting__list {
    width: 50%;
    margin-top: -20px;
  }

  .access {
    margin-top: 60px;
  }

  .access__list span {
    font-size: 32px;
  }

  .faq dt {
    font-size: 20px;
    padding: 16px 60px 16px 84px;
    margin-top: 72px;
  }

  .faq dt::before {
    font-size: 36px;
    left: 36px;
    top: 10px;
  }

  .faq dt:first-child {
    margin-top: 0;
  }

  .faq dd {
    font-size: 20px;
    padding: 16px 60px 16px 84px;
  }

  .faq dd::before {
    font-size: 36px;
    left: 36px;
  }

  .flow-list:not(:first-child) {
    margin-top: 86px;
  }

  .flow-list__title-txt {
    font-size: 32px;
    padding-left: 20px;
  }

  .pic-col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .pic-col figure {
    width: 400px;
  }

  .pic-col p {
    margin-top: 0;
    width: calc(100% - 440px);
  }

  .mv {
    padding-top: 90px;
    height: 640px;
  }

  .mv__cc {
    margin-top: 80px;
    font-size: 40px;
  }

  .mv__1000 {
    font-size: 72px;
  }

  .mv__tech {
    font-size: 40px;
  }

  .mv__fv {
    top: 23px;
  }

  .tab-wrap {
    margin-top: 45px;
  }

  .tab li {
    width: 270px;
  }

  .tab a {
    font-size: 16px;
  }

  .tab a:hover {
    background-color: #fff;
  }

  .tab__area {
    padding: 58px 0 170px;
  }

  .tab__content {
    margin-top: 50px;
  }

  .tab__content .c-btn-center {
    margin-top: 80px;
  }

  .tab__mark {
    font-size: 240px;
  }

  .price-sec__intro {
    font-size: 28px;
    text-align: center;
  }

  .price-sec__col {
    margin-top: 38px;
  }

  .flow-sec__txt {
    font-size: 22px;
  }

  .case-sec__txt {
    font-size: 18px;
    margin-top: 33px;
  }

  .sec-point {
    padding: 100px 0 144px;
  }

  .sec-point__title {
    width: 535px;
  }

  .sec-point__title span {
    font-size: 64px;
    margin-top: 12px;
  }

  .sec-point__intro {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .sec-point__img {
    width: calc(100% - 535px);
    margin-top: 40px;
  }

  .sec-point__cc {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
  }

  .sec-point__maru {
    width: 392px;
    height: 392px;
    padding: 26px;
  }

  .sec-point__maru p {
    width: 338px;
    height: 338px;
    font-size: 32px;
  }

  .sec-point__mark {
    width: 50px;
    height: 50px;
    margin: 20px;
  }

  .sec-point__mark::before,
  .sec-point__mark::after {
    height: 50px;
  }

  .sec-point__wrap {
    margin-top: -30px;
  }

  .sec-point__content {
    margin-top: 178px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .sec-point__pic {
    padding: 0;
    width: 550px;
  }

  .sec-point__box {
    margin-top: 46px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: -80px;
    position: relative;
    padding: 37px 45px  50px 130px;
  }

  .sec-point__motif {
    margin-top: 0;
    position: absolute;
    font-size: 96px;
    top: -65px;
  }

  .sec-point__heading {
    font-size: 24px;
    line-height: 1.88;
  }

  .sec-point__txt {
    line-height: 2.5;
  }

  .sec-doctor {
    padding: 120px 15px;
  }

  .sec-doctor__inner {
    padding: 130px 55px 70px;
  }

  .sec-doctor__title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .sec-doctor__title::before {
    font-size: 80px;
    top: -45px;
  }

  .sec-doctor__greeting {
    font-size: 18px;
    margin-top: 44px;
  }

  .sec-doctor .c-btn-center {
    margin-top: 44px;
  }

  .price .price-card__card {
    width: calc(50% - 10px);
    font-size: 64px;
  }

  .price-card__card {
    width: calc(25% - 10px);
    font-size: 40px;
    padding-bottom: 30px;
  }

  .price-card__label {
    margin-bottom: 25px;
  }

  .price-intro {
    padding: 35px 65px;
  }

  .price-intro p {
    font-size: 28px;
  }

  .price-note {
    font-size: 20px;
    margin-top: 27px;
  }

  .price-note-min {
    margin-top: 48px;
  }

  .price-box-col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 65px;
  }

  .price-box {
    width: calc(50% - 15px);
    margin-top: 0;
    max-width: 100%;
  }

  .price-box:last-child {
    margin-top: 0;
  }

  .price-box__title {
    letter-spacing: .08em;
    font-size: 24px;
  }

  .price-box__title span {
    font-size: 14px;
  }

  .price-box__dl {
    margin-bottom: 25px;
    font-size: 18px;
  }

  .price-box__dt {
    width: 240px;
  }

  .price-box__dd {
    padding-left: 1em;
  }

  .price-box__dd-wide {
    font-size: 16px;
    padding-left: 18px;
  }

  .price-box__list li {
    font-size: 18px;
    margin-top: 25px;
  }

  .u-sp-hide {
    display: block !important;
  }

  .u-pc-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1160px) {
  .g-nav__item:not(:last-child) {
    margin-right: 30px;
  }

  .g-nav__link {
    font-size: 15px;
  }

  .g-nav__btn--web {
    padding: 23px 11px 0;
  }

  .l-header__logo-area {
    margin-left: 15px;
  }

  .l-header__logo {
    font-size: 18px;
  }

  .l-header__lead {
    font-size: 13px;
  }

  .l-header__cv {
    margin-left: 50px;
  }

  .mv {
    height: 726px;
  }

  .mv__cc {
    margin-top: 134px;
  }
}