@charset "UTF-8";
@media screen and (min-width: 375px) {
  /* xs-size */
}
@media screen and (min-width: 768px) {
  /* s-size */
}
@media screen and (min-width: 992px) {
  /* m-size */
}
@media screen and (min-width: 1200px) {
  /* l-size */
}
@media screen and (min-width: 1400px) {
  /* xl-size */
}
:root {
  --vh: 100vh;
  --vh: 100svh;
  /* 色関連 */
  --color-text: #000;
  --color-black: #000;
  --color-white: #fff;
  --color-green: #00a29a;
  --color-blue: #498bc6;
  --font-family-base: "M PLUS 1p", sans-serif;
  /* トランジションとアニメーション */
  --transition-duration-default: 0.3s;
  --transition-easing-default: ease-out;
}

.ly_centered {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ly_centered {
    width: calc(100% - 80px);
  }
}
.ly_centered__w940 {
  max-width: 940px;
}
.ly_centered__w990 {
  max-width: 990px;
}

.ly_container {
  position: relative;
  z-index: 1;
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.ly_container img {
  display: block;
  width: 100%;
  height: auto;
}

.bl_cardUnit {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media screen and (min-width: 768px) {
  .bl_cardUnit {
    gap: 50px 40px;
  }
}
@media screen and (min-width: 768px) {
  .bl_cardUnit__2col {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .bl_cardUnit__2col .bl_card {
    width: calc((100% - 40px) / 2);
  }
}
.bl_cardUnit__4col {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .bl_cardUnit__4col {
    gap: 25px;
  }
}
.bl_cardUnit__4col .bl_card {
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 768px) {
  .bl_cardUnit__4col .bl_card {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .bl_cardUnit__4col .bl_card {
    width: calc((100% - 75px) / 4);
  }
}
.bl_cardUnit__4col .bl_card_inner[href*=".pdf"] .bl_card_ttl::after {
  width: 10px;
  height: 13px;
  margin-left: 6px;
  background-size: 10px 13px;
}
@media screen and (min-width: 768px) {
  .bl_cardUnit__4col .bl_card_inner[href*=".pdf"] .bl_card_ttl::after {
    width: 20px;
    height: 25px;
    margin-left: 10px;
    background-size: 20px 25px;
  }
}
.bl_cardUnit__4col .bl_card_imgWrap {
  aspect-ratio: 280/200;
}
.bl_cardUnit__4col .bl_card_body {
  padding: 5px 25px 5px 10px;
}
@media screen and (min-width: 768px) {
  .bl_cardUnit__4col .bl_card_body {
    padding: 15px 45px 15px 20px;
  }
}
.bl_cardUnit__4col .bl_card_body::after {
  right: 10px;
}
@media screen and (min-width: 768px) {
  .bl_cardUnit__4col .bl_card_body::after {
    right: 20px;
  }
}
.bl_cardUnit__4col .bl_card_ttl {
  font-size: 12px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .bl_cardUnit__4col .bl_card_ttl {
    font-size: 21px;
  }
}

.bl_card {
  border: 1px solid #cbcbcb;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .bl_card {
    border-radius: 30px;
  }
}
.bl_card_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--color-text);
}
.bl_card_inner[href*=".pdf"] .bl_card_ttl::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 20px;
  margin-left: 10px;
  transform: translateY(0.214em);
  background: url("/common/uploads/icon_pdf.svg") no-repeat center;
  background-size: 15px 20px;
}
@media screen and (min-width: 768px) {
  .bl_card_inner[href*=".pdf"] .bl_card_ttl::after {
    width: 20px;
    height: 25px;
    background-size: 20px 25px;
  }
}
@media (hover: hover) {
  .bl_card_inner:hover .bl_card_body {
    color: #0c4396;
  }
  .bl_card_inner:hover .bl_card_body::after {
    will-change: transform;
    transform: translate(5px, -50%);
  }
}
.bl_card_imgWrap {
  border-radius: 20px 20px 0 0;
  aspect-ratio: 335/196;
}
@media screen and (min-width: 768px) {
  .bl_card_imgWrap {
    border-radius: 30px 30px 0 0;
  }
}
.bl_card_imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
@media screen and (min-width: 768px) {
  .bl_card_imgWrap img {
    border-radius: 30px 30px 0 0;
  }
}
.bl_card_body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 47px;
  padding: 10px 35px 10px 16px;
  border-top: 1px solid #cbcbcb;
  background-color: var(--color-white);
  border-radius: 0 0 20px 20px;
  flex: 1;
  transition: color var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 768px) {
  .bl_card_body {
    min-height: 73px;
    padding: 20px 60px 20px 30px;
    border-radius: 0 0 30px 30px;
  }
}
.bl_card_body::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background: url("/common/uploads/icon_arrow.svg") no-repeat center;
  background-size: 12px 8px;
  transition: transform var(--transition-duration-default) ease;
}
@media screen and (min-width: 768px) {
  .bl_card_body::after {
    right: 30px;
    width: 20px;
    height: 14px;
    background-size: 20px 14px;
  }
}
.bl_card_ttl {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35714286;
}
@media screen and (min-width: 768px) {
  .bl_card_ttl {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .bl_card__02, .bl_card__04 {
    transform: translateY(50px);
  }
}

.bl_linkList {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media screen and (min-width: 768px) {
  .bl_linkList {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .bl_linkList > li {
    width: calc((100% - 10px) / 2);
  }
}

.bl_linkItem {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 10px 45px 10px 25px;
  border-radius: 15px;
  border: 2px solid var(--color-white);
  background-color: #f2fafa;
  text-decoration: none;
  color: var(--color-text);
  transition: color var(--transition-duration-default) var(--transition-easing-default);
}
.bl_linkItem::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  width: 20px;
  height: 14px;
  background: url("/common/uploads/icon_arrow_green.svg") no-repeat center;
  background-size: 20px 14px;
  transition: transform var(--transition-duration-default) ease;
}
@media (hover: hover) {
  .bl_linkItem:hover {
    color: var(--color-green);
  }
  .bl_linkItem:hover::after {
    will-change: transform;
    transform: translate(5px, -50%);
  }
}
.bl_linkItem_ttl {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375;
}
@media screen and (min-width: 768px) {
  .bl_linkItem_ttl {
    font-size: 18px;
  }
}

.el_lv2Heading {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .el_lv2Heading {
    margin-bottom: 50px;
  }
}
.el_lv2Heading .ja {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .el_lv2Heading .ja {
    font-size: 40px;
  }
}
.el_lv2Heading .en {
  margin-top: 5px;
  color: var(--color-blue);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.273;
}
@media screen and (min-width: 768px) {
  .el_lv2Heading .en {
    margin-top: 10px;
    font-size: 26px;
  }
}

.el_txt {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .el_txt {
    margin-bottom: 60px;
    font-size: 20px;
  }
}

.el_floating,
.el_floating_delay {
  animation: floatY 3.5s ease-in-out infinite;
}

.el_floating_delay {
  animation-delay: 2s;
}

.el_floating02,
.el_floating02_delay {
  animation: floatY02 2.5s ease-in-out infinite;
}

.el_floating02_delay {
  animation-delay: 1s;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
@keyframes floatY02 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-60px);
  }
}
@keyframes bounceLight {
  0% {
    bottom: 150px;
    animation-timing-function: ease-in;
  }
  65% {
    bottom: 0;
    animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  }
  82% {
    bottom: 40px;
    animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  }
  94% {
    bottom: 0;
    animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
  }
  100% {
    bottom: 0;
  }
}
@keyframes fallFade {
  0% {
    bottom: 150px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}
@keyframes flyDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(400px);
    opacity: 0;
  }
}
@keyframes bounceSmall {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes flashSweat {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes shakeHattu {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(-2px, -3px) rotate(-10deg);
  }
  60% {
    transform: translate(1px, 0) rotate(10deg);
  }
  100% {
    transform: translate(0, 0);
  }
}
.un_homeDirection {
  position: relative;
}
.un_homeDirection_wrap {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  padding-bottom: 215px;
}
@media screen and (min-width: 768px) {
  .un_homeDirection_wrap {
    padding-bottom: 405px;
  }
}
.un_homeDirection_decos {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.un_homeDirection_decos .deco {
  position: absolute;
}
.un_homeDirection_decos .deco__01 {
  top: 620px;
  left: 5.33333333%;
  width: 43.7333333%;
  max-width: 164px;
}
@media screen and (min-width: 768px) {
  .un_homeDirection_decos .deco__01 {
    top: 950px;
    left: 8.02083333%;
    width: 16.40625%;
    max-width: 315px;
  }
}
@media screen and (min-width: 1200px) {
  .un_homeDirection_decos .deco__01 {
    top: 580px;
  }
}
.un_homeDirection_decos .deco__02 {
  top: 630px;
  right: -2.66666667%;
  width: 29.8666667%;
  max-width: 112px;
}
@media screen and (min-width: 768px) {
  .un_homeDirection_decos .deco__02 {
    top: 950px;
    right: -1.875%;
    width: 22.65625%;
    max-width: 435px;
  }
}
@media screen and (min-width: 1200px) {
  .un_homeDirection_decos .deco__02 {
    top: 750px;
  }
}
.un_homeDirection_decos .deco__03 {
  bottom: 106px;
  right: -5.33333333%;
  width: 44.8%;
  max-width: 168px;
}
@media screen and (min-width: 768px) {
  .un_homeDirection_decos .deco__03 {
    bottom: 178px;
    right: 0;
    width: 41.40625%;
    max-width: 795px;
  }
}
.un_homeDirection_decos .deco__04 {
  bottom: 146px;
  left: 16%;
  width: 40%;
  max-width: 150px;
}
@media screen and (min-width: 768px) {
  .un_homeDirection_decos .deco__04 {
    bottom: 120px;
    left: 23.0208333%;
    width: 35.5208333%;
    max-width: 682px;
  }
}
@media screen and (min-width: 1200px) {
  .un_homeDirection_cont {
    display: flex;
    flex-direction: row-reverse;
    gap: 0 60px;
    margin-right: calc(50% - 50vw);
  }
}
.un_homeDirection_imgWrap {
  margin: 0 -20px 35px 0;
}
@media screen and (min-width: 1200px) {
  .un_homeDirection_imgWrap {
    margin: 0;
    flex: 1;
  }
}
.un_homeDirection_imgWrap02 {
  margin-top: 145px;
}
@media screen and (min-width: 768px) {
  .un_homeDirection_imgWrap02 {
    margin-top: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .un_homeDirection .el_lv2Heading {
    margin-bottom: 105px;
  }
}
.un_homeDirection .el_lv2Heading .en {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .un_homeDirection .el_lv2Heading .en {
    font-size: 26px;
  }
}
.un_homeDirection .el_txt {
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .un_homeDirection .el_txt {
    width: 60.8333333%;
    max-width: 730px;
  }
}

.un_homeHr_wrap {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .un_homeHr_wrap {
    padding-bottom: 210px;
  }
}
.un_homeHr_decos {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.un_homeHr_decos .deco {
  position: absolute;
}
.un_homeHr_decos .deco__01 {
  bottom: calc(100% + 34px);
  left: -6.4%;
  width: 39.2%;
  max-width: 147px;
}
@media screen and (min-width: 768px) {
  .un_homeHr_decos .deco__01 {
    bottom: calc(100% - 56px);
    left: -4.16666667%;
    width: 29.8958333%;
    max-width: 574px;
  }
}
.un_homeHr_decos .deco__02 {
  top: -58px;
  left: -3.2%;
  width: 53.0666667%;
  max-width: 199px;
}
@media screen and (min-width: 768px) {
  .un_homeHr_decos .deco__02 {
    top: -32px;
    left: -17.1875%;
    width: 71.1979167%;
    max-width: 1367px;
  }
}
.un_homeHr_decos .deco__03 {
  bottom: -55px;
  right: -3.73333333%;
  width: 30.6666667%;
  max-width: 115px;
}
@media screen and (min-width: 768px) {
  .un_homeHr_decos .deco__03 {
    bottom: 476px;
    right: -4.32291667%;
    width: 25.1041667%;
    max-width: 482px;
  }
}
.un_homeHr_decos .deco__04 {
  bottom: 21px;
  right: 27.7333333%;
  width: 44.5333333%;
  max-width: 167px;
}
@media screen and (min-width: 768px) {
  .un_homeHr_decos .deco__04 {
    bottom: -42px;
    right: 0.572916667%;
    width: 38.8020833%;
    max-width: 745px;
  }
}
@media screen and (min-width: 768px) {
  .un_homeHr .bl_cardUnit__2col {
    padding-bottom: 50px;
  }
}
.un_homeHr .bl_cardUnit__4col {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .un_homeHr .bl_cardUnit__4col {
    margin-top: 70px;
  }
}

.un_homeInfo_wrap {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  padding-top: 118px;
}
@media screen and (min-width: 768px) {
  .un_homeInfo_wrap {
    padding-top: 195px;
  }
}
.un_homeInfo_decos {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.un_homeInfo_decos .deco {
  position: absolute;
}
.un_homeInfo_decos .deco__01 {
  top: 0;
  left: 5.33333333%;
  width: 47.2%;
  max-width: 177px;
}
@media screen and (min-width: 768px) {
  .un_homeInfo_decos .deco__01 {
    left: 5.9375%;
    width: 33.125%;
    max-width: 636px;
  }
}
.un_homeInfo_decos .deco__02 {
  top: 70px;
  right: -13.3333333%;
  width: 67.2%;
  max-width: 252px;
}
@media screen and (min-width: 768px) {
  .un_homeInfo_decos .deco__02 {
    top: 126px;
    right: -3.125%;
    width: 36.9791667%;
    max-width: 710px;
  }
}
.un_homeInfo_decos .deco__03 {
  top: -40px;
  left: -3.46666667%;
  width: 47.2%;
  max-width: 177px;
}
@media screen and (min-width: 768px) {
  .un_homeInfo_decos .deco__03 {
    top: -80px;
    left: -2.5%;
    width: 36.25%;
    max-width: 696px;
  }
}

.un_homeDecoTtl {
  padding: 150px 0 76px;
}
@media screen and (min-width: 768px) {
  .un_homeDecoTtl {
    padding: 200px 0 186px;
  }
}
.un_homeDecoTtl_cont {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .un_homeDecoTtl_cont {
    margin-top: 36px;
  }
}
.un_homeDecoTtl_txt {
  margin-top: 8px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.42857143;
}
@media screen and (min-width: 768px) {
  .un_homeDecoTtl_txt {
    font-size: 28px;
  }
}

.un_homeIntro_wrap {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  padding-bottom: 140px;
}
@media screen and (min-width: 768px) {
  .un_homeIntro_wrap {
    padding-bottom: 245px;
  }
}
.un_homeIntro_decos {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.un_homeIntro_decos .deco {
  position: absolute;
}
.un_homeIntro_decos .deco__01 {
  z-index: 1;
  bottom: 37px;
  left: -2.66666667%;
  width: 29.8666667%;
  max-width: 112px;
}
@media screen and (min-width: 768px) {
  .un_homeIntro_decos .deco__01 {
    bottom: 154px;
    left: 6.14583333%;
    width: 27.03125%;
    max-width: 519px;
  }
}
.un_homeIntro_decos .deco__02 {
  top: 110px;
  right: 5.33333333%;
  width: 88.8%;
  max-width: 333px;
}
@media screen and (min-width: 768px) {
  .un_homeIntro_decos .deco__02 {
    right: 2.08333333%;
    width: 54.1145833%;
    max-width: 1039px;
  }
}
.un_homeIntro_inner {
  max-width: 1500px;
}
.un_homeIntro_cont {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
@media screen and (min-width: 768px) {
  .un_homeIntro_cont {
    margin-left: auto;
  }
}
.un_homeIntro_heading {
  position: relative;
  font-weight: 700;
}
.un_homeIntro_heading .deco {
  position: absolute;
  top: -26px;
  left: -30px;
  width: 100px;
  height: 107px;
}
@media screen and (min-width: 768px) {
  .un_homeIntro_heading .deco {
    top: -53px;
    left: -70px;
    width: 230px;
    height: 248px;
  }
}
.un_homeIntro_heading .main {
  font-size: 27px;
  line-height: 1.37931034;
}
@media screen and (min-width: 768px) {
  .un_homeIntro_heading .main {
    font-size: 68px;
  }
}
.un_homeIntro_heading .sub {
  font-size: 16px;
  line-height: 1.375;
}
@media screen and (min-width: 768px) {
  .un_homeIntro_heading .sub {
    font-size: 36px;
  }
}
.un_homeIntro_heading .clrBlue {
  color: #0d4497;
}
.un_homeIntro_heading .clrBlue02 {
  color: #009ee3;
}
.un_homeIntro_txt {
  margin-top: 60px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .un_homeIntro_txt {
    margin-top: 70px;
    font-size: 26px;
  }
}

.un_homePageTtl {
  position: relative;
  padding: 30px 0 60px;
}
@media screen and (min-width: 768px) {
  .un_homePageTtl {
    margin-top: 70px;
    padding: 0;
    padding-bottom: 70px;
  }
}
.un_homePageTtl_decosWrap {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
}
.un_homePageTtl_decos {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.un_homePageTtl_decos .deco {
  position: absolute;
}
.un_homePageTtl_decos .deco__01 {
  top: -30px;
  right: 56%;
  width: 15.2%;
  max-width: 139px;
}
@media screen and (min-width: 1200px) {
  .un_homePageTtl_decos .deco__01 {
    top: -70px;
    right: 24.1145833%;
    width: 7.30809674%;
  }
}
@media screen and (min-width: 1200px) {
  .un_homePageTtl_cont {
    display: contents;
  }
}
.un_homePageTtl_headingWrap {
  width: calc(100% - 40px);
  max-width: 1820px;
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  .un_homePageTtl_headingWrap {
    width: calc(100% - 80px);
  }
}
@media screen and (min-width: 1200px) {
  .un_homePageTtl_headingWrap {
    margin: 0 auto;
  }
}
.un_homePageTtl_heading {
  width: 100%;
  max-width: 1048px;
}
@media screen and (min-width: 1200px) {
  .un_homePageTtl_heading {
    width: 39.3956044%;
  }
}
.un_homePageTtl_imgWrap01 {
  width: 61.3333333%;
  margin-left: auto;
}
@media screen and (min-width: 1200px) {
  .un_homePageTtl_imgWrap01 {
    position: absolute;
    top: 0;
    right: 0;
    width: min(27.7083333vw, 532px);
  }
}
.un_homePageTtl_imgWrap02 {
  width: calc(100% - 20px);
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .un_homePageTtl_imgWrap02 {
    width: calc(100% - 40px);
  }
}
@media screen and (min-width: 1200px) {
  .un_homePageTtl_imgWrap02 {
    position: absolute;
    top: calc(100% - 35px);
    left: 0;
    width: 27.5%;
  }
}
@media screen and (min-width: 1400px) {
  .un_homePageTtl_imgWrap02 {
    width: 35.7142857%;
  }
}
@media screen and (min-width: 1600px) {
  .un_homePageTtl_imgWrap02 {
    width: min(41.6666666667%, 800px);
  }
}

.un_charaAnimation {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0 5px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation {
    gap: 0 10px;
  }
}
.un_charaAnimation .chara {
  position: relative;
  bottom: 150px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.un_charaAnimation .chara__01 {
  width: 36px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__01 {
    width: 68px;
  }
}
.un_charaAnimation .chara__02 {
  width: 38px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__02 {
    width: 74px;
  }
}
.un_charaAnimation .chara__03 {
  width: 12px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__03 {
    width: 24px;
  }
}
.un_charaAnimation .chara__04 {
  width: 12px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__04 {
    width: 24px;
  }
}
.un_charaAnimation .chara__05 {
  width: 39px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__05 {
    width: 74px;
  }
}
.un_charaAnimation .chara__06 {
  width: 12px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__06 {
    width: 24px;
  }
}
.un_charaAnimation .chara__07 {
  position: relative;
  width: 43px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__07 {
    width: 83px;
  }
}
.un_charaAnimation .chara__07 .chara07_01,
.un_charaAnimation .chara__07 .chara07_02,
.un_charaAnimation .chara__07 .chara07_03 {
  position: absolute;
  bottom: 0;
}
.un_charaAnimation .chara__07 .chara07_01 {
  left: 0;
  width: 38px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__07 .chara07_01 {
    width: 74px;
  }
}
.un_charaAnimation .chara__07 .chara07_02 {
  right: 0;
  width: 12px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__07 .chara07_02 {
    width: 24px;
  }
}
.un_charaAnimation .chara__07 .chara07_03 {
  position: relative;
  left: 4px;
  width: 38px;
  bottom: 150px;
  opacity: 0;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__07 .chara07_03 {
    width: 74px;
  }
}
.un_charaAnimation .chara__07 .chara07_03_sweat {
  position: absolute;
  top: -8px;
  right: 0;
  width: 15px;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__07 .chara07_03_sweat {
    top: -10px;
    width: 25px;
  }
}
.un_charaAnimation .chara__07 .chara07_03.is_flip {
  transform: rotate(180deg);
}
.un_charaAnimation .chara__07.is_fall .chara07_03 {
  animation: fallFade 0.4s ease forwards;
  opacity: 1;
}
.un_charaAnimation .chara__07.is_hit .chara07_01,
.un_charaAnimation .chara__07.is_hit .chara07_02 {
  animation: flyDown 0.4s ease forwards;
}
.un_charaAnimation .chara__07 .chara07_03.is_impact_bounce {
  animation: bounceSmall 0.4s ease;
  bottom: 0;
}
.un_charaAnimation .chara__07 .chara07_03.is_startled {
  animation: shakeHattu 0.3s ease;
}
.un_charaAnimation .chara__07 .chara07_03.is_startled .chara07_03_sweat {
  animation: flashSweat 0.4s ease forwards;
}
.un_charaAnimation .chara__08 {
  width: 33px;
}
@media screen and (min-width: 768px) {
  .un_charaAnimation .chara__08 {
    width: 64px;
  }
}
.un_charaAnimation .chara.is_active {
  animation: bounceLight 1.5s ease-in-out forwards;
  opacity: 1;
}
.un_charaAnimation .chara.is_rebounce {
  animation: bounceSmall 0.4s ease forwards;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .hp_spOnly {
    display: none !important;
  }
}

.hp_pcOnly {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .hp_pcOnly {
    display: block !important;
  }
}

.hp_fontMplus {
  font-family: "M PLUS 1p", sans-serif !important;
}

.hp_fw900 {
  font-weight: 900 !important;
}

.hp_fw800 {
  font-weight: 800 !important;
}

.hp_fw700 {
  font-weight: 700 !important;
}

.hp_fw500 {
  font-weight: 500 !important;
}

.hp_fw400 {
  font-weight: 400 !important;
}

.hp_clrBlue {
  color: #0c4396 !important;
}

.hp_clrBlue02 {
  color: #009ee3 !important;
}/*# sourceMappingURL=human.css.map */