@charset "UTF-8";
/* reset css */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, a, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, main, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  text-decoration: none;
  background: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 320px;
  word-break: break-all;
  font-variant-numeric: tabular-nums;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum";
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header, footer, section, main, article, aside, menu, nav, details, figcaption, figure {
  display: block;
}

input, select {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  border-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

hr {
  display: none;
}

/* clearfix (modern) */
.cl::after {
  content: "";
  clear: both;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

button {
  outline: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/*クリック禁止*/
.cannot {
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  cursor: default;
}

/*-- 使い方 --*/
/*-- class化 --*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.f_center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.f_middle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.f_reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.f_center_middle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.f_between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*googleフォントからNoto Sans JP,Robotoを引用*/
/*****************************************/
/*PC,SPでの出し分け*/
@media only screen and (min-width: 769px) {
  .is_sp {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .is_pc {
    display: none !important;
  }
}

/*****************************************/
html {
  font-size: 10px;
}

body {
  font-family: 'Noto Sans JP','Hiragino Sans','Yu Gothic','Meiryo', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  /*背景画像もプリントアウト対象にする*/
  -webkit-print-color-adjust: exact;
}

a {
  color: inherit;
}

img {
  width: 100%;
}

#bgi {
  height: 100vh;
  width: 100%;
  position: fixed;
  background-color: #39315D;
  z-index: -1;
}

#bgi:after, #bgi:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#bgi:after {
  background: url(../images/bak_stripe.svg) 0 0 repeat;
  background-size: 60px auto;
}

#bgi:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#180e29), to(#5b5592));
  background: -webkit-linear-gradient(#180e29 0%, #5b5592 100%);
  background: linear-gradient(#180e29 0%, #5b5592 100%);
}

#decol {
  width: 37.5%;
  position: fixed;
  left: 0%;
  top: 0%;
}

@media only screen and (max-width: 768px) {
  #decol {
    width: 100%;
  }
}

#deco2 {
  width: 31.25%;
  position: fixed;
  right: 0%;
  top: 0%;
}

section {
  position: relative;
  z-index: 1;
}

section .wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 calc(100% / 10 * 1);
}

#kv .wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

@media only screen and (max-width: 768px) {
  #kv .wrapper {
    padding: 0;
  }
}

#lead_area .inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

#lead_area .img {
  padding: 0 40px;
}

@media only screen and (max-width: 768px) {
  #lead_area .inner {
    padding: 0 8px;
    margin-top: 24px;
  }
  #lead_area .img {
    padding: 0;
  }
}

#detail {
  margin-top: 40px;
  padding-bottom: 64px;
}

#detail .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

#detail .r {
  width: calc( 59.6354% - 10px);
}

#detail .r .img {
  background: #BCA4D6;
  padding: 12px;
}

#detail .l {
  width: calc( (100% - 59.6354%) - 10px);
  margin-right: 20px;
}

#detail .l .chara {
  margin-top: -17%;
}

#detail .l .detail_text {
  background: url(../images/parts_info_frame_pc.png) 50% 50%/contain no-repeat;
  padding: 78px 40px;
  text-align: center;
  margin-top: -58px;
  position: relative;
  z-index: -1;
}

#detail .l .detail_text .date {
  background: #EF5F8E;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  display: inline-block;
  border-radius: 100px;
  padding: 7px 12px;
}

#detail .l .detail_text .item {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #706CAA;
  font-weight: bold;
}

#detail .l .detail_text h3 {
  font-size: 1.8rem;
  line-height: 1;
  color: #3C2A5D;
  font-weight: bold;
}

#detail .l .detail_text .icn {
  margin-top: 8px;
  background: #B69CD9;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  border-radius: 100px;
  padding: 3px 8px;
}

#detail .l .detail_text .size {
  font-size: 1.3rem;
  line-height: 1.46154;
  margin-top: 8px;
  color: #44338E;
}

#detail .btn {
  text-align: center;
  margin-top: 32px;
}

#detail .btn a {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #FFF79D;
  max-width: 300px;
  border-radius: 100px;
  margin: 0 auto;
  background: #7355A0;
  border: 2px solid #FFF79D;
  padding: 10px 0;
  font-weight: bold;
  -webkit-box-shadow: 0px 0px 8px rgba(255, 247, 157, 0.64);
          box-shadow: 0px 0px 8px rgba(255, 247, 157, 0.64);
}

@media only screen and (max-width: 768px) {
  #detail {
    margin-top: 24px;
  }
  #detail .f_reverse {
    display: block;
  }
  #detail .inner {
    padding: 0 8px;
  }
  #detail .r {
    width: 100%;
  }
  #detail .r .img {
    background: #BCA4D6;
    padding: 8px;
  }
  #detail .l {
    width: 100%;
    margin-right: 0;
    margin-top: 8px;
  }
  #detail .l .chara {
    margin-top: -17%;
  }
  #detail .l .detail_text {
    background: url(../images/parts_info_frame_sp.png) 50% 50%/contain no-repeat;
    padding: 62px 40px;
  }
  #detail .l .detail_text h3 {
    font-size: 2rem;
    line-height: 0.9;
  }
  #detail .btn {
    margin-top: 24px;
  }
}

#lineup {
  padding-bottom: 64px;
}

#lineup .wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}

#lineup h2 {
  padding: 0 40px;
}

#lineup ul {
  margin-top: 16px;
}

#lineup li {
  width: calc( (100% - 16px) / 3);
  margin-right: 8px;
  padding-bottom: 16px;
  margin-top: 16px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

#lineup li:nth-of-type(3n) {
  margin-right: 0;
}

#lineup li .img a {
  display: block;
}

#lineup li .date {
  background: #EF5F8E;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  padding: 7px 0;
}

#lineup li h3 {
  font-size: 1.3rem;
  line-height: 1.46154;
  color: #8775C6;
  font-weight: bold;
  margin-top: 8px;
}

#lineup li h3 span {
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

#lineup li .icn {
  display: inline-block;
  background: #B69CD9;
  border-radius: 100px;
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1;
  padding: 5px 16px;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  #lineup .wrapper {
    padding: 0 8px;
  }
  #lineup h2 {
    padding: 0;
  }
  #lineup li {
    width: calc( (100% - 16px) / 2);
  }
  #lineup li:nth-of-type(3n) {
    margin-right: 8px;
  }
  #lineup li:nth-of-type(2n) {
    margin-right: 0;
  }
  #lineup li .date {
    font-size: 1.2rem;
    line-height: 1;
  }
  #lineup li h3 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  #lineup li h3 span {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  #lineup li .icn {
    font-size: 1.2rem;
    line-height: 1;
  }
}

#cm {
  padding-bottom: 64px;
}

#cm .wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}

#cm .video {
  margin-top: 32px;
}

@media only screen and (max-width: 768px) {
  #cm .wrapper {
    padding: 0 8px;
  }
}

#charactor {
  padding: 64px 0;
  background: rgba(236, 108, 147, 0.8);
}

#charactor .wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 44px;
}

#charactor h2 {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}

#charactor .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-top: 28px;
}

#charactor .flex li {
  width: 25%;
  padding: 5px;
  text-align: center;
}

#charactor .flex a {
  display: block;
}

#charactor .flex .logo {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #62478A;
  padding: 0 28px;
}

#charactor .flex .name {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  #charactor .wrapper {
    padding: 0 8px;
  }
  #charactor h2 {
    padding: 0;
  }
  #charactor .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-top: 22px;
  }
  #charactor .flex li {
    width: 50%;
    width: calc(50% - 6px);
    margin-right: 12px;
    padding: 10px 6px;
  }
  #charactor .flex li:nth-of-type(2n) {
    margin-right: 0;
  }
  #charactor .flex a {
    display: block;
  }
  #charactor .flex .logo {
    padding: 10px 13px;
  }
  #charactor .flex .name {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-top: 4px;
  }
}

#menubtn span {
  background: #000 !important;
}
/*# sourceMappingURL=style.css.map */