html {
  font-size: 1px;
}

body {
  font-family: "Bebas Neue", sans-serif;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 16px;
  background: url(../img/mv.png);
  background-size: cover;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

.flex-reserve {
  flex-direction: row-reverse;
}

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

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.align-items-center {
  align-items: center;
}

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.text-center {
  text-align: center !important;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
@keyframes scaled_x_reserve {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
@keyframes scaled_x_down {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}

.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}

.anim.fadeInDown.is-animated {
  animation: fadeInDown 0.5s ease-in-out forwards;
}

.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}

.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}

.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}

.anim.scaled_x.is-animated {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}

.anim.scaled_x_reserve.is-animated {
  transform-origin: right;
  animation: scaled_x_reserve 1s ease-in-out forwards;
}

.anim.scaled_x_down.is-animated {
  transform-origin: right;
  animation: scaled_x_down 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
header {
  width: 100%;
  padding: 20rem 40rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}

header.fixed {
  position: fixed;
  animation: fadeIn 0.3s forwards;
}

header .logo {
  width: 347.79rem;
  display: flex;
  transition: 0.3s;
}

header .logo:hover {
  opacity: 0.7;
}

header ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

header ul li {
  padding-left: 40rem;
}

header ul li a {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 32rem;
  text-align: left;
  color: #000;
  transition: 0.3s;
}

header ul li a:hover {
  color: #ff4e00;
}

header ul li .e__btn {
  width: 220rem;
  height: 60rem;
  border-radius: 30rem;
  background: #ff4e00;
  border: 1rem solid #ff4e00;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 20rem;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}

header ul li .e__btn:hover {
  background: white;
  color: #ff4e00;
}

.sns__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  right: 16rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.sns__items.fixed {
  position: fixed;
  animation: fadeIn 0.3s forwards;
}

.sns__items .icon {
  width: 40rem;
  margin: 12rem 0;
  display: flex;
}

.sns__items .icon:hover svg #Path_70 {
  fill: white;
}

.sns__items .icon:hover svg #Path_71 {
  fill: #ff4e00;
}

.sns__items .icon:hover svg #Path_72 {
  fill: white;
}

.sns__items .icon:hover svg #Path_73 {
  fill: #ff4e00;
}

.sns__items .icon svg {
  width: 100%;
  height: 100%;
}

.sns__items .icon svg path {
  transition: 0.3s;
}

@keyframes rotateAni {
  0% {
    transform: rotate(360deg) translateZ(0rem);
  }
  100% {
    transform: rotate(0deg) translateZ(0rem);
  }
}
.frontview {
  width: 89.458272328%;
  display: flex;
  margin: auto;
  margin-top: 100rem;
  position: relative;
}

.frontview .scroll__down {
  width: 96rem;
  height: 96rem;
  position: absolute;
  left: 0;
  bottom: 10%;
  transform: translate(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.frontview .scroll__down:hover {
  opacity: 0.7;
}

.frontview .scroll__down span {
  width: 25rem;
  display: flex;
}

.frontview .scroll__down:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -100%;
  bottom: -100%;
  right: -100%;
  left: -100%;
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  background: url(../img/icon-scrolldown.png) center/cover no-repeat;
  animation: rotateAni 20s infinite forwards linear;
}

.concept-features {
  margin-top: 260rem;
  background: #FC4794;
  padding-bottom: 300rem;
}

.section-concept {
  position: relative;
  padding-bottom: 100rem;
  padding-top: 20rem;
  background: url(../img/concept_bg.png);
  background-size: 100% 100%;
  top: -2rem;
}

.section-concept .content__inner {
  max-width: 1100rem;
  width: 95%;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.section-concept .content__inner .content__images {
  position: absolute;
  left: 215rem;
  top: -50rem;
}

.section-concept .content__inner .content__images .up__image {
  width: 475rem;
  display: flex;
}

.section-concept .content__inner .content__images .down__image {
  width: 335rem;
  display: flex;
  position: absolute;
  bottom: -150rem;
  left: -90rem;
}

.section-concept .content__inner .title__part {
  width: 70rem;
  position: relative;
  top: -95rem;
  display: flex;
}

.section-concept .content__inner .content__text {
  width: 480rem;
}

.section-concept .content__inner .content__text h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-size: 38rem;
  line-height: 64rem;
  text-align: left;
  color: #3b3208;
  position: relative;
  z-index: 1;
}

.section-concept .content__inner .content__text h2 span {
  position: relative;
  opacity: 1;
  padding: 0 5rem;
  letter-spacing: 0.02em;
}

.section-concept .content__inner .content__text h2 span.is-animated:after {
  width: 100%;
}

.section-concept .content__inner .content__text h2 span:after {
  content: "";
  width: 0%;
  height: 97%;
  background: #ff0;
  position: absolute;
  left: 0;
  top: 54%;
  transform: translateY(-50%);
  z-index: -1;
  transition: 0.5s;
}

.section-concept .content__inner .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 32rem;
  margin-top: 40rem;
  text-align: left;
  color: #000;
  position: relative;
  z-index: 1;
}

.section-concept .content__inner .content__text .c__txt span {
  position: relative;
  font-weight: bold;
  opacity: 1;
}

.section-concept .content__inner .content__text .c__txt span.is-animated:after {
  width: 100%;
}

.section-concept .content__inner .content__text .c__txt span:after {
  content: "";
  width: 0%;
  height: 12rem;
  background: #ff0;
  position: absolute;
  left: 0;
  bottom: -2rem;
  z-index: -1;
  transition: 0.5s;
}

.section-concept .bg {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}

.entry__btn {
  width: 480rem;
  height: 80rem;
  margin: auto;
  margin-top: 86rem;
  border-radius: 40rem;
  background: #ff4e00;
  border: 1rem solid #ff4e00;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-align: left;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.entry__btn:hover {
  background: white;
  color: #ff4e00;
}

.entry__btn:hover span:after {
  background: #ff4e00;
}

.entry__btn:hover span:before {
  background: #ff4e00;
}

.entry__btn span {
  font-size: 18rem;
  position: relative;
}

.entry__btn span:after {
  content: "";
  width: 3rem;
  height: 21rem;
  background: white;
  position: absolute;
  left: -10rem;
  top: 50%;
  transform: translateY(-50%) rotate(-20deg);
  transition: 0.3s;
}

.entry__btn span:before {
  content: "";
  width: 3rem;
  height: 21rem;
  background: white;
  position: absolute;
  right: -6rem;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  transition: 0.3s;
}

.section-features {
  padding-top: 200rem;
  position: relative;
}

.section-features .bg {
  width: 50%;
  display: flex;
  position: absolute;
  right: 0;
  top: 58%;
  transform: translateY(-50%);
}

.section-features .title__part {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section-features .title__part .en__txt {
  width: 417rem;
  display: flex;
}

.section-features .title__part .ja__txt {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: bold;
  font-size: 32rem;
  letter-spacing: 0.2em;
  line-height: 58rem;
  margin-top: 15rem;
  text-align: left;
  color: #fff;
}

.section-features .content__items {
  max-width: 1100rem;
  width: 95%;
  margin: auto;
  margin-top: 85rem;
}

.section-features .content__items .c__item {
  margin-bottom: 95rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.section-features .content__items .c__item:last-child {
  margin-bottom: 0;
}

.section-features .content__items .c__item:nth-child(2n) {
  flex-direction: row-reverse;
}

.section-features .content__items .c__item .content__text {
  position: relative;
  z-index: 1;
}

.section-features .content__items .c__item .content__text .num {
  font-family: "Bebas Neue", sans-serif;
  font-weight: normal;
  font-size: 104rem;
  padding-left: 10rem;
  line-height: 1;
  text-align: left;
  color: #d2397a;
}

.section-features .content__items .c__item .content__text h2 {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: bold;
  font-size: 38rem;
  line-height: 63rem;
  margin-top: -48rem;
  text-align: left;
  color: #e32c7a;
  position: relative;
  z-index: 1;
}

.section-features .content__items .c__item .content__text h2 span {
  position: relative;
  padding: 0 10rem;
  opacity: 1;
}

.section-features .content__items .c__item .content__text h2 span.is-animated:after {
  width: 100%;
}

.section-features .content__items .c__item .content__text h2 span:after {
  content: "";
  width: 0%;
  height: 97%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 54%;
  transform: translateY(-50%);
  z-index: -1;
  transition: 0.5s;
}

.section-features .content__items .c__item .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 32rem;
  margin-top: 40rem;
  text-align: left;
  color: #fff;
}

.section-features .content__items .c__item .content__text .c__txt span {
  position: relative;
  opacity: 1;
}

.section-features .content__items .c__item .content__text .c__txt span.is-animated:after {
  width: 100%;
}

.section-features .content__items .c__item .content__text .c__txt span:after {
  content: "";
  width: 0%;
  height: 12rem;
  background: #d2397a;
  position: absolute;
  left: 0;
  bottom: -2rem;
  z-index: -1;
  transition: 0.5s;
}

.section-features .content__items .c__item .image {
  width: 520rem;
  display: flex;
  position: relative;
  z-index: 1;
}

.section-features .content__items .c__item .image:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 15rem;
  background: white;
  position: absolute;
  top: 12rem;
  left: 12rem;
  z-index: -1;
}

.section-features .register__btn {
  width: 480rem;
  height: 80rem;
  margin: auto;
  margin-top: 120rem;
  border-radius: 40rem;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1rem solid #000;
  transition: 0.3s;
}

.section-features .register__btn:hover {
  background: white;
}

.section-features .register__btn:hover span {
  color: #000;
}

.section-features .register__btn span {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}

@keyframes infinity-scroll-left {
  from {
    transform: translate(0, 7vw);
  }
  to {
    transform: translate(-100%, 0);
  }
}
.flow__bar {
  display: -ms-grid;
  overflow: hidden;
  margin-top: -285rem;
  position: relative;
  z-index: 1;
}

.flow__bar .d-demo__wrap {
  display: flex;
  overflow: hidden;
}

.flow__bar .d-demo__list {
  display: flex;
  align-items: flex-start;
  list-style: none;
  position: relative;
  right: 0;
}

.flow__bar .d-demo__list:last-child {
  padding-top: 7vw;
}

.flow__bar .d-demo__list--left {
  animation: infinity-scroll-left 20s infinite linear both;
  transition-timing-function: linear;
}

.flow__bar .d-demo__item {
  width: 100vw;
}

.entry__form {
  width: 100%;
  padding-bottom: 190rem;
  background: #00c982;
  position: relative;
  margin-top: -8vw;
}

.entry__form .white__bg {
  width: calc(1100rem + 50% - 550rem);
  height: 87%;
  background-color: #f8f8f8;
  position: absolute;
  right: 0;
  top: 0;
}

.entry__form .content__text {
  max-width: 1100rem;
  width: 95%;
  margin: auto;
  padding-top: 250rem;
  position: relative;
  z-index: 1;
}

.entry__form .content__text .e__mark {
  width: 300rem;
  height: 40rem;
  margin: auto;
  border-radius: 20rem;
  background: #00c982;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-size: 28rem;
  line-height: 58rem;
  text-align: left;
  color: #fff;
}

.entry__form .content__text .e__mark:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 9rem solid transparent;
  border-right: 9rem solid transparent;
  border-top: 18rem solid #00c982;
  position: absolute;
  left: 50%;
  bottom: -16rem;
  transform: translate(-50%);
}

.entry__form .content__text .gap__txt {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-size: 28rem;
  line-height: 58rem;
  margin-top: 20rem;
  text-align: center;
  color: #000;
}

.entry__form .content__text .gap__lbl {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 700;
  font-size: 38rem;
  line-height: 1;
  margin-top: 10rem;
  text-align: center;
  color: #00c982;
}

.entry__form .content__text .lession-exp {
  width: 990rem;
  margin: auto;
  padding: 50rem 0;
  margin-top: 34rem;
  margin-bottom: 100rem;
  background: white;
}

.entry__form .content__text .entry-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.entry__form .content__text .entry-price .p__mark {
  width: 128rem;
  margin-right: 35rem;
}

.entry__form .content__text .entry-price .entry__content .c__lbl {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.1em;
  line-height: 32rem;
  text-align: left;
  color: #000;
}

.entry__form .content__text .entry-price .entry__content h2 {
  font-weight: bold;
  font-size: 32rem;
  letter-spacing: 0.05em;
  line-height: 32rem;
  margin-top: 5rem;
  text-align: left;
  color: #000;
  position: relative;
  opacity: 1;
}

.entry__form .content__text .entry-price .entry__content h2.is-animated:after {
  width: 100%;
}

.entry__form .content__text .entry-price .entry__content h2:after {
  content: "";
  width: 0;
  height: 24rem;
  background: #ff0;
  position: absolute;
  left: 0;
  bottom: -10rem;
  z-index: -1;
  transition: 0.5s;
}

.entry__form .content__text .entry-price .entry__content .note__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 32rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}

.entry__form .content__text .entry-price .entry__content .stone__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 34rem;
  margin-top: 6rem;
  text-align: left;
  color: #000;
}

.entry__form .content__text .entry-price .entry__content .stone__txt span {
  font-weight: bold;
}

.entry__form .content__text .entry-price .entry__content .schedule__txt {
  width: 490rem;
  height: 75rem;
  margin-top: 30rem;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.2em;
  line-height: 32rem;
  text-align: left;
  color: #fff;
}

.entry__form .content__text .entry-price .entry__content .price {
  display: flex;
  justify-content: left;
  align-items: baseline;
  font-weight: 900;
  font-size: 56rem;
  line-height: 32rem;
  margin-top: 30rem;
  /* padding-left: 35rem; */
  text-align: left;
  color: #fc4794;
}

.entry__form .content__text .entry-price .entry__content .price .c01 {
  font-weight: 700;
  font-size: 40rem;
  margin-right: 10rem;
  color: #000;
}

.entry__form .content__text .entry-price .entry__content .price .c02 {
  font-weight: 700;
  font-size: 20rem;
  margin: 0 0 0 5rem;
  color: #fc4794;
}

.entry__form .content__text .entry-price .entry__content .price .c03 {
  font-weight: 600;
  font-size: 16rem;
  line-height: 32rem;
  text-align: left;
  color: #000;
}

.entry__form .content__text .catch__txt {
  font-weight: bold;
  font-size: 20rem;
  letter-spacing: 0.08em;
  line-height: 38rem;
  margin-top: 40rem;
  text-align: center;
  color: #000;
  position: relative;
  z-index: 1;
}

.entry__form .content__text .catch__txt span {
  font-size: 22rem;
  font-weight: 900;
  position: relative;
  opacity: 1;
}

.entry__form .content__text .catch__txt span.is-animated:after {
  width: 100%;
}

.entry__form .content__text .catch__txt span:after {
  content: "";
  width: 0%;
  height: 3rem;
  background: #fc4794;
  position: absolute;
  left: 0;
  bottom: 2rem;
  z-index: -1;
  transition: 0.5s;
}

.entry__form .content__text .entry__btn {
  margin-top: 30rem;
}

.section-access {
  padding: 190rem 0;
  text-align: center;
}

.section-access .title__part {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section-access .title__part .en__txt {
  width: 314rem;
  display: flex;
}

.section-access .title__part .ja__txt {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: bold;
  font-size: 32rem;
  letter-spacing: 0.2em;
  line-height: 58rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}

.section-access .address__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 32rem;
  margin-top: 35rem;
  text-align: left;
  color: #000;
  display: inline-block;
}

.section-access .map {
  max-width: 1120rem;
  width: 95%;
  height: 560rem;
  margin: auto;
  margin-top: 50rem;
}

.section-access .map iframe {
  width: 100%;
  height: 100%;
}

footer {
  max-width: 1120rem;
  width: 95%;
  margin: auto;
  padding-bottom: 48rem;
  border-bottom: 1rem solid #999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .f__logo {
  width: 347.79rem;
  display: flex;
  transition: 0.3s;
}

footer .f__logo:hover {
  opacity: 0.7;
}

footer ul {
  display: flex;
}

footer ul li {
  margin-right: 20rem;
}

footer ul li a {
  font-weight: 500;
  font-style: normal;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 32rem;
  text-align: left;
  color: #000;
  transition: 0.3s;
}

footer ul li a:hover {
  color: #ff4e00;
}

.footer__mark {
  width: 160rem;
  display: flex;
  margin: 48rem auto 64rem;
}

.copyright {
  font-family: "bebas-neue-rounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 20rem 0;
  text-align: center;
  color: #fff;
  background: #000;
}

.subfrontview {
  padding: 260rem 0 220rem;
}
.subfrontview .en__txt {
  width: 508rem;
  margin: auto;
  margin-bottom: 15rem;
  display: flex;
}
.subfrontview .ja__txt {
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: bold;
  font-size: 32rem;
  letter-spacing: 0.2em;
  line-height: 58rem;
  text-align: center;
  color: #000;
}

.model__wrapper {
  width: 1120rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.model__wrapper .model__bar {
  width: 69rem;
  display: flex;
  position: sticky;
  top: 114rem;
}
.model__wrapper .model__items {
  width: 1014rem;
  display: flex;
  flex-wrap: wrap;
}
.model__wrapper .model__items .m__item {
  width: 25%;
  margin-bottom: 30rem;
  padding: 0 7rem;
}
.model__wrapper .model__items .m__item .c__image {
  width: 100%;
  height: 240rem;
  border-radius: 15rem;
  overflow: hidden;
}
.model__wrapper .model__items .m__item h3 {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 32rem;
  margin-top: 12rem;
  text-align: center;
  color: #000;
}

.top__btn {
  width: 480rem;
  height: 80rem;
  margin: auto;
  margin-top: 90rem;
  margin-bottom: 180rem;
  border-radius: 40rem;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1rem solid #000;
  transition: 0.3s;
}
.top__btn:hover {
  background: white;
}
.top__btn:hover span {
  color: #000;
}
.top__btn span {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.2em;
  line-height: 20rem;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}

.w__container {
  margin: 350rem 0 200rem;
  text-align: center;
}
.w__container .en_txt {
  font-size: 35rem;
  font-weight: 700;
  text-align: center;
  color: #333;
}
.w__container .en_txt span {
  font-weight: 500;
  display: block;
  font-size: 20rem;
  margin-top: 8rem;
}
.w__container .txt {
  font-size: 16rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 8rem;
  color: #333;
}
.w__container .list__btn {
  width: 355rem;
  height: 60rem;
  margin-top: 40rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 30rem;
  background: #ff4e00;
  border: 1rem solid #ff4e00;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 30rem;
  text-align: center;
  color: #fff;
  background-image: url(../img/arrow.png);
  background-size: 15rem;
  background-repeat: no-repeat;
  background-position: 320rem;
  transition: 0.3s;
  cursor: pointer;
}
.w__container .list__btn:hover {
  background: #fff;
  background-image: url(../img/arrow_oreng.png);
  background-size: 15rem;
  background-repeat: no-repeat;
  background-position: 320rem;
  color: #ff4e00;
}

@media screen and (max-width: 1300px) {
  header ul li {
    padding-left: 21rem;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8px;
  }
}
@media screen and (max-width: 1000px) {
  header .logo {
    width: 245.79rem;
  }
  header ul li {
    padding-left: 20rem;
  }
  header {
    padding: 20rem;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 0.65px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.13333333vw;
  }
  .frontview {
    width: 690rem;
    margin-top: 130rem;
  }
  .section-concept .content__inner {
    width: 690rem;
    flex-wrap: wrap;
  }
  .section-concept .content__inner .content__text h2 {
    font-size: 44rem;
    line-height: 65rem;
  }
  .section-concept .content__inner .content__text {
    width: 562rem;
  }
  .section-concept .content__inner .content__text .c__txt {
    font-size: 26rem;
    letter-spacing: 0;
    line-height: 50rem;
    margin-top: 52rem;
    text-align: justify;
  }
  .section-concept .content__inner .content__images {
    position: relative;
    left: auto;
    top: auto;
    margin: 55rem 0 0 auto;
  }
  .section-concept .content__inner .content__images .up__image {
    width: 600rem;
  }
  .section-concept .content__inner .content__images .down__image {
    width: 420rem;
    display: flex;
    position: absolute;
    bottom: -201rem;
    left: -100rem;
  }
  .section-concept {
    position: relative;
    padding-bottom: 80rem;
    padding-top: 20rem;
    background: url(../img/concept_bg_sp.png);
    background-size: 100% 100%;
  }
  .entry__btn {
    width: 690rem;
    height: 96rem;
    margin: auto;
    margin-top: 300rem;
    border-radius: 50rem;
    font-size: 30rem;
  }
  .entry__btn span {
    font-size: 26rem;
  }
  .entry__btn span:before {
    height: 25rem;
  }
  .entry__btn span:after {
    height: 25rem;
  }
  .section-features {
    padding-top: 150rem;
  }
  .section-features .content__items {
    max-width: 1100rem;
    width: 690rem;
    margin: auto;
    margin-top: 55rem;
  }
  .section-features .content__items .c__item {
    margin-bottom: 60rem;
    display: block;
  }
  .section-features .content__items .c__item .content__text .num {
    font-size: 136rem;
  }
  .section-features .content__items .c__item .content__text h2 {
    font-size: 44rem;
    line-height: 64rem;
    margin-top: -62rem;
  }
  .section-features .content__items .c__item .image {
    width: 690rem;
    margin-top: 58rem;
  }
  .section-features .content__items .c__item .image:after {
    top: 13rem;
    left: 13rem;
  }
  .section-features .content__items .c__item .content__text .c__txt {
    font-size: 26rem;
    letter-spacing: 0em;
    line-height: 50rem;
    margin-top: 50rem;
    text-align: justify;
  }
  .entry__form .white__bg {
    width: 690rem;
    height: 95%;
  }
  .entry__form .content__text .gap__txt {
    font-size: 30rem;
  }
  .entry__form .content__text .gap__lbl {
    font-weight: 700;
    font-size: 40rem;
  }
  .entry__form .content__text {
    width: 690rem;
  }
  .entry__form .content__text .entry-price {
    justify-content: left;
  }
  .entry__form .content__text .entry-price .entry__content .c__lbl {
    font-size: 28rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  .entry__form .content__text .entry-price .entry__content .note__txt {
    font-size: 20rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
  .entry__form .content__text .entry-price .entry__content .stone__txt {
    font-size: 26rem;
    letter-spacing: 0.05em;
    line-height: 40rem;
    margin-top: 15rem;
  }
  .entry__form .content__text .entry-price .entry__content {
    width: 500rem;
  }
  .entry__form .content__text .entry-price .entry__content .schedule__txt {
    width: 100%;
    height: 80rem;
    margin-top: 34rem;
    font-size: 24rem;
  }
  .entry__form .content__text .entry-price .entry__content .price {
    font-weight: 900;
    font-size: 44rem;
    padding-left: 20rem;
    line-height: 1;
  }
  .entry__form .content__text .entry-price .entry__content .price .c01 {
    font-size: 35rem;
    margin-right: 10rem;
  }
  .entry__form .content__text .entry-price .entry__content .price .c02 {
    font-size: 28rem;
    margin: 0 0 0 10rem;
  }
  .entry__form .content__text .entry-price .entry__content .price .c03 {
    font-size: 20rem;
  }
  .section-access .address__txt {
    font-size: 28rem;
    line-height: 56rem;
    display: block;
    padding-left: 30rem;
  }
  .section-access .map {
    width: 690rem;
    height: 345rem;
  }
  .section-access {
    padding: 190rem 0 130rem;
  }
  footer {
    width: 690rem;
    margin: auto;
    padding-bottom: 45rem;
    border-bottom: 1rem solid #999;
    display: block;
  }
  footer .f__logo {
    width: 395rem;
  }
  footer ul {
    display: block;
    margin-top: 45rem;
  }
  footer ul li a {
    font-size: 28rem;
    letter-spacing: 0.05em;
    line-height: 56rem;
  }
  .footer__mark {
    width: 202rem;
    margin: 56rem auto 57rem;
  }
  .copyright {
    font-size: 20rem;
    padding-bottom: 150rem;
  }
  .sns__items .icon {
    width: 56rem;
    margin: 20rem 0;
  }
  header .logo {
    width: 395rem;
    position: relative;
    z-index: 2;
  }
  header {
    padding: 30rem;
  }
  .sp-menu {
    width: 70rem;
    height: 70rem;
    border-radius: 50%;
    background: #000;
    position: relative;
    z-index: 2;
    cursor: pointer;
  }
  .sp-menu.open span:first-child {
    top: 32rem;
    transform: translate(-50%) rotate(45deg);
  }
  .sp-menu.open span:last-child {
    top: 32rem;
    transform: translate(-50%) rotate(-45deg);
  }
  .sp-menu span {
    width: 40rem;
    height: 4rem;
    border-radius: 2rem;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 25rem;
    transform: translate(-50%);
    transition: 0.3s;
  }
  .sp-menu span + span {
    top: 40rem;
  }
  header nav {
    width: 100%;
    height: 100%;
    padding-top: 125rem;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    background: rgba(85, 85, 85, 0.8);
    display: none;
  }
  header nav ul {
    width: 690rem;
    height: auto;
    margin: auto;
    border-radius: 32rem;
    padding: 65rem 30rem;
    background: #fff;
    display: block;
  }
  header nav .sp-sns__items {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 55rem;
    margin-top: 45rem;
    border-top: 1px solid #999;
  }
  header nav .sp-sns__items .icon {
    width: 56rem;
    margin: 0 24rem;
    display: flex;
  }
  header nav .sp-sns__items .icon svg {
    width: 100%;
    height: 100%;
  }
  header ul li {
    padding: 6rem 0 6rem 10rem;
  }
  header ul li a {
    font-size: 28rem;
    letter-spacing: 0.05em;
    line-height: 64rem;
  }
  header ul li .e__btn {
    width: 100%;
    height: 96rem;
    border-radius: 50rem;
    margin-top: 56rem;
    background: #ff4e00;
    font-size: 30rem;
  }
  .fixed__entry__btn {
    width: 690rem;
    height: 96rem;
    margin: auto;
    margin-top: 300rem;
    border-radius: 50rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: white;
    background: #ff4e00;
    position: fixed;
    left: 50%;
    bottom: 25rem;
    transform: translate(-50%);
    z-index: 2;
  }
  .frontview .scroll__down {
    width: 96rem;
    height: 96rem;
    position: absolute;
    left: 4%;
    bottom: 4%;
  }
  .flow__bar .d-demo__item {
    width: 250vw;
  }
  .flow__bar .d-demo__list--left {
    animation: infinity-scroll-left 15s infinite linear both;
  }
  .flow__bar .d-demo__list:last-child {
    padding-top: 17.5vw;
  }
  @keyframes infinity-scroll-left {
    from {
      transform: translate(0, 17.5vw);
      right: 0;
    }
    to {
      transform: translate(-100%, 0);
    }
  }
  .entry__form {
    margin-top: -26vw;
    padding-bottom: 77rem;
  }
  .entry__form .content__text .entry__btn {
    width: 570rem;
    margin: auto;
    margin-top: 64rem;
  }
  .entry__form .content__text .catch__txt {
    font-size: 28rem;
    letter-spacing: 0.08em;
    line-height: 50rem;
    margin-top: 55rem;
    display: inline-block;
  }
  .entry__form .content__text .catch__txt span {
    font-size: 30rem;
  }
  .section-features .bg {
    width: 680rem;
    top: 52%;
    transform: translateY(-50%);
  }
  .entry__form .content__text .lession-exp {
    width: 630rem;
    margin: 0 0 0 auto;
    padding: 50rem 0;
    margin-top: 25rem;
    margin-bottom: 90rem;
    text-align: center;
  }
  .entry__form .content__text .entry-price .p__mark {
    width: 128rem;
    margin-right: 20rem;
    position: relative;
    margin-left: -60rem;
  }
  .entry__form .content__text .entry-price .entry__content h2 {
    display: inline-block;
    letter-spacing: 0;
  }
  .model__wrapper {
    width: 660rem;
    margin-left: 12rem;
  }
  .model__wrapper .model__items {
    width: 570rem;
  }
  .model__wrapper .model__items .m__item .c__image {
    width: 100%;
    height: 260rem;
  }
  .model__wrapper .model__items .m__item {
    width: 50%;
    margin-bottom: 40rem;
    padding: 0 12rem;
  }
  .model__wrapper .model__items .m__item h3 {
    font-size: 26rem;
    line-height: 1.5;
  }
  .model__wrapper .model__bar {
    top: 144rem;
  }
  .w__container {
    margin: 200rem 0 100rem;
  }
  .w__container .en_txt {
    font-size: 60rem;
  }
  .w__container .en_txt span {
    font-size: 32rem;
  }
  .w__container .txt {
    font-size: 24rem;
    line-height: 1.8;
    text-align: center;
    margin-top: 11rem;
  }
  .w__container .list__btn {
    width: 455rem;
    height: 80rem;
    margin-top: 40rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 40rem;
    font-size: 24rem;
    background-size: 25rem;
    background-repeat: no-repeat;
    background-position: 400rem;
  }
  .w__container .list__btn:hover {
    background-size: 25rem;
    background-repeat: no-repeat;
    background-position: 400rem;
  }
} /*# sourceMappingURL=style.css.map */