.characterPage {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  -webkit-font-feature-settings: "palt" 1;
}
@media screen and (max-width: 1000px) {
  .characterPage {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .characterPage {
    font-size: 3.2vw;
  }
}

a {
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.6;
}
a.no-active {
  pointer-events: none;
  opacity: 0.6;
}

@media screen and (max-width: 1280px) {
  .pc-none {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (max-width: 1280px) {
  .pc-block {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .tab-none {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .tab-block {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}

.elm {
  opacity: 0;
  transform: translateY(4em);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
}
@media screen and (max-width: 768px) {
  .elm {
    transition: opacity 1s ease-in-out, transform 1s ease-out;
    transform: translateY(70px);
  }
}
.elm.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm.elm2 {
  transition-delay: 0.1s;
}
@media screen and (max-width: 768px) {
  .elm.elm2 {
    transition-delay: unset;
  }
}

.elm.elm2_2 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .elm.elm2_2 {
    transition-delay: unset;
  }
}

.elm.elm3 {
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .elm.elm3 {
    transition-delay: unset;
  }
}

.elm.elm4 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .elm.elm4 {
    transition-delay: unset;
  }
}

.elm.elm5 {
  transition-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .elm.elm5 {
    transition-delay: unset;
  }
}

.elm_title {
  opacity: 1;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(-1.5em);
}
@media screen and (max-width: 768px) {
  .elm_title {
    transform: translateY(-70px);
  }
}

.elm_title_en {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0.3s;
}

.elm_r {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(300px);
}
@media screen and (max-width: 768px) {
  .elm_r {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(200px);
  }
}

.elm_l {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(-300px);
}
@media screen and (max-width: 768px) {
  .elm_l {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(-200px);
  }
}

.elm_o {
  opacity: 0;
  transition-duration: 1.8s;
  transition-timing-function: ease-in-out;
  filter: blur(6px);
}
.elm_o.fade-in {
  opacity: 1;
  filter: blur(0px);
}

.elm_title.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm_title_en.fade-in {
  opacity: 1;
}

.elm_r.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.elm_l.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.animate-on-appear {
  animation: fadeAndTranslate 1s ease forwards;
}
@keyframes fadeAndTranslate {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-l {
  animation: fadeAndTranslateL 1s ease forwards;
}

@keyframes fadeAndTranslateL {
  from {
    opacity: 0;
    transform: translateX(-3.125em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-o {
  animation: fadeAndTranslateO 1s ease forwards;
}
@keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
.inner1000 {
  max-width: 61.25em;
  width: 90%;
  margin: 0 auto;
}

.otherDefault .c-txt-ttl1:after {
  background-color: #e6380d;
}
.otherDefault__footer.l-footer:before {
  background-color: #e6380d;
}

.characterPage {
  background-color: #fff0e6;
  max-width: 100%;
  padding: 0;
}
.characterPage__mv {
  background-color: #e6380d;
  padding: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .characterPage__mv {
    padding-top: 2em;
  }
}
.characterPage__mv__inner {
  max-width: 50.875em;
  margin: 0 auto;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .characterPage__mv__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.characterPage__mv__greeting {
  width: 49.6%;
  margin-top: 6.25em;
}
@media screen and (max-width: 768px) {
  .characterPage__mv__greeting {
    margin-top: 0;
    width: 86%;
  }
}
.characterPage__mv__character {
  width: 47.85%;
}
@media screen and (max-width: 768px) {
  .characterPage__mv__character {
    width: 83.2592592593%;
  }
}
.characterPage__mv__character .lottie-container {
  width: 100%;
  height: 100%;
}
.characterPage__mv__bg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
.characterPage__mv__bg svg {
  height: 5em;
  width: 100%;
  display: block;
}
.characterPage__mv__bg svg.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .characterPage__mv__bg svg {
    height: 5em;
  }
  .characterPage__mv__bg svg.sp-none {
    display: none;
  }
  .characterPage__mv__bg svg.sp-block {
    display: block;
  }
}
.characterPage__about {
  position: relative;
  z-index: 1;
}
.characterPage__about__inner {
  max-width: 54.5em;
  margin: 0 auto;
  width: 90%;
  padding-block: 9.375em 10.625em;
}
@media screen and (max-width: 768px) {
  .characterPage__about__inner {
    width: 100%;
    padding-bottom: 7.625em;
  }
}
.characterPage__about__greeting {
  position: relative;
}
.characterPage__about__greeting__bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.characterPage__about__greeting__character {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
  width: 20em;
}
.characterPage__about__greeting__character.elm {
  transform: translate(-50%, -20%);
}
.characterPage__about__greeting__character.elm.fade-in {
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  .characterPage__about__greeting__character {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .characterPage__about__greeting__character {
    width: 46.4%;
  }
}
.characterPage__about__greeting__character__txt {
  position: absolute;
  top: -3.5em;
  left: -7em;
  width: 17.5em;
}
@media screen and (max-width: 1280px) {
  .characterPage__about__greeting__character__txt {
    width: 70.88%;
    top: -13%;
    left: -25%;
  }
}
.characterPage__about__txt {
  margin-top: 3.125em;
  text-align: center;
}
.characterPage__about__txt p {
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .characterPage__about__txt p {
    font-size: 1.25em;
    line-height: 2;
  }
}
.characterPage__profile {
  padding-block: 10em 8.125em;
  position: relative;
  z-index: 3;
  background-color: #e6380d;
}
@media screen and (max-width: 768px) {
  .characterPage__profile {
    padding-block: 6em 3em;
  }
}
.characterPage__profile__bg {
  position: absolute;
  top: -1.4em;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
.characterPage__profile__bg svg {
  height: 1.875em;
  width: 100%;
  display: block;
}
.characterPage__profile__bg svg.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__bg svg {
    height: 5em;
  }
  .characterPage__profile__bg svg.sp-none {
    display: none;
  }
  .characterPage__profile__bg svg.sp-block {
    display: block;
  }
}
.characterPage__profile__inner {
  max-width: 62.5em;
  margin: 0 auto;
  width: 90%;
  position: relative;
  z-index: 2;
}
.characterPage__profile__box {
  background-image: repeating-linear-gradient(315deg, rgba(255, 220, 195, 0.2) 0, rgba(255, 220, 195, 0.2) 1.8em, #fff 1.8em, #fff 3.6em);
  background-color: #fff;
  border-radius: 2.375em;
  border: 0.25em solid #000;
  position: relative;
  padding-block: 5.25em 4.0625em;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box {
    padding-block: 4em 3em;
  }
}
.characterPage__profile__box__title {
  position: absolute;
  top: -15em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
  width: 25.3125em;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__title {
    width: 64.7%;
    top: -10em;
  }
}
.characterPage__profile__box__inner {
  position: relative;
  z-index: 1;
}
.characterPage__profile__box__characterLine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 46.875em;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__characterLine {
    width: 84%;
  }
}
.characterPage__profile__box__characterLine.line2 {
  margin-top: 3.125em;
}
.characterPage__profile__box__characterLine__character {
  width: 11.65%;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__characterLine__character {
    width: 14.65%;
  }
}
.characterPage__profile__box__characterLine__character.chara05 {
  width: 12.65%;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__characterLine__character.chara05 {
    width: 15.3%;
  }
}
.characterPage__profile__box__item {
  max-width: 42.625em;
  width: 90%;
  margin: 3.125em auto 0;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__item {
    width: 84%;
    margin-top: 2.125em;
  }
}
.characterPage__profile__box__item__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__item__list {
    flex-direction: column;
    justify-content: center;
  }
}
.characterPage__profile__box__item__list:nth-of-type(n + 2) {
  margin-top: 2.5em;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__item__list:nth-of-type(n + 2) {
    margin-top: 1.5em;
  }
}
.characterPage__profile__box__item__list__title {
  text-align: center;
  width: 26.24%;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__item__list__title {
    width: 100%;
  }
}
.characterPage__profile__box__item__list__title p {
  color: #fff;
  line-height: 1;
  padding-block: 0.25em 0.3em;
  border-radius: 2em;
  width: 100%;
  background-color: #e6380d;
  font-size: 1.25em;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__item__list__title p {
    font-size: 1.2em;
    padding-block: 0.3em 0.35em;
  }
}
.characterPage__profile__box__item__list__txt {
  width: 71%;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__item__list__txt {
    width: 100%;
    text-align: center;
    margin-top: 1em;
  }
}
.characterPage__profile__box__item__list__txt p {
  font-size: 1.25em;
  letter-spacing: 0.12em;
  line-height: 1.5;
}
.characterPage__profile__box__item__list__txt p span {
  font-size: 0.8333333333em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .characterPage__profile__box__item__list__txt p {
    font-size: 1.2em;
  }
}/*# sourceMappingURL=character.css.map */