@font-face {
  font-display: swap;
  font-family: Noto Sans JP;
  font-style: normal;
  font-weight: 400;
  src: url(./fonts/noto-sans-jp-v53-japanese-regular.woff2) format("woff2"),
    url(fonts/noto-sans-jp-v53-japanese-regular.woff) format("woff");
}
@font-face {
  font-display: swap;
  font-family: Noto Sans JP;
  font-style: normal;
  font-weight: 700;
  src: url(./fonts/noto-sans-jp-v53-japanese-700.woff2) format("woff2"),
    url(fonts/noto-sans-jp-v53-japanese-700.woff) format("woff");
}
@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  src: url(./fonts/inter-v18-latin-regular.woff2) format("woff2"),
    url(fonts/inter-v18-latin-regular.woff) format("woff");
}
@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  src: url(./fonts/inter-v18-latin-700.woff2) format("woff2"),
    url(fonts/inter-v18-latin-700.woff) format("woff");
}
.animation {
  animation-fill-mode: forwards;
  opacity: 0;
  transition: all 1s ease-in-out;
}
.animation:not(.text-marker) {
  opacity: 0;
}
.fade.animated {
  animation-duration: 0.6s;
  animation-name: fadein;
}
.fadeup.animated {
  animation-name: fadeup;
  transform: translateY(20%);
}
.fadedown.animated,
.fadeup.animated {
  animation-duration: 0.5s;
}
.fadedown.animated {
  animation-name: fadedown;
  transform: translateY(-20%);
}
.fadeleft.animated {
  animation-name: fadeleft;
  transform: translateX(-20%);
}
.fadeleft.animated,
.faderight.animated {
  animation-duration: 0.5s;
}
.faderight.animated {
  animation-name: faderight;
  transform: translateX(20%);
}
.blur.animated {
  animation-duration: 1s;
  animation-name: blur-in;
  filter: blur(10px);
}
.text-marker {
  background-image: linear-gradient(90deg, #ffef00, #ffef00) !important;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 50%;
  display: inline;
  font-weight: 700;
  opacity: 1;
  position: relative;
}
.text-marker.animated {
  background-size: 100% 50%;
}
.text-smooth {
  clip-path: inset(0 100% 0 0);
  color: var(--text-color);
  display: inline-block;
  transition: clip-path 0.5s ease-in-out, color 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}
.text-smooth,
.text-smooth.animated {
  transform: scale(1);
}
.text-smooth.animated {
  clip-path: inset(0);
  opacity: 1;
}
.text-smooth.color-changed {
  transform: scale(1.2);
}
.bouncein.animated {
  animation: bounce 3s ease-in-out infinite;
  opacity: 1;
}
.zoomin.animated {
  animation: zoomIn 0.6s ease-in-out;
  opacity: 1;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadedown {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeleft {
  0% {
    opacity: 0;
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes faderight {
  0% {
    opacity: 0;
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes blur-in {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.025);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
body,
html {
  background: #fff;
  box-sizing: border-box;
  color: #203240;
  font-family: Noto Sans JP, ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ Pro W3, Hiragino Kaku Gothic Pro,
    ãƒ¡ã‚¤ãƒªã‚ª, Meiryo, æ¸¸ã‚´ã‚·ãƒƒã‚¯, Yu Gothic, ï¼­ï¼³ ï¼°ã‚´ã‚·ãƒƒã‚¯,
    MS PGothic, sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  overflow: overlay;
  padding: 0;
  scroll-behavior: smooth;
}
.svg-symbol {
  display: none;
}
.en,
.number {
  font-family: Inter, Arial, Liberation Sans, Nimbus Sans, Helvetica, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}
h4 {
  font-size: clamp(1rem, 2vw, 1.25rem);
}
p {
  font-size: clamp(1rem, 1vw, 1.5rem);
  line-height: 2em;
  text-align: justify;
}
a {
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-decoration: none;
}
a:link,
a:visited {
  color: inherit;
  text-decoration: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
em {
  font-size: clamp(1rem, 1vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}
html::-webkit-scrollbar {
  overflow: hidden;
  width: 3px;
}
html::-webkit-scrollbar:horizontal {
  height: 3px;
}
html::-webkit-scrollbar-button {
  display: none;
}
html::-webkit-scrollbar-thumb {
  background: #233454;
}
html::-webkit-scrollbar-corner {
  background: #fff;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
.main-content {
  box-shadow: 7px 7px 11px #00000065;
  margin: 2% auto 0;
  max-width: 480px;
  overflow: hidden;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .main-content {
    margin: 0 auto;
  }
}
.hero__background {
  position: relative;
}
.hero__title {
  left: 5%;
  position: absolute;
  top: 2%;
  width: 90%;
}
.hero__sub-title {
  margin: 6% auto;
  width: 90%;
}
.hero__movie-box {
  aspect-ratio: 16/9;
  cursor: pointer;
  margin: 0 auto;
  max-width: 560px;
  position: relative;
  width: 92%;
}
.hero__movie-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.hero__cta-box {
  background: #203240;
  box-sizing: border-box;
  color: #fff;
  margin-top: 5%;
  padding: 8% 6%;
  position: relative;
}
.hero__cta-title {
  font-size: 1rem;
  line-height: 2;
  margin: 0;
}
.hero__cta-title--style-001,
.hero__cta-title--style-002 {
  display: block;
}
.hero__cta-title--style-003 {
  display: block;
  font-size: 1.4rem;
}
.hero__cta-button {
  background: #0799d8;
  border-radius: 8px;
  box-sizing: border-box;
  color: #fff !important;
  display: block;
  line-height: 1.4;
  margin: 7% auto 2% auto;
  padding: 3% 2% 2%;
}

.hero__cta-button_shinbashi {
  background: #065bb6;
  border-radius: 8px;
  box-sizing: border-box;
  color: #fff !important;
  display: block;
  line-height: 1.4;
  margin: 7% auto 2% auto;
  padding: 3% 2% 2%;
}

.hero__cta-button-image {
  border-radius: 50%;
  display: inline-block;
  margin-right: 3%;
  vertical-align: middle;
  width: 18%;
}
.hero__cta-button-text {
  display: inline-block;
  font-weight: 700;
  vertical-align: middle;
  width: 75%;
}
.hero__cta-button-text--style-001 {
  display: block;
  font-size: 1.1rem;
}
.hero__cta-button-text--style-002 {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.hero__cta-note {
  font-size: 0.7rem;
  text-align: center;
}
.intro__container {
  padding: 5% 0;
}
.intro__background {
  padding-bottom: 5em;
  position: relative;
  text-align: right;
}
.intro__image {
  border-radius: 20px 0 0 20px;
  width: 86%;
}
.intro__title-box {
  bottom: 0;
  left: 5%;
  position: absolute;
  text-align: left;
}
.intro__en-label {
  font-size: 0.8rem;
  font-weight: 700;
}
.intro__title {
  font-size: 2rem;
  margin: 0;
}
.intro__title--style-001,
.intro__title--style-002 {
  display: block;
}
.intro__description {
  margin: 5% auto;
  width: 90%;
}
.intro__sub-title {
  margin: 10% auto 5%;
  text-align: left;
  width: 90%;
}
.intro__sub-title--style-001 {
  display: block;
  font-size: 1rem;
}
.intro__sub-title--style-002 {
  font-size: 1.8rem;
}
.intro__list {
  margin: 0 auto;
  text-align: left;
  width: 90%;
}
.intro__list-item {
  margin: 6% 0;
  position: relative;
}
.intro__list-item--text {
  background: #e1f2ff;
  border-radius: 20px;
  font-size: 1rem;
  padding: 1.5% 6% 2% 4%;
}
.intro__list-item--check {
  fill: #0799d8;
  margin-right: 2%;
  vertical-align: middle;
  width: 1rem;
}
.point {
  background: #203240;
  color: #fff;
  padding: 10% 0;
}
.point .text-marker {
  background-image: linear-gradient(90deg, #0799d8, #0799d8) !important;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 100%;
  display: inline;
  font-weight: 700;
  opacity: 1;
  position: relative;
}
.point .text-marker.animated {
  background-size: 100% 100%;
}
.point em {
  color: #fff;
  padding: 0 1%;
}
.point__container {
  margin: 0 auto;
  width: 88%;
}
.point__en-label {
  font-weight: 700;
}
.point__title {
  font-size: 1.4rem;
  margin-top: 0;
}
.point__image {
  border-radius: 20px;
}
.point__discription {
  margin: 10% 0;
}
.features,
.features__container {
  padding: 5% 0;
}
.features__background {
  padding-top: 5em;
  position: relative;
  text-align: left;
}
.features__image {
  border-radius: 0 20px 20px 0;
  width: 86%;
}
.features__title-box {
  position: absolute;
  right: 5%;
  text-align: right;
  top: 0;
}
.features__en-label {
  font-size: 0.8rem;
  font-weight: 700;
}
.features__title {
  font-size: 2rem;
  margin: 0;
}
.features__title--style-001,
.features__title--style-002 {
  display: block;
}
.features__description {
  margin: 10% auto;
  width: 88%;
}
.merit {
  background: #e1f2ff;
  padding: 10% 0;
}
.merit__en-label {
  font-size: 4rem;
  line-height: 1;
}
.merit__title {
  font-size: 1.4rem;
  margin: 0;
}
.merit__list {
  margin: 10% auto;
  width: 90%;
}
.merit__list-item {
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  margin: 5% 0;
  padding: 5%;
}
.merit__image {
  border-radius: 50%;
  margin: 3% auto 10%;
  width: 80%;
}
.merit__step-label {
  display: block;
  font-size: 1.8rem;
}
.merit__list-item--title {
  font-size: 1.2rem;
  margin: 0;
}
.merit__list-item--discription {
  margin: 5% auto;
  width: 92%;
}
.merit__child-list {
  margin: 5% auto 10%;
  text-align: left;
  width: 90%;
}
.merit__child-list-item {
  margin: 3% 0;
}
.merit__child-list--title {
  background: #28aa0a;
  color: #fff;
  margin: 15% auto 7%;
  width: 90%;
}
.merit__child-list-item--text {
  font-size: 1rem;
}
.merit__child-list-item--check {
  fill: #28aa0a;
  margin-right: 3%;
  vertical-align: middle;
  width: 1rem;
}
.caution {
  background: #203240;
  color: #fff;
  padding: 10% 6%;
}
.caution__title {
  background: #fff;
  border-radius: 50px;
  color: #203240;
  font-size: 1.2rem;
  margin: 0;
  padding: 2% 0;
}
.caution__list {
  margin: 0 auto;
  width: 92%;
}
.caution__list-item {
  margin: 15% 0;
}
.caution__list-item--title {
  border-bottom: 1px solid;
  padding-bottom: 3%;
}
.flow {
  padding: 10% 0;
}
.flow__en-label {
  font-size: 4rem;
  line-height: 1;
}
.flow__title {
  font-size: 1.4rem;
  margin: 2% 0;
}
.flow__list {
  margin: 10% auto;
  width: 88%;
}
.flow__list-item {
  background: #f5f5f5;
  border-radius: 10px;
  box-sizing: border-box;
  margin: 5% 0;
  padding: 7%;
  position: relative;
}
.flow__step-label {
  align-items: center;
  background-color: #0799d8;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  height: 2rem;
  justify-content: center;
  margin: 0 auto;
  width: 2rem;
}
.flow__list-item--title {
  font-size: 1.4rem;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
  text-align: center;
}
.flow__list-item--title:after {
  background: #0799d8;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 50px;
}
.flow__cta-button {
  background: #0799d8;
  border-radius: 8px;
  box-sizing: border-box;
  color: #fff !important;
  display: block;
  line-height: 1.4;
  margin: 10% auto 2% auto;
  padding: 3% 2% 2%;
}

.flow__cta-button_shinbashi {
  background: #065bb6;
  border-radius: 8px;
  box-sizing: border-box;
  color: #fff !important;
  display: block;
  line-height: 1.4;
  margin: 10% auto 2% auto;
  padding: 3% 2% 2%;
}

.flow__cta-button-image {
  border-radius: 50%;
  display: inline-block;
  margin-right: 1%;
  vertical-align: middle;
  width: 18%;
}
.flow__cta-button-text {
  display: inline-block;
  font-weight: 700;
  vertical-align: middle;
  width: 75%;
}
.flow__cta-button-text--style-001 {
  display: block;
  font-size: 0.8rem;
}
.flow__cta-button-text--style-002 {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 1px;
}
.flow__cta-note {
  font-size: 0.6rem;
  text-align: center;
}
.price__en-label {
  font-size: 4rem;
  line-height: 1;
}
.price__title {
  font-size: 1.4rem;
  margin: 2% 0;
}
.price__sub-title {
  background: #28aa0a;
  color: #fff;
  font-size: 1.5rem;
  margin: 10% auto;
  width: 90%;
}
.price__sub-title--style-001,
.price__sub-title--style-002 {
  display: inline-block;
  vertical-align: middle;
}
.price__sub-title--style-002 {
  margin: 0 5px;
}
.price__sub-title--style-003 {
  display: inline-block;
  font-size: 1.7rem;
  vertical-align: middle;
}
.price__sub-title--style-003:after {
  content: "å††";
  display: inline-block;
  font-size: 0.8rem;
  margin-left: 2px;
  vertical-align: middle;
}
.price__discription {
  margin: 0 auto;
  padding: 10% 0;
  width: 88%;
}
.price__discription--style-001 {
  color: #28aa0a;
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.price__discription--style-002 {
  color: #28aa0a;
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}
.price__discription--style-003 {
  color: #28aa0a;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 5%;
}
.doctor {
  background: #e1f2ff;
  padding: 10% 0;
}
.doctor__container {
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 7% 5%;
  width: 90%;
}
.doctor__en-label {
  font-size: 4rem;
  line-height: 1;
}
.doctor__title {
  font-size: 1.4rem;
  margin: 2%;
}
.doctor__image {
  border-radius: 50%;
  margin: 10% auto;
  width: 75%;
}
.doctor__sub-title--style-001 {
  display: block;
  font-size: 1rem;
}
.doctor__description {
  font-size: 0.9rem;
  text-align: center;
}
.doctor-youtube {
  display: block;
  font-size: 0.8rem;
  text-decoration: underline !important;
}
.doctor__list-title {
  margin-bottom: 2%;
  text-align: left;
}
.doctor__list--license {
  font-size: 0.8rem;
  list-style: disc;
  padding-left: 7%;
  text-align: left;
}
.doctor__list--academic {
  font-size: 0.8rem;
  list-style: disc;
  padding-left: 7%;
  text-align: left;
}
.doctor__list--career {
  font-size: 0.8rem;
  list-style: disc;
  padding-left: 7%;
  text-align: left;
}
.clinic__containar {
  background: #203240;
  color: #fff;
  padding: 0 0 100px;
}
.clinic__title {
  font-size: 1.2rem;
  margin: 7% auto;
}
.clinic__list {
  font-size: 1rem;
  margin: 0 auto 10%;
  text-align: left;
  width: 85%;
}
.clinic__list-item {
  margin: 5% 0;
}
.clinic__list-item--title {
  display: inline-block;
  margin-right: 5%;
  width: 25%;
}
.clinic__list-item--text {
  display: inline-block;
  vertical-align: top;
  width: 68%;
}
.clinic__map {
  height: 400px;
  margin: 4% auto;
  max-width: 500px;
  position: relative;
  width: 90%;
}
.clinic__map--iframe {
  border: none;
  height: 100%;
  width: 100%;
}
.footer {
  bottom: 0;
  max-width: 480px;
  position: fixed;
  transition: transform 0.3s ease-in-out;
  width: 100%;
}
.footer__cta-list {
  display: flex;
}
.footer__cta-list-item {
  color: #fff;
  padding-bottom: 5%;
}

.footer__cta-list-item:first-child {
  background: #0799d8;
  line-height: 1;
  width: 25%;
}
.footer__cta-list-item:nth-child(2) {
  background: #065bb6;
  line-height: 1;
  width: 25%;
}
.footer__cta-list-item:nth-child(3) {
  background: #06c755;
  width: 50%;
}
.footer__cta-list-item a {
  display: block;
  padding: 10px 0;
}

.footer__cta-list-item:first-child .footer__cta-button-image,
.footer__cta-list-item:nth-child(2) .footer__cta-button-image {
  display: block;
  margin-right: 1%;
  margin: 0 auto;
  width: 22%;
}

.footer__cta-list-item:nth-child(3) .footer__cta-button-image {
  display: inline-block;
  margin-right: 1%;
  vertical-align: middle;
  width: 20%;
}
.footer__cta-button-text {
  display: inline-block;
  font-weight: 700;
  vertical-align: middle;
  width: 67%;
}
.footer__cta-button-text--style-001 {
  display: block;
  font-size: 0.7rem;
}
.footer__cta-button-text--style-002 {
  display: block;
  font-size: 1rem;
}
