@charset "UTF-8";

/* mv
----------------------------------------*/
.mv div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.mv div * {
  color: #ffffff;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.76);
  text-align: center;
}

.mv h2 {
  font-size: 8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.45;
  position: relative;
}

.mv h2 span {
  position: absolute;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  top: -2.6rem;
  right: -0.5rem;
}

.mv p {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 0.5rem;
}

@media only screen and (max-width: 768px) {
  .mv div {
    top: 38.5%;
  }

  .mv h2 {
    font-size: 6rem;
    letter-spacing: 0.05em;
  }

  .mv h2 span {
    font-size: 1.8rem;
    letter-spacing: 0;
    top: -1.2rem;
    right: 0.8rem;
  }

  .mv p {
    font-size: 1.7rem;
    line-height: 1.46;
    margin-top: 0.4rem;
  }
}

/* thought
----------------------------------------*/
.thought {
  display: flex;
  margin-bottom: 13.1rem;
}

.thought::before {
  content: "";
  display: block;
  width: calc((100% - 114rem) / 2 + 35rem);
  min-width: 35rem;
  background: url(../../img/index/bg_thought.jpg) no-repeat right top / cover;
}

.thought .inner > div {
  max-width: 71rem;
  margin: 7rem 0 0 8rem;
}

.thought h3 {
  color: #b963a4;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.thought p {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5.4rem;
}

.thought .thought_img-sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  .thought {
    display: block;
    margin-bottom: 7rem;
  }

  .thought::before {
    display: none;
  }

  .thought .thought_img-sp {
    display: block;
    margin: 0 0 3rem;
  }

  .thought .inner > div {
    max-width: 33.5rem;
    margin: 4rem auto 0;
  }

  .thought h3 {
    font-size: 4rem;
  }

  .thought p {
    font-size: 1.7rem;
    line-height: 1.9;
    margin-bottom: 6.6rem;
  }
}

/* reason
----------------------------------------*/
.reason {
  margin-bottom: 12rem;
}

.reason .inner {
  max-width: 114rem;
  margin: 0 auto;
}

.reason .inner h3 {
  color: #b963a4;
  font-size: 5rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 5rem;
}

.reason .inner h3 small {
  display: block;
  font-size: 2.2rem;
}

/* .reason .inner .reason_block {
	display: flex;
	justify-content: space-between;
	column-gap: 4rem;
} */

.reason .inner .reason_block {
  display: grid;
  grid-template-columns: 53rem 57rem;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "a b"
    "c b";
  column-gap: 4rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}
.reason .inner .reason_block:nth-of-type(even) {
  grid-template-columns: 57rem 53rem;
  grid-template-areas:
    "b a"
    "b c";
}
.reason .inner .reason_block h4 {
  grid-area: a;
  color: #b963a4;
  font-size: 4rem;
  background: url(../../img/index/bg_reason_h4.svg) no-repeat left bottom / 45rem auto;
  padding-bottom: 3.5rem;
  margin-bottom: 2rem;
}
.reason .inner .reason_block figure {
  grid-area: b;
}
.reason .inner .reason_block p {
  grid-area: c;
}

.reason .inner .reason_block + .reason_block {
  margin-top: 5rem;
}

@media only screen and (max-width: 768px) {
  .reason {
    margin-bottom: 4rem;
  }

  .reason .inner {
    max-width: 33.5rem;
  }

  .reason .inner h3 {
    font-size: 4rem;
    margin-bottom: 3rem;
  }

  .reason .inner h3 small {
    font-size: 2rem;
  }

  .reason .inner .reason_block,
  .reason .inner .reason_block:nth-of-type(even) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "a"
      "b"
      "c";
  }

  .reason .inner .reason_block + .reason_block {
    margin-top: 7rem;
  }

  .reason .inner .reason_block figure {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .reason .inner .reason_block h4 {
    font-size: 2.7rem;
    letter-spacing: 0;
    text-align: center;
    background: url(../../img/index/bg_reason_h4.svg) no-repeat left bottom / 33.5rem auto;
    padding-bottom: 1rem;
    margin: 0.2rem 0 1rem;
  }
}

/* plan
----------------------------------------*/
.plan {
  background: url(../../img/index/bg_plan.jpg) no-repeat center top / cover;
  padding: 16rem 0 4rem;
}

.plan .inner {
  max-width: 114rem;
  margin: 0 auto;
}

.plan .inner h3 {
  color: #b963a4;
  font-size: 5rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 2.7rem;
}

.plan .inner h3 small {
  display: block;
  font-size: 2.2rem;
}

.plan .inner h3 + p {
  text-align: center;
  margin-bottom: 6rem;
}

.plan .inner .plan_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 6rem;
  margin-bottom: 3rem;
}

.plan .inner .plan_block {
  max-width: 55rem;
  background: #ffffff;
}

.plan .inner .plan_block h4 {
  color: #ffffff;
  background: #b963a4;
  padding: 1.8rem 8rem;
  position: relative;
}

.plan .inner .plan_block h4::before {
  content: "";
  width: 10rem;
  height: 10rem;
  position: absolute;
  left: -3rem;
  top: -3rem;
  background: url(../../img/index/icon_plan01.svg) no-repeat left top / 100% auto;
}

.plan .inner .plan_block:nth-child(2) h4::before {
  background: url(../../img/index/icon_plan02.svg) no-repeat left top / 100% auto;
}

.plan .inner .plan_block:nth-child(3) h4::before {
  background: url(../../img/index/icon_plan03.svg) no-repeat left top / 100% auto;
}

.plan .inner .plan_block:nth-child(4) h4::before {
  background: url(../../img/index/icon_plan04.svg) no-repeat left top / 100% auto;
}

.plan .inner .plan_block h4 strong {
  font-size: 3rem;
  margin-right: 1rem;
}

.plan .inner .plan_block a > div {
  padding: 2rem 3rem 3rem;
}

.plan .inner .plan_block ul {
  display: flex;
  column-gap: 1rem;
  margin: 1.5rem 0 3.2rem;
}

.plan .inner .plan_block li {
  font-size: 2rem;
  line-height: 1.44;
  color: #ffffff;
  background: #b963a4;
  border-radius: 0.5rem;
  padding: 0.2rem 0.5rem;
}

.plan .inner .plan_block div div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.plan .inner .plan_block div div p.price {
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1.45;
}

.plan .inner .plan_block div div p.price strong {
  font-size: 4rem;
  font-weight: 600;
  color: #b963a4;
  margin: 0 0.5rem;
}

.plan .inner .plan_block div div p.detail {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  font-size: 2rem;
  color: #b963a4;
  letter-spacing: 0;
  border-bottom: 1px solid #b963a4;
}

.plan .inner .plan_block div div p.detail::after {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  background: url(../../img/index/arrow-up-right.svg) no-repeat left top / 100% auto;
  margin-top: 0.4rem;
}

.plan .inner .plan_block div div + p {
  margin-top: 1.5rem;
  line-height: 1.5;
}

.plan .inner .plan_block div div + p small {
  display: block;
}

.plan .inner > ul li {
  text-indent: -1em;
  padding-left: 1em;
}

@media only screen and (max-width: 768px) {
  .plan {
    padding: 4rem 0;
  }

  .plan .inner {
    max-width: 33.5rem;
  }

  .plan .inner h3 {
    font-size: 4rem;
    margin-bottom: 3rem;
  }

  .plan .inner h3 small {
    font-size: 2rem;
  }

  .plan .inner h3 + p {
    margin-bottom: 7rem;
  }

  .plan .inner .plan_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 5rem;
    margin-bottom: 3rem;
  }

  .plan .inner .plan_block {
    max-width: 100%;
    background: #ffffff;
  }

  .plan .inner .plan_block h4 {
    line-height: 1.46;
    padding: 1.8rem 0 1.8rem 8rem;
  }

  .plan .inner .plan_block:not(:nth-child(1)) h4 {
    padding: 0.6rem 0 0.5rem 8rem;
  }

  .plan .inner .plan_block:not(:nth-child(1)) h4 strong {
    display: block;
    margin-bottom: -0.5rem;
  }

  .plan .inner .plan_block h4::before {
    width: 9rem;
    height: 9rem;
    left: -2rem;
    top: -3rem;
  }

  .plan .inner .plan_block a > div {
    padding: 2rem 2rem 3rem;
  }

  .plan .inner .plan_block ul {
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
  }

  .plan .inner .plan_block div div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
  }

  .plan .inner .plan_block div div p.price strong {
    margin: 0 0.8rem 0 0.5rem;
  }

  .plan .inner > ul li {
    text-indent: 0;
    padding-left: 0;
  }

  .plan .inner > ul li + li {
    margin-top: 2rem;
  }
}

/* type
----------------------------------------*/
.type {
  padding: 10rem 0 15rem;
}

.type .inner {
  max-width: 114rem;
  margin: 0 auto;
}

.type .inner h3 {
  color: #b963a4;
  font-size: 5rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10.8rem;
}

.type .inner h3 small {
  display: block;
  font-size: 2.2rem;
}

.type .inner .type_wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 1.5rem;
}

.type .inner .type_block {
  width: 37rem;
  background: #f5f5fa;
}

.type .inner .type_block h4 {
  position: relative;
  text-align: center;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1.44;
  background: #b963a4;
  padding: 2.2rem 0;
}

.type .inner .type_block h4 small {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  color: #b963a4;
  border: 0.3rem solid #b963a4;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12.4rem;
  height: 4rem;
  box-sizing: border-box;
}

.type .inner .type_block h4 small span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.type .inner .type_block div {
  padding: 2rem 3rem 3rem;
}

.type .inner .type_block div h5 {
  font-size: 2.6rem;
  line-height: 1.44;
  color: #b963a4;
  text-align: center;
  margin-bottom: 1.5rem;
}

.type .inner .type_block div li {
  line-height: 1.3;
  margin-bottom: 1rem;
}

.type .inner .type_block div p.detail {
  text-align: right;
}

.type .inner .type_block div p.detail span {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  font-size: 2rem;
  color: #b963a4;
  letter-spacing: 0;
  border-bottom: 1px solid #b963a4;
}

.type .inner .type_block div p.detail span::after {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  background: url(../../img/index/arrow-up-right.svg) no-repeat left top / 100% auto;
  margin-top: 0.4rem;
}

@media only screen and (max-width: 768px) {
  .type {
    padding: 3.7rem 0 4rem;
  }

  .type .inner {
    max-width: 100%;
  }

  .type .inner h3 {
    font-size: 4rem;
    margin-bottom: 3rem;
  }

  .type .inner h3 small {
    font-size: 2rem;
  }

  .type .inner .type_wrap {
    display: flex;
    justify-content: space-between;
    column-gap: 1.5rem;
  }

  .type .inner .type_block {
    width: 37rem;
    background: #f5f5fa;
  }

  .type .inner .type_block h4 {
    font-size: 2rem;
    padding: 2.7rem 0 2.4rem;
  }

  .type .inner .type_block h4 small {
    width: 13.4rem;
    height: 3.8rem;
  }

  .type .inner .type_block div {
    padding: 2rem 3rem 3rem;
  }

  .type .inner .type_block div h5 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .type .inner .type_block div p.detail {
    text-align: center;
    margin-top: 2rem;
  }

  .slick-list {
    padding-top: 1.9rem !important;
  }

  .slick-slide {
    margin: 0 1rem;
  }

  .slide-arrow {
    width: 4.9rem;
    position: absolute;
    top: 25.8rem;
    z-index: 99;
  }

  .slide-arrow.prev-arrow {
    left: 1rem;
  }

  .slide-arrow.next-arrow {
    right: 1rem;
  }

  .slick-dots {
    bottom: -3.5rem;
  }

  .slick-dots li {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0.75rem;
  }

  .slick-dots li button:before {
    font-size: 1.5rem;
    opacity: 1;
    color: #aaaaaa;
  }

  .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #b963a4;
  }
}

/* sns
----------------------------------------*/
.sns {
  background: #f5f5fa;
}

.sns::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 50%;
  height: 100%;
  background: #f5f5fa url(../../img/index/bg_sns.jpg) no-repeat left center / cover;
}

.sns .inner {
  max-width: 114rem;
  margin: 0 auto;
}

.sns .inner div {
  width: 57rem;
  padding: 9.5rem 0 12rem;
}

.sns .inner h3 {
  color: #b963a4;
  font-size: 5rem;
  line-height: 1.4;
  margin-bottom: 3rem;
}

.sns .inner h3 small {
  display: block;
  font-size: 2.2rem;
}

.sns .inner ul {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  margin-top: 3rem;
}

.sns .inner li {
  width: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .sns {
    display: flex;
    flex-direction: column-reverse;
  }

  .sns::after {
    position: static;
    display: block;
    width: 100%;
    aspect-ratio: 125/84;
  }

  .sns .inner {
    max-width: 33.5rem;
  }

  .sns .inner div {
    width: 100%;
    padding: 4rem 0;
  }

  .sns .inner h3 {
    font-size: 4rem;
    text-align: center;
  }

  .sns .inner h3 small {
    font-size: 2rem;
  }

  .sns .inner ul {
    justify-content: center;
  }
}

/* recruit
----------------------------------------*/
.recruit {
  background: url(../../img/index/bg_recruit.jpg) no-repeat center top / cover;
  color: #ffffff;
  padding: 10rem 0;
}

.recruit::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

.recruit .inner {
  max-width: 114rem;
  margin: 0 auto;
  z-index: 1;
}

.recruit .inner h3 {
  font-size: 5rem;
  line-height: 1.44;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.75);
  margin-bottom: 3rem;
}

.recruit .inner h3 small {
  display: block;
  font-size: 2.2rem;
}

.recruit .inner p {
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.75);
  margin-bottom: 3rem;
}

.recruit .inner a {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 0;
  border-bottom: 1px solid #ffffff;
}

.recruit .inner a::after {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  background: url(../../img/index/arrow-up-right02.svg) no-repeat left top / 100% auto;
  margin-top: 0.3rem;
}

@media only screen and (max-width: 768px) {
  .recruit {
    background: url(../../img/index/bg_recruit_sp.jpg) no-repeat center top / cover;
    padding: 4rem 0;
  }

  .recruit::after {
    display: none;
  }

  .recruit .inner {
    max-width: 33.5rem;
  }

  .recruit .inner h3 {
    font-size: 4rem;
  }

  .recruit .inner h3 small {
    font-size: 2rem;
  }

  .recruit .inner p.recruit_detail {
    text-align: center;
    margin-bottom: 0;
  }
}

.text_bg_perple {
  background-color: #b963a4;
  color: #ffffff;
  padding: 1px 3px;
}

/* movies
----------------------------------------*/
.movies {
  padding: min(calc(100 / 1440 * 100vw), 100px) 0;
  background: linear-gradient(rgba(207, 164, 197, 0) 0%, #cfa4c5 100%);
}
.movies .inner {
  max-width: 114rem;
  margin: 0 auto;
}
.movies .inner a {
  display: block;
}

.movies .inner iframe {
  width: 100%;
  aspect-ratio: 640 / 360;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .movies {
    padding: calc(32 / 375 * 100vw) 0;
  }
  .movies .inner {
    max-width: 33.5rem;
  }
}
