@charset "UTF-8";
/* common
---------------------------------------------------------------------------- */
.m-mv-child::before {
  background-image: url("/assets/images/entrance/bg_mv_pc.webp");
}

@media screen and (max-width: 767px) {
  .m-mv-child::before {
    background-image: url("/assets/images/entrance/bg_mv_sp.webp");
  }
}
/*------------- .m-button-gradation-arrow -------------*/
.m-button-gradation-arrow._entrance {
  width: 21.5rem;
  padding-block: 1rem 1.2rem;
  padding-inline: 2rem 1rem;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  background: initial;
  transition: all 0.3s;
}
.m-button-gradation-arrow._entrance._tokyo {
  background-color: #0061A8;
  border-color: #0061A8;
  box-shadow: 0.7rem 0.7rem 0 #ccdfee;
}
.m-button-gradation-arrow._entrance._tokyo ._arrow3::before {
  background-color: #0061A8;
}
.m-button-gradation-arrow._entrance._nagoya {
  background-color: #00664E;
  border-color: #00664E;
  box-shadow: 0.7rem 0.7rem 0 #cce0dc;
}
.m-button-gradation-arrow._entrance._nagoya ._arrow3::before {
  background-color: #00664E;
}
.m-button-gradation-arrow._entrance ._arrow3 {
  width: 2.5rem;
}
.m-button-gradation-arrow._entrance ._arrow3::before {
  width: 1rem;
  height: 1rem;
}
.m-button-gradation-arrow._entrance:hover {
  transform: translate(0.7rem, 0.7rem);
}
.m-button-gradation-arrow._entrance:hover ._arrow3::before {
  background-color: #fff;
}
.m-button-gradation-arrow._entrance:hover._tokyo, .m-button-gradation-arrow._entrance:hover._nagoya {
  box-shadow: none;
}
.m-button-gradation-arrow._entrance:hover._tokyo {
  color: #0061A8;
  border-color: #ccdfee;
  background-color: #ccdfee;
}
.m-button-gradation-arrow._entrance:hover._tokyo ._arrow3 {
  background-color: #0061A8;
}
.m-button-gradation-arrow._entrance:hover._nagoya {
  color: #00664E;
  border-color: #cce0dc;
  background-color: #cce0dc;
}
.m-button-gradation-arrow._entrance:hover._nagoya ._arrow3 {
  background-color: #00664E;
}

@media screen and (max-width: 767px) {
  .m-button-gradation-arrow._entrance {
    width: 38.6666666667vw;
    padding-block: 2.1333333333vw;
    padding-inline: 4vw 2.1333333333vw;
    font-size: 4vw;
  }
  .m-button-gradation-arrow._entrance._tokyo, .m-button-gradation-arrow._entrance._nagoya {
    box-shadow: none;
  }
  .m-button-gradation-arrow._entrance ._arrow3 {
    width: 5.6933333333vw;
  }
  .m-button-gradation-arrow._entrance ._arrow3::before {
    width: 2.28vw;
    height: 2.28vw;
  }
  .m-button-gradation-arrow._entrance:hover {
    transform: none;
  }
}
/* p-entrance
---------------------------------------------------------------------------- */
.p-entrance {
  padding-block: 2rem 13.5rem;
}

.p-entrance-inner,
.p-entrance-lists {
  display: none;
}

.p-entrance-ttl {
  width: 73.5rem;
  margin-inline: auto;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding-block: 1.5rem 2.5rem;
  background-color: #032456;
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
}

.p-anime-entrance-ttl {
  background: linear-gradient(90deg, #ffffff 50%, rgba(255, 255, 255, 0) 68%);
  background-size: 300% 100%;
  background-position: 100% 0%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  animation: none; /* ここが重要：初期は動かさない */
}

.p-anime-entrance-ttl.is-active {
  animation-name: shineToColor;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.p-entrance-container {
  width: 100%;
  max-width: min(97.2972972973vw, 1440px);
  margin-inline: auto;
  padding-block: 11.5rem 9rem;
  position: relative;
  z-index: 1;
  margin-top: -1rem;
}

.p-entrance-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/assets/images/entrance/bg_entrance_container_pc.webp);
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.25));
  border-radius: 0 0 3.5rem 3.5rem;
}

.p-entrance-items {
  display: flex;
  flex-direction: column;
  gap: 8.5rem;
}

.p-entrance-item {
  width: 100%;
  min-height: 32.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-block: 3rem;
  padding-inline: 5rem;
  position: relative;
}

.p-entrance-item::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: -1rem;
  z-index: -1;
  width: calc(100% - 3rem);
  height: 100%;
  background-color: #fff;
  border-radius: 1rem;
  background: url(../../images/entrance/bg_item01_pc.webp) no-repeat center/cover;
}

.p-entrance-item:nth-of-type(2)::before {
  background: url(../../images/entrance/bg_item02_pc.webp) no-repeat center/cover;
}

.p-entrance-item:nth-of-type(3)::before {
  background: url(../../images/entrance/bg_item03_pc.webp) no-repeat center/cover;
}

.p-entrance-item:nth-of-type(4)::before {
  background: url(../../images/entrance/bg_item04_pc.webp) no-repeat center/cover;
}

.p-entrance-item:nth-of-type(5)::before {
  background: url(../../images/entrance/bg_item05_pc.webp) no-repeat center/cover;
}

.p-entrance-item:nth-of-type(6)::before {
  background: url(../../images/entrance/bg_item06_pc.webp) no-repeat center/cover;
}

.p-entrance-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: calc(100% - 3rem);
  height: 100%;
  background-color: #fff;
  border-radius: 1rem;
}

.p-entrance-item.is-active {
  animation-name: m-fade-up;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.p-entrance-item-img {
  position: absolute;
  top: -2rem;
  left: 0;
  width: 60.5rem;
  aspect-ratio: 605/320;
  border-radius: 0.8rem;
  overflow: hidden;
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.25));
}
.p-entrance-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease-out;
}

.p-entrance-item-img.is-hover img {
  transform: scale(1.1);
}

.p-entrance-item-wrap {
  width: 51rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-entrance-item-wrap-label {
  font-family: "hanatotyoutyo";
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  padding-block: 0.3rem;
  padding-inline: 2rem;
  border-radius: 0.3rem;
  position: relative;
}
.p-entrance-item-wrap-label._red {
  background-color: #AB3456;
}
.p-entrance-item-wrap-label._red::after {
  background-color: #AB3456;
}
.p-entrance-item-wrap-label._navy {
  background-color: #032456;
}
.p-entrance-item-wrap-label._navy::after {
  background-color: #032456;
}
.p-entrance-item-wrap-label._purple {
  background-color: #3E2579;
}
.p-entrance-item-wrap-label._purple::after {
  background-color: #3E2579;
}

.p-entrance-item-wrap-label::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%) rotate(-7deg);
  width: 0.8rem;
  aspect-ratio: 1;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.p-entrance-item-wrap-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-bottom: 2rem;
}
.p-entrance-item-wrap-ttl ._fzLarge {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 2.0833333333vw;
  display: block;
  padding-bottom: 2rem;
}
.p-entrance-item-wrap-ttl ._fz {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 700;
  font-size: 1.8229166667vw;
}
.p-entrance-item-wrap-ttl ._fzSmall {
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 1.5625vw;
}

.p-entrance-item-wrap-box {
  padding-top: 2rem;
  border-top: 1px dashed currentColor;
}

.p-entrance-item-wrap-box-txt {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.p-entrance-item-wrap-box-lists {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4rem;
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .p-entrance {
    padding-block: 9.3333333333vw 6.6666666667vw;
  }
  .p-entrance-inner {
    display: block;
    padding-inline: 4vw;
  }
  .p-entrance-lists {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 4vw 0;
    border: 1px solid currentColor;
    border-radius: 2.6666666667vw;
    background-color: #fff;
    padding-block: 1.6vw;
    position: relative;
    margin-bottom: 6.1333333333vw;
  }
  .p-entrance-lists::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 1px;
    background-color: currentColor;
  }
  .p-entrance-list:nth-child(2),
  .p-entrance-list:nth-child(5) {
    border-left: 1px solid currentColor;
    border-right: 1px solid currentColor;
  }
  .p-entrance-list-link {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    height: 100%;
    padding-inline: 1.8666666667vw;
  }
  .p-entrance-list-link ._txt {
    display: block;
    font-size: 3.2vw;
    line-height: 1;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
  }
  .p-entrance-list-link ._arrow {
    width: 2.9333333333vw;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #000;
    position: relative;
  }
  .p-entrance-list-link ._arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.6vw;
    aspect-ratio: 7/4;
    background-color: #fff;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
  .p-entrance-ttl {
    width: 84vw;
    font-size: 4vw;
    line-height: 1.35;
    padding-block: 2.1333333333vw 4vw;
    border-radius: 2.6666666667vw 2.6666666667vw 0 0;
    box-shadow: 0 0 2.6666666667vw rgba(0, 0, 0, 0.25);
  }
  .p-entrance-container {
    max-width: initial;
    padding-block: 6.6666666667vw 34.6666666667vw;
    margin-top: -2.6666666667vw;
  }
  .p-entrance-container::before {
    background-image: url(/assets/images/entrance/bg_entrance_container_sp.webp);
    filter: drop-shadow(0 0 5.3333333333vw rgba(0, 0, 0, 0.25));
    border-radius: 0 0 5.3333333333vw 5.3333333333vw;
  }
  .p-entrance-items {
    gap: 5.3333333333vw;
  }
  .p-entrance-item {
    min-height: 92vw;
    flex-direction: column-reverse;
    justify-content: initial;
    gap: 4vw;
    padding-block: 4vw 5.3333333333vw;
    padding-inline: 5.3333333333vw;
  }
  .p-entrance-item::before {
    top: 2.6666666667vw;
    right: -2.6666666667vw;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 2.6666666667vw;
    background: url(../../images/entrance/bg_item01_sp.webp) no-repeat center/cover;
  }
  .p-entrance-item:nth-of-type(2)::before {
    background: url(../../images/entrance/bg_item02_sp.webp) no-repeat center/cover;
  }
  .p-entrance-item:nth-of-type(3)::before {
    background: url(../../images/entrance/bg_item03_sp.webp) no-repeat center/cover;
  }
  .p-entrance-item:nth-of-type(4)::before {
    background: url(../../images/entrance/bg_item04_sp.webp) no-repeat center/cover;
  }
  .p-entrance-item:nth-of-type(5)::before {
    background: url(../../images/entrance/bg_item05_sp.webp) no-repeat center/cover;
  }
  .p-entrance-item:nth-of-type(6)::before {
    background: url(../../images/entrance/bg_item06_sp.webp) no-repeat center/cover;
  }
  .p-entrance-item::after {
    width: 100%;
    border-radius: 2.6666666667vw;
  }
  .p-entrance-item-img {
    position: initial;
    width: 100%;
    border-radius: 2.6666666667vw;
    filter: drop-shadow(0 0 2.6666666667vw rgba(0, 0, 0, 0.25));
  }
  .p-entrance-item-wrap {
    width: 100%;
  }
  .p-entrance-item-wrap-label {
    font-size: 2.6666666667vw;
    padding-block: 0.8vw;
    padding-inline: 4vw;
    border-radius: 0.5333333333vw;
  }
  .p-entrance-item-wrap-label::after {
    width: 1.6vw;
  }
  .p-entrance-item-wrap-ttl {
    gap: 1.3333333333vw;
    margin-top: 2.6666666667vw;
    padding-bottom: 2.6666666667vw;
  }
  .p-entrance-item-wrap-ttl ._fzLarge {
    font-size: 5.8666666667vw;
    padding-bottom: 2.6666666667vw;
  }
  .p-entrance-item-wrap-ttl ._fz {
    font-size: 5.8666666667vw;
    letter-spacing: 0.1em;
  }
  .p-entrance-item-wrap-ttl ._fzSmall {
    font-size: 4.2666666667vw;
  }
  .p-entrance-item-wrap-box {
    padding-top: 1.3333333333vw;
  }
  .p-entrance-item-wrap-box-txt {
    font-size: 4vw;
    letter-spacing: 0.1em;
  }
  .p-entrance-item-wrap-box-lists {
    justify-content: initial;
    gap: 0 2.6666666667vw;
    margin-top: 4vw;
  }
  .m-relation {
    position: relative;
    z-index: 1;
    margin-top: -18.6666666667vw;
  }
}
