@charset "utf-8";

:root {
  --height-hero: 100vh;

  --cl-main: #ff0b87;
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

/*-----------------------------------
site-contens
※2026/3時点ではseoのために設置はするけど非表示
-----------------------------------*/
.is-disabled {
  pointer-events: none;
  cursor: default;
}

.site-contents {
  width: min(100%, 780px);
  margin-inline: auto;
  padding-block-start: var(--height-hero);
  background: transparent;
}

.site-contents > :not(.hero) {
  position: relative;
  z-index: 1;
}

/*== hero ==*/
.hero {
  position: fixed;
  inset: 0;
  width: min(100%, 780px);
  height: var(--height-hero);
  inset: 0;
  margin-inline: auto;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-poster,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px;
  z-index: 2;
}
.site-logo img {
  width: 90px;
  height: 41px;
  vertical-align: bottom;
}
.hero-cta {
  position: absolute;
  bottom: 120px;
  width: 100%;
  text-align: center;
}
.hero-cta__btn {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.hero-cta__btn .hero-cta__btn-regist,
.hero-cta__btn .hero-cta__btn-login {
  width: calc(90% / 2);
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  border-radius: 20px;
  padding: 9px 0;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.hero-cta__btn-regist {
  color: #fff;
  background: var(--cl-main);
}
.hero-cta__btn-login {
  color: #545454;
  background: #fff;
}
.hero-cta__text {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0 0;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.hero-cta__castlink {
  display: inline-block;
  text-decoration: underline;
  text-align: center;
  margin-block-start: 10px;
  color: var(--cl-main);
  font-size: 14px;
  text-shadow: 0 2px 2px rgb(255 255 255 / 40%);
}
.hero-image--text {
  position: absolute;
  top: 55px;
  width: clamp(200px, 75vw, 300px);
  height: calc(100vh - 300px);
  pointer-events: none;
}
.hero-image--text img {
  position: absolute;
  bottom: 50px;
  transform: rotate(-5deg);
  width: 100%;
  height: auto;
  animation: fadeScaleUp 1s ease-out forwards;
  opacity: 1;
  animation-delay: 0.2s;
}
.hero-image--text img:nth-of-type(2) {
  width: 80%;
  left: 23%;
  bottom: 30px;
}

/*== mission ==*/
.mission {
  background: transparent;
}
.image-emergency {
  width: 100%;
}
.mission .cont_wrap {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.mission-cont--top {
  position: relative;
}
.mission-cont--top img {
  position: relative;
  width: 100%;
}

.mission-cont--txt {
  width: 100%;
  position: relative;
  margin: 18px auto;
}
.mission-cont--txt .live_img {
  width: 50%;
  position: relative;
  z-index: 1;
}
.mission-cont--txt .live_img .live_img_liver {
  position: relative;
  top: 0;
  left: 10%;
}
.mission-cont--txt .live_img .live_img_liver img:nth-child(1) {
  width: 92%;
  position: absolute;
  z-index: 1;
  top: 2.5%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.mission-cont--txt .live_img .live_img_liver img:nth-child(2) {
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.mission-cont--txt .live_img .live_img_liver img:nth-child(3) {
  position: relative;
  z-index: 3;
}
.mission-cont--txt .intro {
  width: 100%;
  margin: 30px auto 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}
.mission-cont--txt .intro .main {
  width: 80%;
  margin: 60px 0 0 auto;
}
.mission-cont--txt .intro .sub {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 10px 10px auto;
  text-align: right;
  text-shadow:
    1px 1px 0 #fff,
    -1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px -1px 0 #fff,
    0px 1px 0 #fff,
    0-1px 0 #fff,
    -1px 0 0 #fff,
    1px 0 0 #fff;
}
.mission-cont--txt .send_heart {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
}

.mission-cont--arrow {
  text-align: center;
}
.mission-cont--arrow img {
  margin-inline: auto;
  animation: bound-anim 1s infinite;
}
@keyframes bound-anim {
  0%,
  100% {
    top: 0;
    transform: scale(1);
  }
  30% {
    top: -60%;
    transform: scale(0.96, 1.04);
  }
  60% {
    transform: scale(1);
  }
  90% {
    top: 0;
    transform: scale(1.15, 0.9);
  }
}

.mission-cont--cast {
  position: relative;
  overflow: hidden;
  padding: 25px 0 80px;
  z-index: 2;
}
.mission-cont--cast .img_right {
  width: 45%;
  position: relative;
  top: 10%;
  right: 3%;
  transform: skew(-8deg, 8deg);
  margin-left: auto;
}
.mission-cont--cast .img_left {
  width: 50%;
  position: absolute;
  top: 6%;
  left: 6%;
  transform: skew(8deg, -8deg);
}
.mission-cont--cast .img_right .pic_image,
.mission-cont--cast .img_left .pic_image {
  width: 98%;
  position: relative;
  z-index: 1;
  border-radius: 15px;
}
.mission-cont--cast .img_right .pic_frame,
.mission-cont--cast .img_left .pic_frame {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mission-cont--cast .pic_image_txt {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  line-height: 1.2;
  width: 70%;
  margin: 0 auto;
}
.mission-cont--bottom img {
  position: relative;
  width: 100%;
}
.mission-cont--bottom {
  position: absolute;
  bottom: 0;
}

/*== freepoint ==*/
.freept {
  position: relative;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding: 45px 0 80px;
  background: #fff;
}
.freept-img01 {
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  margin: 0 auto;
}
.freept-img02 {
  width: 100%;
}
.freept-img03 {
  width: 80%;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}

/*== cast-intro ==*/
.cast-intro {
  position: relative;
  display: block;
  overflow: hidden;
}
.cast-intro img {
  width: 100%;
  border: 2px var(--cl-main) solid;
}
.cast-intro__linkbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 2%;
  right: 2%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 6px 12px;
}
.cast-intro__linkbox .left_box {
  color: #fff;
  border-right: 2px solid #fff;
  padding-right: 9px;
}
.cast-intro__linkbox .right_box {
  color: #fff;
  padding-left: 9px;
  font-weight: bold;
}

.cast-intro .cast-intro__boxline {
  position: absolute;
}
.cast-intro .cast-intro__boxline:nth-child(1),
.cast-intro .cast-intro__boxline:nth-child(3) {
  width: 100%;
  height: 3px;
}
.cast-intro .cast-intro__boxline:nth-child(2),
.cast-intro .cast-intro__boxline:nth-child(4) {
  width: 3px;
  height: 100%;
}
.cast-intro .cast-intro__boxline:nth-child(1) {
  top: 0;
  left: 0;
  background: linear-gradient(to right, transparent 80%, #fff);
  animation: animate1 2s linear infinite;
}
.cast-intro .cast-intro__boxline:nth-child(2) {
  top: 0;
  right: 0;
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
  background: linear-gradient(to bottom, transparent 80%, #fff);
}
.cast-intro .cast-intro__boxline:nth-child(3) {
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, transparent 80%, #fff);
  animation: animate3 2s linear infinite;
}
.cast-intro .cast-intro__boxline:nth-child(4) {
  top: 0;
  left: 0;
  background: linear-gradient(to top, transparent 80%, #fff);
  animation: animate4 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/*== pickup_slide ==*/
.pickup_slide {
  background: var(--cl-main);
  padding: 30px 0 100px;
}
.pickup_slide-tit {
  position: relative;
  font-size: min(30px, 7.8vw);
  text-align: center;
  padding: 30px 0;
  overflow: hidden;
}
.pickup_slide-tit span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: bold;
}
.pickup_slide-tit::before {
  content: attr(data-en);
  position: absolute;
  transform: rotate(-5deg);
  top: -8px;
  left: 0;
  right: 0;
  color: rgba(255, 228, 241, 0.5);
  font-size: min(50px, 13vw);
  font-family: luxus-brut, "Savoye LET", "Brush Script MT", cursive, sans-serif;
  font-style: italic;
}

/*== slider ==*/
.slider {
  pointer-events: none;

  /*slide停止中表示用*/
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider li {
  max-height: 250px;

  /*slide停止中表示用*/
  flex: 1;
}
.slider img {
  width: 100%;
  height: 50vw;
  object-fit: cover;
}
.slider .slick-slide {
  margin: 0 10px;
}

/*== Footer ==*/
footer {
  text-align: center;
  background: #000;
  padding: 21px 0 100px;
}
footer p {
  color: #fff;
  font-size: 12px;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-end: 1.3em;
}
footer .footer-links a {
  color: #fff;
  font-size: 12px;
  text-decoration: underline;
}
footer .footer-links a + a {
  margin-inline-start: 1em;
}
footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-block-start: 16px;
}
footer .footer-legal p {
  font-size: 10px;
}
footer .footer-legal p + p {
  margin-inline-start: 1em;
}

/*== fixedLink ==*/
.site-contents .fixed-area {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
  z-index: 999;
}
.fixed-area .fixed-area--btn a {
  width: 98%;
  color: #fff;
  font-size: min(18px, 4.2vw);
  font-weight: bold;
  background: var(--cl-main);
  border-radius: 50px;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

#footer-fixed {
  opacity: 0;
  transform: translateY(100px);
}
#footer-fixed.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
