<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/**********************************************

キャラクター名募集ページ

***********************************************/
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700;900&amp;display=swap");
:root {
  --chara-blue: #0071f6;
  /* --chara-blue: #00a0e9; */
  --chara-bg--blue: #eef6ff;
  --chara-pink: #ff619a;
  --chara-bg--pink: #ffedf3;
  --chara--orange: #ff8717;
  --chara-txt: #083e5d;
  --chara-border: #d3e0ff;
  --chara-fontFamily: "Zen Maru Gothic", serif;
  --chara-fontSize: 16px;
}

/* 文字スタイル */
.span-chara--pink {
  color: var(--chara-pink);
}

.span-chara--note {
  font-size: 14px;
  margin-top: 15px;
  display: inline-block;
}

strong {
  font-size: 18px;
}

/* MV */
.character-name {
  width: 100%;
  color: var(--chara-txt);
  font-size: var(--chara-fontSize);
  font-family: var(--chara-fontFamily);
  background: url("../images/chara/bg-img.png") no-repeat center;
  background-attachment: fixed;
  background-size: 90%;
  background-color: #f3feff;
  letter-spacing: 0.85px;
  font-feature-settings: "palt";
}

.chara-wrap {
  max-width: 480px;
  margin: 0 auto;
  background-color: #fff;
  border-left: 10px solid #c0d4df;
  border-right: 10px solid #c0d4df;
}

.chara-list {
  text-align: center;
  padding-bottom: 20px;
}

.chara-list__ttl {
  font-size: 22px;
  color: var(--chara-blue);
  border-bottom: 1px solid;
  display: inline-block;
  margin-bottom: 1rem;
}

.chara-list__txt {
  margin-bottom: 1rem;
  font-family: "Noto Sans JP";
}

/* 余白 */
.mt-50 {
  margin-top: 50px;
}

/* カラー */
.bg-normal {
  padding: 0 4%;
  background-color: #fff;
}

.bg-normal .chara-ttl {
  background-color: var(--chara-blue);
}

.bg-normal .chara-list__ttl {
  color: var(--chara-blue);
}

.bg-blue {
  padding: 0 4%;
  background-color: var(--chara-bg--blue);
}

.chara-voteLink {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 10px;
  font-size: 26px;
  color: #fff;
  background-color: var(--chara-pink);
  border-radius: 20px;
}

.chara-voteLink,
.chara-goalBtn {
  box-shadow: 5px 5px 0 #ffdfeb;
}

.chara-nav .chara-navCont.chara-goalBtn::after,
.chara-voteLink::after {
  content: "";
  position: absolute;
  right: 15%;
  background: url("../images/chara/chara--link_brank.png") no-repeat 100%;
  background-size: contain;
  width: 22px;
  height: 22px;
}

/* 見出し */
.chara-ttl {
  padding: 5px 30px;
  font-size: 1.5rem;
  background-color: var(--chara-blue);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.chara-txt {
  text-align: center;
  line-height: 2;
}

/* MV */
.chara-mv__img {
  position: relative;
  overflow: hidden;
}

.chara-mv__img--chara {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  animation: fadeIn 1s forwards;
}
.chara-mv__img--chara img.fukidashi {
  position: absolute;
  top: 0;
  width: auto;
  height: 100%;
  max-height: 295px;
}
.chara-mv__img--chara img.fukidashi.left {
  left: 5%;
}
.chara-mv__img--chara img.fukidashi.right {
  right: 5%;
  max-height: 275px;
}

.chara-mv__img__bg-cloud,
.chara-mv__img__bg-cloud img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-height: 135px;
  z-index: 1;
}

.chara-mv__img__bg-cloud img.cloud-01 {
  z-index: 2;
}

.chara-mv--ttl {
  width: 100%;
  max-width: 420px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: 5%;
  z-index: 100;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.charaCont_about .chara-txt {
  text-align: center;
  line-height: 2;
}

.charaCont_about .chara-txt p {
  font-size: 16px;
  margin-bottom: 20px;
}

.charaCont_mv {
  position: relative;
}

.chara--img-topTtl {
  max-width: 350px;
  margin: 0 auto;
}

.character-name .container {
  padding: 50px 0;
}

/* メインコンテナ */
/* 表情 */
.chara-faceWrap {
  padding: 25px 4%;
  background-color: var(--chara-pink);
  color: #fff;
  border-radius: 50px;
}

.chara-faceWrap .flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.chara-faceTtl {
  max-width: 230px;
  margin: 0 auto;
}

.chara-faceCont {
  text-align: center;
  font-size: 15px;
}

.chara-faceCont p {
  margin-top: 10px;
  line-height: 20px;
}

/* list */
.chara-nav .chara-navCont {
  width: 280px;
  padding: 25px 30px;
  background-color: #fff;
  border: 5px solid var(--chara-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.chara-nav .chara-navCont::before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background: url("../images/chara/icon-boul.png") no-repeat;
  background-size: contain;
}

.chara-list__txt ul li {
  text-align: justify;
  font-size: 0.85rem;
  list-style-type: initial;
  /* list-style-position: inside; */
  margin-left: 4%;
}

.chara-list__txt ul li:not(:last-child) {
  padding-bottom: 20px;
}

/*--------------------
発表
--------------------*/
.chara-mv--name {
  text-align: center;
  font-size: 25px;
  position: relative;
}
.chara-mv--name .container {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.chara-mv--name .container .name-cont {
  position: relative;
}
.chara-mv--name .container .name-cont .name-total__cont {
  padding: 20px;
  border-radius: 20px;
  color: #fff;
  background: var(--chara-blue);
  line-height: 1;
  margin-bottom: 20px;
}
.chara-mv--name .container .name-cont .name-total__cont .total {
  font-size: 38px;
  margin-top: 5px;
  line-height: 1;
}
.chara-mv--name .container .name-cont .name-total__cont .total span.number {
  font-size: 54px;
  font-weight: 900;
}
.chara-mv--name .container .name-cont .name-face {
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
}
.chara-mv--name .container .name-cont .name-face img.shuna {
  width: 300px;
  height: auto;
  margin: 0 auto;
}
.chara-mv--name .container .name-cont .name-face img.fukidashi {
  position: absolute;
  width: auto;
  height: 100%;
  top: 5%;
}
.chara-mv--name .container .name-cont .name-face img.fukidashi.right {
  max-height: 160px;
  right: 12%;
  transform: rotate(10deg);
}
.chara-mv--name .container .name-cont .name-face img.fukidashi.left {
  max-height: 135px;
  left: 12%;
  transform: rotate(-10deg);
}
.chara-mv--name .container .name-cont .name-shuna {
  margin-top: 40px;
}
.chara-mv--name .container .name-cont .name-shuna p {
  font-weight: 700;
}
.chara-mv--name .container .name-cont .name-shuna .name-is {
  font-size: 2.5em;
  font-weight: 800;
  color: var(--chara-blue);
  position: relative;
  z-index: 100;
}
.chara-mv--name .container .name-cont .name-shuna .text.small {
  font-size: 1rem;
  margin-top: 20px;
}
.chara-mv--name .chara-mv--name__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.chara-mv--name .chara-mv--name__bg img {
  position: absolute;
}
.chara-mv--name .chara-mv--name__bg img.bg-clouds {
  width: 30%;
  height: auto;
  animation: scale linear forwards;
  animation-timeline: view();
  animation-range: contain 0% contain 50%;
  transform: scale(30%);
}
.chara-mv--name .chara-mv--name__bg img.bg-clouds.left {
  left: 0;
  transform-origin: left;
}
.chara-mv--name .chara-mv--name__bg img.bg-clouds.right {
  right: 0;
  bottom: 0;
  transform-origin: right;
}
.chara-mv--name .chara-mv--name__bg img.bg-decos {
  width: 50%;
  height: auto;
  animation: fuwafuwa 3s infinite;
  z-index: 1;
}
@keyframes fuwafuwa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10%);
  }
}
.chara-mv--name .chara-mv--name__bg img.deco01 {
  width: 5%;
  top: 20%;
  left: 10%;
}
.chara-mv--name .chara-mv--name__bg img.deco02 {
  width: 25%;
  top: 20%;
  right: -2%;
  z-index: 0;
}
.chara-mv--name .chara-mv--name__bg img.deco03 {
  width: 30%;
  bottom: 20%;
  left: -4%;
  z-index: 0;
}
.chara-mv--name .chara-mv--name__bg img.deco04 {
  width: 8%;
  bottom: 20%;
  right: 10%;
}

@keyframes scale {
  0% {
    transform: scale(30%);
  }
  100% {
    transform: scale(100%);
  }
}
/**********************************************

PC

***********************************************/
@media screen and (min-width: 1530px) {
  .character-name {
    background-size: 70%;
  }
}
/* PC小さめ */
@media screen and (max-width: 1220px) and (min-width: 850px) {
  .character-name {
    background-size: 100%;
  }
  .chara-nav {
    margin: 80px 0;
    padding-right: 5%;
  }
  .chara-container .chara-wrap {
    margin-right: 80px;
  }
}
/* PC表示 */
@media screen and (min-width: 850px) {
  details.chara-sp-menu {
    display: none;
  }
  .chara-container {
    padding-top: 80px;
  }
  .chara-menu {
    position: fixed;
    height: 100%;
    margin: 5%;
  }
  .chara-container .chara-wrap {
    border-top: 10px solid #c0d4df;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .chara-mv__img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .chara-logoCont {
    max-width: 250px;
    z-index: 10;
  }
  .chara-nav {
    display: grid;
    align-items: center;
    margin-top: 20%;
    padding-left: 5%;
  }
  .chara-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 966px) and (min-width: 850px) {
  .chara-nav .chara-navCont {
    width: auto;
    padding: 15px 10px;
  }
  .chara-nav .chara-navCont.chara-goalBtn::after {
    content: none;
  }
  .chara-nav .chara-navCont.chara-goalBtn::before {
    width: 60px;
    height: 80px;
  }
}
@media screen and (max-width: 849px) {
  .charaCont_mv {
    margin-top: 65px;
  }
  /* SPメニュー */
  details.chara-sp-menu {
    display: block;
  }
  summary {
    /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
    display: block;
  }
  summary::-webkit-details-marker {
    /* Safariで表示されるデフォルトの三角形アイコンを消します */
    display: none;
  }
  .chara-menu-summary_inner {
    position: relative;
    cursor: pointer;
  }
  .chara-menu-summary_innerCont {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 50px;
    padding: 15px 10px;
    background-color: var(--chara-blue);
    border-radius: 10px;
    top: 2%;
    right: 2%;
  }
  .chara-menu-summary_inner span {
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
  }
  .chara-menu-summary_inner,
  .chara-menu-summary_inner span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  details[open] .chara-menu-summary_inner span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  details[open] .chara-menu-summary_inner span:nth-child(2) {
    opacity: 0;
  }
  details[open] .chara-menu-summary_inner span:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  .chara-menu-content {
    display: flex;
    flex-direction: column;
  }
  .chara-menu-content {
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0;
    max-width: 480px;
    z-index: 1000;
  }
  .chara-menu-content li {
    padding: 20px 50px;
    background-color: var(--chara-blue);
    color: #fff;
    font-size: 18px;
    border-bottom: 1px solid;
  }
  .chara-menu-content li.chara-sp-menu--goal {
    background-color: var(--chara-pink);
  }
  /* 全体 */
  .chara-menu {
    display: none;
  }
  .chara-wrap {
    overflow-x: hidden;
    border: none;
  }
  .chara-headerLogo {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 480px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px;
  }
  .chara-headerLogo img {
    /* min-height: 30px;
    height: 50px;
    width: auto; */
    max-height: 45px;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .chara-nav .chara-navCont {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .chara-mv--ttl {
    width: 100%;
    max-width: 85vw;
  }
  img.chara-name--ttl {
    width: 80%;
  }
  .chara-deadline {
    width: 120px;
    height: 120px;
    position: absolute;
    right: 4%;
    top: 10%;
  }
}
@media screen and (max-width: 420px) {
  .chara-headerLogo {
    gap: 2%;
    justify-content: space-between;
    /* padding: 10px 10px 10px 20px; */
    padding: 2% 2% 2% 4%;
  }
  .chara-menu-summary_innerCont {
    position: relative;
  }
  .charaCont_mv {
    margin-top: 70px;
  }
  .chara-list__ttl {
    font-size: 18px;
  }
  .chara-list__txt {
    font-size: 13px;
  }
  .chara-wrap {
    width: 100%;
    max-width: none;
    overflow-x: hidden;
  }
  .chara-mv--ttl {
    bottom: 0;
  }
  img.chara-name--ttl {
    width: 75%;
    min-width: auto;
  }
  .chara-deadline {
    width: 110px;
    height: 110px;
  }
  .charaCont_about .chara-txt p {
    font-size: 14px;
  }
  .chara-faceWrap .flex {
    gap: 10px;
  }
  .chara-faceWrap {
    border-radius: 30px;
  }
  .chara-mv__img--chara img.fukidashi {
    top: -5%;
  }
  .chara-mv--name .container {
    max-width: 85vw;
    margin: 0 auto;
  }
  .chara-mv--name .container .name-cont .name-face img.shuna {
    width: 250px;
  }
  .chara-mv--name .container .name-cont .name-face img.fukidashi.right {
    right: 5%;
  }
  .chara-mv--name .container .name-cont .name-face img.fukidashi.left {
    left: 5%;
  }
} /*# sourceMappingURL=style-chara.css.map */
</pre></body></html>