@charset "UTF-8";
/* ---------------------------------
 mixin
--------------------------------- */
/*alt*/
/*flex*/
/*
 character.css
 本サイト各ページ用CSS
*/
.updown01 {
  -webkit-animation: updown 1s infinite ease-in-out alternate;
          animation: updown 1s infinite ease-in-out alternate;
}

.updown02 {
  -webkit-animation: updown 1.2s infinite ease-in-out alternate;
          animation: updown 1.2s infinite ease-in-out alternate;
}

.updown06 {
  -webkit-animation: updown .8s infinite ease-in-out alternate;
          animation: updown .8s infinite ease-in-out alternate;
}

.roll01 {
  -webkit-animation: roll 1.3s infinite ease-in-out alternate;
          animation: roll 1.3s infinite ease-in-out alternate;
}

.roll06 {
  -webkit-animation: roll 1s infinite ease-in-out alternate;
          animation: roll 1s infinite ease-in-out alternate;
}

.roll02 {
  -webkit-animation: roll 1.5s infinite ease-in-out alternate;
          animation: roll 1.5s infinite ease-in-out alternate;
}

@-webkit-keyframes updown {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

@keyframes updown {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

@-webkit-keyframes roll {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

@keyframes roll {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

.chara01 {
  width: 10.91667%;
  position: absolute;
  top: 3vw;
  left: 5vw;
  z-index: 1;
}

.chara01 span {
  padding-top: 108.39695%;
  background: url(../images/common/chara_01.png) no-repeat center top;
  background-size: contain;
  display: block;
}

.chara06 {
  width: 6.83333%;
  position: absolute;
  top: 5vw;
  right: 5vw;
  z-index: 1;
}

.chara06 span {
  padding-top: 164.63415%;
  background: url(../images/common/chara_06.png) no-repeat center top;
  background-size: contain;
  display: block;
}

.chara02 {
  width: 10.25%;
  position: absolute;
  bottom: 0;
  right: 2vw;
  z-index: 1;
}

.chara02 span {
  padding-top: 105.12821%;
  background: url(../images/common/chara_02.png) no-repeat center top;
  background-size: contain;
  display: block;
}

.character-area {
  position: relative;
}

.character-area::before {
  content: '';
  width: 100%;
  padding-top: 34.41667%;
  background: url(../images/common/deco_01.png) no-repeat center top;
  background-size: contain;
  position: absolute;
  top: -10vw;
  left: 0;
}

.character-area::after {
  content: '';
  width: 100%;
  padding-top: 34.33333%;
  background: url(../images/common/deco_02.png) no-repeat center top;
  background-size: contain;
  position: absolute;
  bottom: -7vw;
  left: 0;
}

.character-area .d-box-title {
  text-indent: -9999px;
  display: block;
  overflow: hidden;
  line-height: 0;
  letter-spacing: 0;
  font-size: 0;
  margin: 0 0 35px;
  padding-top: 12.16667%;
  background: url(../images/character/tit_character.png) no-repeat center top;
  background-size: contain;
}

.character-area .character-inner {
  padding: 80px 0;
}

.character-area .character-inner .d-box-body {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0px 0px 50px 20px rgba(176, 225, 248, 0.2);
          box-shadow: 0px 0px 50px 20px rgba(176, 225, 248, 0.2);
}

.character-area .character-inner .character-overview-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.character-area .character-inner .character-overview-detail {
  width: 33.33%;
  padding: 20px 20px;
}

.character-area .character-inner .character-overview-detail:nth-last-of-type(1) h5, .character-area .character-inner .character-overview-detail:nth-last-of-type(2) h5, .character-area .character-inner .character-overview-detail:nth-last-of-type(3) h5, .character-area .character-inner .character-overview-detail:nth-last-of-type(4) h5 {
  color: #0096dc;
  border-bottom: #0096dc 1px dashed;
}

.character-area .character-inner .character-overview-detail img {
  width: 100%;
  height: auto;
}

.character-area .character-inner .character-overview-detail h5 {
  margin: 0 0 15px;
  padding: 10px 0 15px;
  border-bottom: #e1879b 1px dashed;
  font-size: 2rem;
  font-weight: bold;
  color: #e1879b;
  line-height: 1.5;
}

.character-area .character-inner .character-overview-detail h5 span {
  font-size: 1.6rem;
  font-weight: normal;
}

.character-area .character-inner .character-overview-detail h5 small {
  font-size: 1.4rem;
}

.character-area .character-inner .character-overview-detail p {
  line-height: 2;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

/* ---------------------------------
 SP（〜600px）
--------------------------------- */
@media only screen and (max-width: 600px) {
  .d-contentsWrap .chara01 {
    width: 17.46667%;
  }
  .d-contentsWrap .chara06 {
    width: 10.93333%;
    top: 10vw;
  }
  .d-contentsWrap .chara02 {
    width: 16.4%;
  }
  .character-area .character-inner .d-box-title {
    padding-top: 19.46667%;
  }
  .character-area .character-inner .d-box-body {
    padding: 40px 20px;
    -webkit-box-shadow: 0px 0px 10px 10px rgba(176, 225, 248, 0.1);
            box-shadow: 0px 0px 10px 10px rgba(176, 225, 248, 0.1);
  }
  .character-area .character-inner .character-overview-detail h5 {
    font-size: 1.6rem;
  }
  .character-area .character-inner .character-overview-detail h5 span {
    font-weight: normal;
    font-size: 1.4rem;
  }
  .character-area .character-inner .character-overview-detail h5 small {
    font-size: 1.2rem;
  }
  .character-area .character-inner .character-overview-detail p {
    line-height: 2;
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------------------------
 SP 〜 tablet（〜992px）
------------------------------------------------------------------ */
@media screen and (max-width: 992px) {
  .chara01 {
    width: 13.1%;
  }
  .chara06 {
    width: 8.2%;
  }
  .chara02 {
    width: 12.3%;
    bottom: -4vw;
  }
  .character-area .character-inner {
    width: 94%;
    padding: 60px 0;
  }
  .character-area .character-inner .d-box-body {
    padding: 30px 20px;
  }
  .character-area .character-inner .character-overview-detail {
    width: 50%;
    padding: 20px 15px;
  }
}

/* ---------------------------------
 PC（993px〜）
--------------------------------- */
/*# sourceMappingURL=character.css.map */