@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@500&display=swap');
/*------ ガイドライン削除 ------ */
/*.gnav-menu-list li:last-child{
   display: none;
}
  .gnav-menu-list li:nth-child(5) {
       padding-right:0px;
       margin-right:0px;
  }*/
/*------ common ------ */
.loading {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
}
body {
  font-family: "Kiwi Maru", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  color: #543141;
}
a {
  transition: 0.3s;
  text-decoration: none;
}
a:link {
  color: #ec5b60;
}
a:visited {
  color: #ec5b60;
}
a:hover {
  color: #ff9882;
  text-decoration: underline
}
a:active {
  color: #ff9882;
  text-decoration: underline
}
.gnav-menu-list a {
  transition: 0.3s;
  text-decoration: none;
}
.gnav-menu-list a:link {
  color: #543141;
}
.gnav-menu-list a:visited {
  color: #543141;
}
.gnav-menu-list a:hover {
  color: #ec5b60;
}
.gnav-menu-list a:active {
  color: #ec5b60;
}
.gnav-menu-list li span {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: -5px;
}
.link-btn {
  transition: all 0.3s ease;
}
.link-btn:hover {
  transform: scale(1.03, 1.03);
}
* {
  box-sizing: border-box;
}
img {
  vertical-align: top;
}
.obj {
  position: absolute;
}
/*------ header ------ */
header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100px;
}
header a:hover, header a:active {
  text-decoration: none;
}
.header-inner {
  padding: 0px 25px;
}
.header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.language ul {
  display: flex;
  justify-content: center;
  list-style: none;
  font-size: 10px;
}
.language ul li {
  color: #623219;
  padding: 0px 3px;
}
.language ul li i {
  padding-right: 2px;
}
.guideline-modal {
  background: rgba(255, 152, 130, 1.00);
  font-size: 13px;
  padding: 4px 15px;
  border-radius: 5px;
  box-shadow: 0px 0px 0px 2px rgba(255, 152, 130, 1.00), 0px 7px 8px rgba(255, 152, 130, 0.4);
  border: solid 2px #543141;
  display: block;
  cursor: pointer;
}
a.guideline-modal:hover {
  color: #fff;
}
a.guideline-modal:active {
  color: #fff;
}
/*------ mv ------ */
.mv-area {
  position: relative;
  overflow: hidden;
}
.platform-logo {
  position: absolute;
  top: 100px;
  left: 20px;
  width: 19vw;
  min-width: 150px;
  max-width: 300px;
  display: flex;
  justify-content: flex-start;
    z-index: 10;
}
.platform-logo span {
  display: inline-block;
  margin-right: 10px;
}
.platform-logo img {
  width: 100%;
  height: auto;
}
.mv-area img {
  width: 100%;
}
.yuge01 {
  animation-name: yuge;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.yuge02 {
  animation-name: yuge;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes yuge {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
.mv-catch {
  opacity: 0;
  animation: fadeIn 3s ease 2s 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
  }
}
.mv-logo {
  width: 100%;
  height: 92%;
  max-height: 1100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.mv-logo img {
  max-width: 35%;
  height: auto;
}
/*------ dl ------ */
#dl-area {
  background: #475280;
  padding-bottom: 0px;
  position: relative;
}
.bg-curves {
  position: absolute;
  bottom: 0;
  height: auto;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
}
.bg-curves img {
  width: 100%;
   
}

.dl-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px
}
.dl-list div {
  width: 100%;
  text-align: center;
}
.dl-list a img {
  width: 100%;
  max-width: 550px;
  border-radius: 8px;
  box-shadow:
    0px 5px 20px rgba(42, 49, 77, 0.8);
}
.dl-bg {
  background: url("../images/dl_bg.png") repeat-x;
  background-size: 245px 128px;
  background-position: bottom;
  padding-bottom: 20px;
}
/*------ main ------ */
main {
  transition: all 0.6s;
  position: relative;
  overflow: hidden;
}
/*------ section共通 ------ */
section {
  padding: 60px 0px 90px 0px;
  position: relative;
  z-index: 10;
}
.section-inner {
  width: 90%;
  margin: 0 auto;
}
section h2 {
  text-align: center;
  margin-bottom: 30px;
}
section h2 img {
  max-width: 100%;
  height: 100%;
}
/*------ story ------ */
#story .bg-curves {
  top: -1px;
}
#story .bg-curves img {
  transform: scaleY(-1);
}
#story {
  background: url("../images/story/story_bg.png");
  background-size: 295px 175px;
}
#story .section-inner {
  position: relative;
}
.kemuri-bg {
  margin: 0 auto;
  position: relative;
}
.kemuri-bg-left {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -60px;
  transform: translate(-50%, 0);
  margin-left: -450px;
}
.kemuri-bg-right {
  position: absolute;
  z-index: -1;
  transform: scale(-1, 1) translate(-50%, 0);
  right: 50%;
  top: -60px;
  margin-right: -450px;
}
.story-txt {
  text-align: center;
}
.story-txt p {
  margin-bottom: 40px;
}
.story-txt p:last-child {
  margin-bottom: 0px;
}
.story-txt img {
  margin: 0 auto;
  max-width: 100%;
  height: 100%;
}
/*------ character ------ */
#character {
  position: relative;
  overflow: hidden;
  background: url("../images/pattern_bg.jpg");
  background-size: 400px 400px;
}
#character .footer-bg {
  position: absolute;
  height: 310px;
  width: 100%;
  background: url("../images/tile_bg.png");
  background-size: 60px 60px;
  bottom: 0;
  z-index: -1;
  /*    border-top:solid 3px #fff;
     border-bottom:solid 3px #fff;*/
}
.chara-btn {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: -20px;
}
.chara-btn li {
  list-style: none;
  text-align: center;
  padding: 0px 0px 10px 0px;
}
.chara-btn li img {
  width: 100%;
  height: auto;
  max-width: 125px;
}
.chara-btn li:last-child {
  margin-right: 0;
}
.chara-btn li:hover {
  cursor: pointer;
  color: #000080;
}
.chara-hide {
  display: none;
}
.chara-box {
  position: relative;
  margin: 0 auto;
}
.chara-box img {
  max-width: 100%;
  height: 100%;
}
.chara-illust-space {
  text-align: center;
}
.chara-txt-space {
  position: relative;
  z-index: 10;
}
.chara-prof {
  margin-top: 25px;
}
.chara-area p + p {
  margin-top: 25px;
}
.character_naminami_right {
  right: 50%;
  transform: translateX(50%);
  margin-right: -430px;
  bottom: 420px;
}
.character_dot_left {
  left: 50%;
  transform: translateX(-50%);
  margin-left: -500px;
  top: 400px;
}
.character_dot_right {
  right: 50%;
  transform: translateX(50%);
  margin-right: -350px;
  top: 100px;
}
.character_naminami_left {
  left: 50%;
  transform: translateX(-50%);
  margin-left: -450px;
  top: 180px;
}
.chara-voice {
  display: flex;
  margin-top: 20px;
  position: relative;
}
.sample_voice {
  margin-right: 15px;
}
.sample_voice img {
  border-radius: 50px;
  box-shadow:
    0px 5px 10px rgba(255, 152, 130, 0.4);
}
.chara-costume {
  display: flex;
  margin-top: 15px;
  position: relative;
}
.costume-modal-btn {
  margin-right: 15px;
  position: relative;
}
.chara-costume span {
  position: absolute;
  bottom: -5px;
  left: -5px;
  z-index: 10;
}
.costume-btn-base {
  border-radius: 50px;
  box-shadow:
    0px 5px 10px rgba(255, 152, 130, 0.4);
}
/*------ gallery ------ */
#gallery {
  background: url("../images/story/story_bg.png");
  background-size: 295px 175px;
}
.gallery-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gallery-list a {
  cursor: pointer;
}
.gallery-list li {
  text-align: center;
  position: relative;
}
.gallery-list li img {
  width: 100%;
  box-shadow:
    0px 7px 20px rgba(255, 152, 130, 0.4);
}
.modal-Area {
  width: 95%;
  font-size: 8px;
  font-weight: bold;
}
.cg-change {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.cg-change-area {
  width: 100%;
  height: 100%;
  position: relative;
}
.new-mark {
  position: absolute;
  top: -40px;
  left: -25px;
  z-index: 3;
}
.gallery-list li .new-mark img {
  box-shadow: none;
}
/*------ product ------ */
#information {
  position: relative;
  background: url("../images/pattern_bg.jpg");
  background-size: 400px 400px;
}
#information h3 {
  margin-bottom: 10px;
}
#information h3 img {
  position: relative;
  left: -15px;
}
#product dl, #staff dl {
  display: table;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0d6d1;
  width: 100%;
}
#product dl dt, #staff dl dt {
  display: table-cell;
  width: 32%;
  vertical-align: middle;
  font-size: 0.8rem;
}
#product dl dd, #staff dl dd {
  display: table-cell;
  width: 68%;
  font-feature-settings: "palt";
}
#product dl dd i, #staff dl dd i {
  padding: 0px 3px 0px 15px;
}
/*------ footer ------ */
footer {
  position: relative;
  padding: 30px 0px 10px 0px;
  text-align: center;
  font-size: .6rem;
  width: 100%;
  background: url("../images/pattern_bg.jpg");
  background-size: 400px 400px;

}
footer .footer-bg {
  position: absolute;
  height: 300px;
  width: 100%;
  background: url("../images/footer_bg.png");
  background-size: 200px 162px;
  background-position: bottom;
  bottom: 0;
    background-repeat: repeat-x;
}
footer p {
  position: relative;
  z-index: 1;
    padding:0 20px;
}
footer a {
  position: relative;
  z-index: 1;
  padding-bottom: 5px;
  display: inline-block;
}
footer a:hover {
  opacity: 0.5;
}
/*------ メニューの切り替え ハンバーガー ------ */
@media (max-width: 959px) {
  /*------ header ------ */
  .header-inner {
    margin: 10px 0px;
  }
  /*------ nav ------ */
  .menu-trigger {
    display: block;
    width: 28px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    z-index: 100;
  }
  .menu-trigger-bg {
    position: relative;
    background: #ff9882;
    padding: 10px;
    box-shadow: 0px 5px 10px rgba(255, 152, 130, 0.4);
    border-radius: 50%;
    z-index: 100;
    right: -10px;
  }
  .menu-trigger span {
    content: '';
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 6px;
    background-color: #fff;
    transition: all .5s;
  }
  .menu-trigger.menu-active span {
    background-color: #543141;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 4px;
  }
  .menu-trigger.menu-active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .menu-trigger.menu-active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 4px;
  }
  .menu-trigger.menu-active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  .menu-trigger {
    transform: translateX(0);
  }
  .gnav-menu {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: 10;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.6s;
  }
  .gnav-menu.gnav-menu-open {
    right: 0;
  }
  .menu-open-blur {
    filter: blur(8px);
  }
  .gnav-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .gnav-menu-list li {
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
  }
  .gnav-menu-list li span {
    margin-top: -5px;
  }
  .gnav-menu-list li:first-child {
    padding-bottom: 30px;
  }
  .guideline-modal {
    font-size: 18px;
    margin: 0 auto;
    max-width: 70%;
  }
}
/*------ メニューの切り替え PC版 ------ */
@media (min-width: 960px) {
  .menu-sp-only {
    display: none;
  }
  .gnav-menu {
    display: flex;
  }
  .gnav-menu-list {
    display: flex;
  }
  .gnav-menu-list li {
    padding: 5px 10px 0 27px;
    text-align: center;
    font-size: 16px;
    background: url("../images/menu_icon.png") no-repeat;
    background-size: 15px 15px;
    background-position: 0px 25px;
  }
  .gnav-menu-list li:nth-child(2) {
    padding-left: 0px;
    background: none;
  }
  .gnav-menu-list li.guidelineNav:last-child {
    padding: 14px 0px 0 15px;
    background: none;
  }
  .language {
    position: absolute;
    top: 3px;
    right: 20px;
    font-size: 12px;
  }
}
/*------ スマホ版 ------ */
@media (max-width: 959px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
    .loading img{max-width:80%;
    height:auto;}
  .kemuri-bg-left {
    margin-left: -250px;
  }
  .kemuri-bg-right {
    margin-right: -250px;
  }
  .kemuri-bg-left img, .kemuri-bg-right img {
    max-width: 400px;
    height: auto;
  }
  h2 img {
    max-width: 100px;
  }
  .platform-logo {
    top: 10px;
    left: 10px;
  }
  /*------ dl-area ------ */
  #dl-area {
    padding-top: 20px;
  }

  /*------ mv ------ */
  .mv-area .dl-link ul {
    display: flex;
    list-style: none;
    justify-content: center;
    text-align: center;
    margin: 0px 0px 0px 0px;
    width: 1000px;
  }
  section#story {
    padding-left: 20px;
    padding-right: 20px;
  }
  /*------ character ------ */
  section#character {
    padding-bottom: 0px;
  }
  .chara-txt-space {
    text-align: center;
  }
  .chara-prof {
    text-align: left;
  }
  .chara-words {
    position: absolute;
    right: 50%;
    top: 40px;
    transform: translateX(50%);
    margin-right: -130px;
  }
  .chara-btn-sp {
    background-color: rgba(255, 242, 191, 0.4);
    padding: 35px 10px 20px 10px;
    margin-top: 30px;
  }
  .character_naminami_right {
    right: 50%;
    transform: translateX(50%);
    margin-right: -230px;
    top: 700px;
  }
  .character_dot_left {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -200px;
    top: 800px;
  }
  .character_dot_right {
    margin-right: -230px;
  }
  .character_naminami_left {
    margin-left: -250px;
  }
  .chara-voice {
    justify-content: center;
  }
  .sample_voice {
    margin: 0px 15px;
    ;
  }
  .chara-costume {
    justify-content: center;
  }
  .chara-costume div {
    margin: 0px 15px;
    ;
  }
  /*------ gallery ------ */
  .gallery-list {
    width: 90%;
    margin: 0 auto;
  }
  .gallery-list li:not(:last-child) {
    margin-bottom: 20px;
  }
  /*------ information ------ */
  #information {
    padding-top: 40px;
  }
  #information h3 {
    margin-bottom: 1em;
  }
  #information dl + h3 {
    margin-top: 40px;
  }
  #twitter-area {
    margin-top: 40px;
  }
  /*------ product ------ */
  #product dl dt {
    font-size: 0.6rem;
  }
  #product dl dd {
    font-size: 0.8rem;
  }
  .staff {
    margin-top: 30px;
  }
}
/*------ PC版 ------ */
@media (min-width: 960px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
  .logo-area {
    margin: 10px 0px;
  }
  header {
    background: url("../images/header_bg.png") repeat-x;
    background-position: bottom center;
    background-size: 271px 100px;
  }
  /*------ section ------ */
  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  /*------ dl-area ------ */
  #dl-area {
    padding-top: 30px;
  }
  .dl-bg {
    padding-bottom: 30px;
  }
  /*------ story ------ */
  .story_photo01 {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -520px;
    top: 40px;
  }
  .story_photo02 {
    right: 50%;
    bottom: 30px;
    transform: translateX(50%);
    margin-right: -520px;
  }
  .story_dot_left {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -320px;
    top: 400px;
  }
  .story_dot_right {
    right: 50%;
    transform: translateX(50%);
    margin-right: -320px;
    bottom: 630px;
  }
  .story_naminami_left {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -450px;
    top: 570px;
  }
  .story_naminami_right {
    right: 50%;
    transform: translateX(50%);
    margin-right: -420px;
    bottom: 440px;
  }
  /*------ character ------ */
  #character {
    height: 1300px;
  }
  .chara-btn {
    display: flex;
  }
  .chara-box {
    max-width: 800px;
  }
  .chara-txt-space {
    padding-top: 60px;
  }
  .chara-prof {
    max-width: 350px;
  }
  .chara-illust {
    position: absolute;
    top: 0px;
    right: 20px;
  }
  .chara-words {
    position: absolute;
    top: 30px;
    right: 0px;
  }
  /*------ gallery ------ */
  .gallery-list li {
    flex-basis: calc((100% - 40px) / 3);
  }
  .gallery_naminami_right {
    right: 50%;
    transform: translateX(50%);
    margin-right: -430px;
    bottom: 420px;
  }
  .gallery_dot_left {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -500px;
    top: 400px;
  }
  .gallery_dot_right {
    right: 50%;
    transform: translateX(50%);
    margin-right: -580px;
    top: 140px;
  }
  .gallery_naminami_left {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -450px;
    top: -30px;
  }
  /*------ information ------ */
  #information .section-inner {
    display: flex;
    justify-content: space-between;
  }
  #information .section-inner > div {
    flex-basis: calc((100% - 50px) / 2);
    max-width: calc((100% - 50px) / 2);
  }
  /*------ product ------ */
  #product h3:not(:first-child) {
    margin-top: 30px;
  }
}
/*------ KEMURI BG ------ */
@media (min-width: 1400px) {
  .kemuri-bg-left {
    position: absolute;
    z-index: -1;
    left: 0;
    top: -60px;
    transform: translate(0, 0);
    margin-left: -30px;
  }
  .kemuri-bg-right {
    position: absolute;
    z-index: -1;
    right: 0;
    top: -60px;
    transform: scale(-1, 1) translate(0, 0);
    margin-right: -30px;
  }
}
/*------ガイドライン ------ */
.guideline-txt-area {
  line-height: 1.5;
  max-height: 600px;
  overflow: auto;
}
.guideline-txt-area > div {
  margin: 40px;
}
.guideline-txt-area h2 {
  padding: 15px 20px 15px 40px;
  background: #ff9882;
  color: #fff;
  margin: 50px auto 20px auto;
  border-radius: 5px;
  font-size: 18px;
}
.guideline-txt-area h3 {
  position: relative;
  padding: 15px 20px 15px 40px;
  background: #ffefeb;
  margin: 50px auto 20px auto;
  border-radius: 5px;
}
.guideline-txt-area h3:before {
  position: absolute;
  left: 20px;
  width: 10px;
  height: calc(100% - 30px);
  content: '';
  border-radius: 5px;
  background: #ff9882;
}
.guideline-txt-area p {
  margin-bottom: 20px;
}
.guideline-txt-area ul {
  margin-left: 30px;
}
.guideline-txt-area li {
  margin-bottom: 10px;
}
.guideline-txt-area span {
  font-size: 12px;
}
.guideline-txt-area blockquote {
  padding: 15px 20px 15px 40px;
  background: #ffefda;
  border-radius: 5px;
  margin-bottom: 10px;
}
.guideline-txt-area p + blockquote {
  margin-top: -10px;
}
.guideline-txt-area blockquote p:last-child {
  margin-bottom: 0px;
}
.guideline-txt-area .guide {
  margin-bottom: 30px;
}