@charset "utf-8";

/* loading */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
  pointer-events: none;
}

#loading {
  background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fad390, #fbc531);
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#loading.on {
  visibility: visible;
  opacity: 1;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.characters {
  display: flex;
  gap: 40px;
}

.characters img {
  width: 100px;
  animation: bounce 1s infinite;
}

.characters img:nth-child(1) {
  animation-delay: 0s;
}

.characters img:nth-child(2) {
  animation-delay: 0.2s;
}

.characters img:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

.loading-text {
  font-size: 22px;
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
  position: relative;
}

.loading-tit {
  font-size: 17rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  line-height: 1;
  margin-bottom: 40px;
}

.loading-tit span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-120px) scale(0.6) rotateX(-90deg);
  animation: dropIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.loading-tit span:nth-child(1) {
  animation-delay: 0s;
}

.loading-tit span:nth-child(2) {
  animation-delay: 0.1s;
}

.loading-tit span:nth-child(3) {
  animation-delay: 0.2s;
}

.loading-tit span:nth-child(4) {
  animation-delay: 0.3s;
}

.loading-tit span:nth-child(5) {
  animation-delay: 0.4s;
}

.loading-tit span:nth-child(6) {
  animation-delay: 0.5s;
}

.loading-tit .img-abs {
  position: absolute;
  width: 70px;
  bottom: 0px;
  left: -40px;
  animation: fadeInIcon 2s forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

@keyframes fadeInIcon {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: rotate(10deg);
  }
}

@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-120px) scale(0.6) rotateX(-90deg);
  }

  60% {
    opacity: 1;
    transform: translateY(10px) scale(1.05) rotateX(0deg);
  }

  80% {
    transform: translateY(-5px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.loading-tit.loaded span {
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.03);
    opacity: 0.95;
  }
}

.loading-text::after {
  content: "...";
  animation: dots 1.5s steps(3, end) infinite;
  position: absolute;
  margin-left: 5px;
}

@keyframes dots {
  0% {
    content: "";
  }

  33% {
    content: ".";
  }

  66% {
    content: "..";
  }

  100% {
    content: "...";
  }
}

@media screen and (max-width: 768px) {
  .loading-tit {
    font-size: 20vw;
  }

  .loading-tit .img-abs {
    top: -42px;
    right: 0;
    left: unset;
  }
}

/* .mv .mv-slide img{width: 100%;} */
.mv .mv-slide div {
  vertical-align: bottom;
}

.mv .mv-slide {
  line-height: 1;
}

.mv .mv-slide .slide {
  position: relative;
}

.mv .mv-slide .slide01 .mv-abs {
  position: absolute;
  bottom: 5%;
  left: 3.2857%;
  width: 34.23%;
}

.mv .mv-slide .slide02 .mv-abs {
  position: absolute;
  bottom: 0%;
  left: 2.5%;
  width: 48.888%;
}

/* .mv .mv-slide .slide03 .mv-abs{position: absolute;top: 5%;right: 7%;width: 35.083%;} */
.mv .mv-slide .slide03 .mv-abs {
  position: absolute;
  top: 5%;
  left: 5.9027%;
  width: 42.1527%;
}

.mv .mv-slide .slide04 .mv-abs {
  position: absolute;
  bottom: 0%;
  left: 3%;
  width: 42.083%;
}

.mv .mv-slide .slide .mv-abs {
  opacity: 0;
}

.mv .mv-slide .slick-current .slide .mv-abs {
  opacity: 1;
  animation: bounceIn 1.5s forwards;
}

.mv .mv-slide .slick-current .slide02 .mv-abs {
  opacity: 1;
  animation: bounceUp 2s forwards;
}


@keyframes bounceIn {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.15);
  }

  80% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}


@keyframes bounceUp {
  0% {
    transform: translateY(50%);
  }

  60% {
    transform: translateY(50%);
  }

  80% {
    transform: translateY(80%);
  }

  100% {
    transform: translateY(0%);
  }
}


.line {
  height: 28px;
  background-image: linear-gradient(90deg, rgba(255, 91, 9, 1) 0%, rgba(238, 0, 150, 1) 100%);
}

@media screen and (max-width: 768px) {
  .line {
    height: 14px;
  }

  .mv .mv-slide .slide01 .mv-abs {
    width: 49.86666%;
    right: 24%;
    bottom: 10px;
    left: unset;
  }

  .mv .mv-slide .slide02 .mv-abs {
    width: 87.8666%;
    left: 5%;
  }

  .mv .mv-slide .slide03 .mv-abs {
    width: 74%;
    right: 10%;
    top: 39.779%;
    left: unset;
  }

  .mv .mv-slide .slide04 .mv-abs {
    width: 78.6666%;
    left: 9.3%;
  }

}

/* service */
.service {
  padding: min(10vw, 130px) 0 60px;
  background: #FB8D1F;
  position: relative;
  z-index: 2;
}

.service .container {
  position: relative;
  z-index: 2;
}

.service .tit01 {
  text-align: center;
  color: #fff;
  line-height: 1.57;
  font-weight: bold
}

.service .tit-en {
  font-size: min(17vw, 17.5rem);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  color: #fff;
}

.service .tit-en span {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 150, 0);
  transition: .6s;
  transition-delay: 0s;
}

.service .tit-en.is-view span {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.service .list-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 60px 0 0;
}

.service .list-item .item {
  width: 30%;
  position: relative;
}

.service .list-item .item:nth-of-type(2) {
  width: 32%;
  position: relative;
}

.service .list-item .item figure {
  animation: bounce 5s infinite;
}

/* .service .list-item .item .mess{background: url('../img/top/img-mess.png') no-repeat center center / 100% 100%;height: 188px;} */
/* .service .list-item .item .mess .min{font-size: min(1.7vw,1.7rem);position: absolute;line-height: 1.3;font-weight: 400;top: 5%;}
.service .list-item .item .mess .price{font-size: min(2.5vw,2.5rem);font-weight: bold;width: fit-content;margin: 0 auto;}
.service .list-item .item .mess .price .date{color: #FF6600;} */
/* .service .list-item .item .mess .price .num{position: relative;font-size: min(10vw,11.5rem);color: #8C2F18;line-height: 1;}
.service .list-item .item .mess .price .num::after {content: "0";position: absolute;left: -0.043em;bottom: 0.26em;background: linear-gradient(to bottom, rgba(255, 91, 9, 1) 0%, rgba(238, 0, 150, 1) 100%);color: transparent;background-clip: border-box;-webkit-background-clip: text;color: transparent;line-height: 1;} */
.service .list-item .item .info-m {
  text-align: center;
  font-weight: bold;
}
.service .list-item .item .info-m small{
  font-weight: 400;
}

.service .basic-plan {
  margin: 120px auto 0;
  max-width: 1400px;
  width: calc(100% - 40px);
  position: relative;
  z-index: 2;
}

.service .basic-plan h3 {
  font-size: min(5vw, 5rem);
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin: 0 0 30px;
}

.service .basic-plan .fee {
  background: #fff;
  border-radius: 10px;
  padding: 30px 0 30px;
  position: relative;
}

.service .basic-plan .fee h4 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.service .basic-plan .fee h4 .num {
  font-size: min(6.8vw, 6.8rem);
  line-height: 1;
  color: #FE6305;
}

.service .basic-plan .fee h4 .type {
  color: #FE6305;
  font-size: 2.3rem;
}

.service .basic-plan .fee .list-net {
  max-width: 1010px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  padding: 15px 0 0;
  border-top: 1px solid #000;
}

.service .basic-plan .fee .list-net .net-detail {
  width: calc(100% / 3);
  border-left: 1px solid #000;
  text-align: center;
}

.service .basic-plan .fee .list-net .net-detail:first-child {
  border-left: none;
}

.service .basic-plan .fee .list-net .net-detail p {
  font-size: min(2.5vw, 2.5rem);
  margin: 20px 0 0;
  font-weight: bold;
}

.box-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}

.circle {
  pointer-events: none;
  ;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 1;
  position: absolute;
  top: 0%;
  left: 0%;
  background: rgba(255, 255, 255, 0.12);
  animation: ripple 6s infinite;
  z-index: 1;
}

.circle:nth-child(2) {
  animation-delay: 1s;
}

.circle:nth-child(3) {
  animation-delay: 2s;
}

@keyframes ripple {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(6);
    opacity: 0;
  }
}

.service .basic-plan .img {
  position: absolute;
  top: -100%;
  z-index: -1;
}

.service .basic-plan .img.person02 {
  right: 0;
}

@media (max-width:1400px) {
  .service .basic-plan .img {
    top: -200px;
  }

  .service .basic-plan .img img {
    width: 160px;
  }

}

@media (max-width:768px) {
    .service {overflow: hidden;}
  .service .basic-plan h3 {
    font-size: 2.7rem;
    line-height: 1.2;
    margin: 0 0 20px;
  }

  .service .tit-en {
    font-size: 22vw;
    margin-top: 20px;
  }

    .service .list-item {
        margin: 40px 0 13vw;
    }
    
    .service .list-item .item:nth-of-type(2) .mess{width: 93.8%; margin-left: 5%;}
    .service .list-item .item:nth-of-type(1) figure, 
        .service .list-item .item:nth-of-type(2) figure,
    .service .list-item .item:nth-of-type(3) figure{
        height: 31.1vw;
    }
    .service .list-item .item .info-m {
        font-size: 3vw;
        line-height: 1.6;
    }

  .service .basic-plan {
    margin-top: 20px;
  }

  .service .basic-plan .img img {
    width: 22vw;
  }

  .service .basic-plan .img {
    z-index: -1;
    top: -29.5vw;
  }

  .service .basic-plan .fee h4 {
    font-size: 1.8rem;
  }

  .service .basic-plan .fee h4 .num {
    font-size: 4rem;
  }

  

  .service .basic-plan .fee .list-net .net-detail p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  /* .service .basic-plan .fee .list-net {
    flex-wrap: wrap;
  } */

  .box-circle {
    top: 30%;
  }

  /* .service .basic-plan .fee .list-net .net-detail {
    width: 100%;
    border-left: none;
    border-top: 1px solid #000;
    margin: 0 auto;
    padding: 20px 0;
  } */


  .service .basic-plan .fee {
    padding: 15px 0;
  }

  .service .basic-plan .fee .list-net {
    margin-top: 15px;
  }

  .service .basic-plan .fee .list-net .net-detail:first-child {
    border-top: 0;
  }

  .service .basic-plan .fee .list-net .net-detail:nth-of-type(1) img {
    width: 50%;
  }

  .service .basic-plan .fee .list-net .net-detail:nth-of-type(2) img {
    width: 60%;
  }

  .service .basic-plan .fee .list-net .net-detail:nth-of-type(3) img {
    width: 48%;
  }

  
}

/* update */
.update .tit01 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.update .update-info {
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  padding: 25px;
  font-weight: bold;
  align-items: center;
}

.update .update-info .price {
  font-size: 1.8rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px 0;
  width: 352px;
  text-align: center;
}

.update .update-info .num {
  font-size: min(4.8vw, 4.8rem);
  line-height: 1.1;
}

.update .update-info ul li {
  text-indent: -1em;
  margin-left: 1em;
}

.update .update-info ul li:not(:last-child) {
  margin-bottom: 15px;
}

.update .btn-link {
  max-width: 21.96em;
  text-align: center;
  margin: 60px auto 0;
}

@media (min-width:769px) and (max-width:1100px) {
  .update .update-info ul {
    padding-left: 20px;
  }
}

@media (max-width:768px) {
  .update .update-info {
    padding: 0 0 20px;
    flex-wrap: wrap;
  }

  .update .update-info .num {
    font-size: 4rem;
  }

  .update .update-info .price {
    width: 100%;
    margin: 20px 0;
  }

  .update .btn-link {
    line-height: 1.4;
  }

  .update .btn-link span {
    display: block;
    width: 100%;
  }

  .service .basic-plan .fee .list-net {
    width: 98%;
  }

  .img-divice {
    text-align: center;
    display: flex;
  }

  .img-divice img {
    width: 425px;
    margin: 0 auto;
  }

  .update .btn-link span::after {
    position: absolute;
    display: unset;
    right: 20px;
    transform: translateY(-50%);
  }
}


.film-info {
  margin: 80px 0 0;
}

.film-info .nav-tab {
  display: flex;
  justify-content: space-between;
}

.film-info .nav-tab li {
  background: #E3E3E3;
  width: 49%;
  border-radius: 10px 10px 0 0;
  text-align: center;
  align-content: center;
  overflow: hidden;
}

.film-info .nav-tab li a {
  display: flex;
  font-size: min(3vw, 3rem);
  line-height: 1;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
  height: 100%;
}

.film-info .nav-tab li a span {
  padding-left: 10px;
}

.film-info .nav-tab li a.active {
  background: #fff;
  pointer-events: none;
}

.film-info .nav-tab li a:hover {
  background: #fff;
}

.film-info .tab {
  padding: 90px;
  background: #fff;
  display: none;
}

.film-info .tab01 {
  display: block;
}

.film-info .tab01 .btn-link {
  margin: 50px auto;
  max-width: 19.6923em;
}

.film-info .tab01 .txt-bg {
  background: #ee0096;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  border-radius: 60px;
  font-weight: bold;
  line-height: 1;
  padding: 20px 0;
  margin: 0 0 30px;
}

.film-info .tab01 .txt-bg span {
  font-size: 0.7em;
}

.film-info .tab01 .list-film {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 17px;
  margin: 0 0 20px;
}

.film-info .tab01 .list-film figure {
  width: 48.91304347%;
}

/*  */
.film-info .tab02 {
  padding-right: 0;
}

.film-info .tab02 .tab-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.film-info .tab02 .tab-inner .tab-txt {
  width: 64.75247%;
}

.film-info .tab02 .tab-inner .tab-img {
  width: 35%;
}

.film-info .tab02 .tab-inner .desc {
  margin: 20px 0;
}

.film-info .tab02 .tab-inner .btn-link {
  margin-top: 80px;
  position: relative;
  max-width: 19.6923em;
}

.film-info .tab02 .tab-inner .btn-link .img-abs {
  position: absolute;
  bottom: 0;
}

@media (max-width:768px) {
  .film-info .tab {
    padding: 40px 20px 20px;
  }

  .film-info .tab02 {
    padding-right: 0px;
  }

  .film-info #nav-01 img {
    width: 80%;
  }

  .film-info .nav-tab li a {
    padding: 10px;
  }

  .film-info .nav-tab li a span {
    font-size: 2rem;
    text-align: left;
    line-height: 1.4;
  }

  .film-info .tab01 .txt-bg {
    font-size: 1.8rem;
  }

  .film-info .tab02 .tab-inner .tab-img {
    width: 60%;
    order: -1;
    text-align: center;
    margin-left: auto;
    margin-bottom: 30px;
  }

  .film-info .tab02 .tab-inner .tab-txt {
    width: 100%;
    padding-right: 20px;
  }

  .film-info .tab02 .tab-inner .btn-link .img-abs {
    width: 40%;
    right: -15px;
  }

  .film-info .tab02 .tab-inner .btn-link {
    padding-right: 55px;
  }

  .film-info .tab02 .tab-inner .desc {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
  }

  .film-info .tab02 .tab-inner .desc span {
    width: calc(100% - 180px);
  }

  .film-info .tab02 .tab-inner .desc img {
    width: 165px;
    position: relative;
    right: -35px;
  }
}

@media (max-width:576px) {
  .film-info .nav-tab li a {
    padding: 10px 5px;
  }

  .film-info #nav-02 img {
    width: 20px;
  }

  .film-info #nav-01 img {
    width: 84%;
  }

  .film-info .nav-tab li a span {
    font-size: 1.5rem;
  }

  .film-info .tab01 .list-film figure {
    width: 100%;
  }
}

@media (max-width:480px) {
  .film-info .tab02 .tab-inner .desc span {
    width: calc(100% - 140px);
  }

  .film-info .tab02 .tab-inner .desc img {
    width: 120px;
    position: relative;
    right: -40px;
  }
}

/*  */
.life-stick {
  background: yellow;
  margin: min(20vw, 200px) 0 50px;
  padding: 60px 0;
}

.life-stick .b-tit {
  margin: 0 0 40px;
}

.life-stick .container {
  position: relative;
}

.life-stick .inner {
  max-width: 58.273%;
}

.life-stick .img-abs {
  position: absolute;
  right: 0;
  top: -50%;
  width: 41.18181818%;
}

.life-stick .img-abs.is-view {
  animation: bounceIn 1.5s forwards
}

@media (max-width:768px) {
  .life-stick {
    margin: 60px 0 40px;
    padding: 0 0 40px;
  }

  .life-stick .inner {
    max-width: 100%;
    margin-top: -40px;
  }

  .life-stick .inner .b-tit {
    margin-right: -20px;
    margin-bottom: 20px;
  }

  .life-stick .img-abs {
    position: relative;
    left: 24%;
    top: -20px;
    width: 51.8%;
    margin: 0 auto;
  }
}


/*  */
.regis {
  background: #ee0096;
  padding: 60px 0;
  margin: 0 0 60px;
}

.regis .inner {
  margin-left: auto;
  max-width: 58.273%;
  color: #fff;
}

.regis .inner .b-tit {
  margin: 0 0 40px;
}

.regis .inner .list-link {
  display: flex;
  flex-direction: column;
  margin: 20px 0 0;
}

.regis .inner .list-link a {
  text-decoration: underline;
  font-weight: bold;
  position: relative;
  width: fit-content;
}

.regis .inner .list-link a::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 13px;
  mask: url('../img/common/arrow.svg')no-repeat center center/100% 100%;
  -webkit-mask: url('../img/common/arrow.svg')no-repeat center center/100% 100%;
  background: #fff;
  right: -16px;
  top: 8px;
}

.regis .container {
  position: relative;
}

.regis .inner .list-link a:hover {
  text-decoration: unset;
}

/* .regis .inner .list-link a:hover::after{background: yellow;} */
.regis .img-abs {
  position: absolute;
  top: -60px;
  left: 0;
  width: 37.545454%;
}

.regis .img-abs.is-view {
  animation: bounceIn 1.5s forwards;
}

@media (max-width:768px) {
  .regis .inner {
    max-width: 100%;
  }

  .regis {
    padding: 25px 0;
  }

  .regis .inner .b-tit {
    margin: 0 0 20px;
  }

  .regis .img-abs {
    width: 54%;
    left: 27%;
    top: unset;
    margin: 0 auto 20px;
    position: relative;
  }
}