@charset "UTF-8";
/*googleフォントからNoto Sans JP,Robotoを引用*/
@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");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap");
/* reset css */
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%;
       text-size-adjust: 100%;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 320px;
  word-break: break-all;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

*, *::before, *::after {
  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 {
  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: flex;
  flex-flow: row wrap;
}

.f_center {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.f_middle {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.f_reverse {
  display: flex;
  flex-flow: row wrap;
  flex-direction: row-reverse;
}

.f_center_middle {
  display: flex;
  flex-flow: row wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.f_between {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

/*
  footer
*/
footer {
  background: #fff;
  position: relative;
}

footer .logo1 {
  text-align: center;
  padding: 32px 0;
}

footer .logo1 img {
  width: 96px;
  height: 48px;
}

footer .footermenu {
  text-align: center;
  padding-bottom: 8px;
}

footer .footermenu li {
  display: inline-block;
  padding: 0 8px;
  border-left: 1px solid #004EA2;
}

footer .footermenu li:first-of-type {
  border: none;
}

footer .footermenu a {
  color: #004EA2;
}

footer .logo2 {
  text-align: center;
  padding: 48px 0 24px;
}

footer .logo2 img {
  width: 160px;
  height: 48px;
}

footer .copyright {
  font-size: 12px;
  text-align: center;
  padding-bottom: 16px;
}

footer .copyright li {
  padding: 0 8px;
  color: #14116e;
}

@media only screen and (max-width: 768px) {
  footer {
    margin-top: -1px;
  }
  footer .inbox {
    padding: 0 16px;
  }
  footer .logo1 {
    padding: 32px 0 16px;
  }
  footer .logo2 {
    padding: 32px 0 16px;
  }
  footer .copyright {
    padding-bottom: 64px;
  }
  footer .copyright li {
    padding: 0;
  }
}
/*****************************************/
/*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;
  background: url(../images/ptn_bak.png) repeat 0 0;
  background-color: #ffe7f0;
  background-size: 31px auto;
}

/*****************************************/
/*kv*/
#kv {
  padding: 48px 0;
}
#kv .wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

#kv_slider {
  max-width: 936px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  #kv {
    padding: 80px 8px 0;
  }
  #kv .wrapper {
    padding: 0;
  }
  #kv_slider {
    max-width: 936px;
    margin: 0 auto;
  }
}
/*main*/
#main {
  padding: 16px 32px 0;
  position: relative;
  z-index: 2;
}
#main h2 {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

#main .wrapper {
  max-width: 1080px;
  margin: 0 auto;
  z-index: 1;
}
#main .wrapper .flex {
  margin-top: 64px;
  justify-content: space-between;
}
#main .wrapper .center {
  width: calc(50% - 16px);
  margin: 8px;
}
#main .wrapper .left,
#main .wrapper .right {
  width: 25%;
}
#main .wrapper .right .grid {
  height: 50%;
  display: flex;
  flex-flow: row wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#main .wrapper .right .grid .flex_center {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#main .wrapper .right .grid .flex_center .scorp_thumb {
  width: 50%;
  cursor: pointer;
}
#main .wrapper .right .grid .flex_center .click {
  width: 50%;
}
#main .wrapper .art {
  position: relative;
}
#main .wrapper .art .text {
  color: #7d5180;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 20%;
}
#main .wrapper .art .text .release {
  display: inline-block;
  background: #f067a6;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 2px 16px;
  border-radius: 100px;
}
#main .wrapper .art .text .chara {
  margin-top: 4px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
#main .wrapper .art .text .item {
  margin-top: 4px;
  font-weight: bold;
  min-height: 40px;
  font-size: 1.4rem;
  line-height: 1.5;
}
#main .wrapper .art .text .special {
  display: inline-block;
  background: #d8a7da;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 3px 8px;
  margin-top: 8px;
  border-radius: 100px;
}
#main .wrapper .art .text .size {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 8px;
}
#main .wrapper .btn {
  margin-top: 32px;
  text-align: center;
  width: 100%;
}
#main .wrapper .btn a {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  color: #9f66a3;
  background: #f99dc3;
  border-radius: 100px;
  border: #fff 4px solid;
  padding: 18px 0;
  max-width: 360px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  #main {
    padding: 16px 8px 0;
  }
  #main .wrapper .flex {
    padding: 8px;
    margin-top: 24px;
    flex-direction: column;
  }
  #main .wrapper .center {
    max-width: 640px;
    width: 100%;
    padding: 6px;
    margin: 0 auto;
    order: 0;
    text-align: center;
  }
  #main .wrapper .left {
    width: 100%;
    margin-top: 32px;
    padding: 0;
    text-align: center;
    order: 2;
  }
  #main .wrapper .right {
    width: 100%;
    order: 1;
  }
  #main .wrapper .right.sp_hidden {
    display: none;
  }
  #main .wrapper .right picture {
    display: none;
  }
  #main .wrapper .right .grid .flex_center .scorp_thumb {
    width: 26.22%;
  }
  #main .wrapper .art {
    max-width: 328px;
    margin: 0 auto;
    text-align: center;
  }
  #main .wrapper .art .text {
    top: 20%;
  }
  #main .wrapper .art .text .release {
    font-size: 1.3rem;
  }
  #main .wrapper .art .text .chara {
    margin-top: 4px;
  }
  #main .wrapper .btn {
    margin-top: 24px;
  }
  #main .wrapper .btn a {
    border: #f7efe4 4px solid;
    padding: 19px 0;
    max-width: 328px;
  }
}
/*clearcard*/
#clearcard .wrapper {
  padding: 0 32px;
}
#clearcard h2 {
  max-width: 640px;
  width: 100%;
  margin: 0 auto -24px;
}
#clearcard .inner {
  max-width: 970px;
  text-align: center;
  padding: 48px;
  background-color: #ffffff;
  border: 4px solid #f99dc3;
  border-radius: 16px;
  margin: 0 auto;
}
#clearcard .inner img {
  max-width: 855px;
  width: 100%;
}
#clearcard .inner .txt {
  color: #80688a;
  font-family: "M PLUS Rounded 1c";
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  padding-top: 16px;
}

@media only screen and (max-width: 768px) {
  #clearcard .wrapper {
    padding: 0 8px;
  }
  #clearcard h2 {
    margin-bottom: -5%;
  }
  #clearcard .inner {
    padding: 32px 7px;
  }
  #clearcard .inner .txt {
    font-size: 1.6rem;
  }
}
/*items*/
#items {
  position: relative;
  padding: 40px 32px 64px;
  z-index: 2;
}
#items h2 {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
#items .tab_wrap {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
#items .tab_wrap .tab {
  display: flex;
  width: 100%;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
#items .tab_wrap .tab_links {
  width: 25%;
  color: #b989bb;
  font-family: "M PLUS Rounded 1c";
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border-radius: 24px 24px 0px 0px;
  background: #e2bde4;
  padding: 12px 0;
  cursor: pointer;
}
#items .tab_wrap .tab_links.active {
  color: #fff;
  background-color: #f067a6;
}
#items .contents_wrap {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 48px 46px;
}
#items .flex {
  width: 100%;
  justify-content: center;
}
#items .flex .release {
  background-color: #f067a6;
}

#items .wrapper {
  max-width: 1016px;
  margin: 0 auto;
  z-index: 1;
}
#items .wrapper .scroll {
  max-width: 270px;
  margin: 0 auto;
  margin-bottom: 8px;
}
#items .wrapper h3 {
  width: 19.685%;
}
#items .wrapper .slider_wrap {
  width: 100%;
  padding: 0 32px;
}
#items .wrapper .schedule {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 32px;
}

.item_slider {
  display: none;
}
.item_slider.slick-initialized {
  display: block;
}
.item_slider .slide {
  margin: 0 4px;
}
.item_slider .slide .inner {
  background: #fff;
  height: 100%;
  text-align: center;
  color: #7d5180;
}
.item_slider .slide .release {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  background: #81ba90;
  border-radius: 100px;
  padding: 4px 7px;
  margin-top: 20px;
  display: inline-block;
}
.item_slider .slide h4 {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 6px;
  font-weight: bold;
}
.item_slider .slide .name {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 6px;
  font-weight: bold;
}
.item_slider .slick-prev,
.item_slider .slick-next {
  width: 24px;
  height: 24px;
  background: url(../images/pager_prev.svg) 0 0 no-repeat;
  background-size: cover;
  z-index: 10;
}
.item_slider .slick-prev {
  left: -32px;
}
.item_slider .slick-next {
  right: -32px;
  background-image: url(../images/pager_next.svg);
}
.item_slider .slick-prev:before,
.item_slider .slick-next:before {
  display: none;
}
.item_slider .slick-track {
  margin-left: 0;
}

@media only screen and (max-width: 768px) {
  #items {
    padding: 64px 8px 0;
  }
  #items h2 {
    margin-bottom: 24px;
  }
  #items .wrapper {
    position: relative;
  }
  #items .wrapper .tab_wrap .tab {
    width: auto;
    overflow-x: scroll;
  }
  #items .wrapper .tab_wrap .tab_links {
    width: auto;
    font-size: 1.6rem;
    line-height: 1.5;
    word-break: keep-all;
    padding: 12px 16px;
  }
  #items .wrapper .contents_wrap {
    padding: 24px 16px;
  }
  #items .wrapper .flex {
    display: block;
    padding-bottom: 4px;
    position: relative;
  }
  #items .wrapper .scroll {
    display: none;
  }
  #items .wrapper h3 {
    width: 100%;
    max-width: 216px;
    margin: 0 auto;
  }
  #items .wrapper .slider_wrap {
    width: 100%;
    padding: 0 56px;
  }
  #items .wrapper .schedule {
    max-width: 100%;
    margin-top: 24px;
  }
  #items .wrapper .schedule img {
    display: block;
    margin: 0 auto;
  }
  .item_slider .slide {
    padding: 0;
    margin: 0;
  }
  .item_slider .slide .release {
    font-size: 1.3rem;
    line-height: 1.3846153846;
    padding: 4px 8px;
    margin-top: 8px;
  }
  .item_slider .slide h4 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 4px;
  }
  .item_slider .slide .name {
    margin-top: 4px;
  }
  .item_slider .slick-prev,
.item_slider .slick-next {
    width: 40px;
    height: 40px;
    background: url(../images/pager_prev.svg) 0 0 no-repeat;
    background-size: cover;
  }
  .item_slider .slick-prev {
    left: -56px;
  }
  .item_slider .slick-next {
    right: -56px;
    background-image: url(../images/pager_next.svg);
  }
}
/*character*/
#character {
  position: relative;
  padding: 64px 32px 80px;
  z-index: 2;
}
#character h2 {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}
#character .wrapper {
  max-width: 1440px;
  margin: 0 auto;
}
#character .chara_list {
  justify-content: center;
  max-width: 990px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 24px;
  margin: 36px auto 0;
  padding: 0 10px;
}
#character .chara_list li {
  width: calc((100% - 90px) / 4);
  text-align: center;
}
#character .chara_list li:nth-of-type(3n) {
  margin-right: 0;
}
#character .chara_list li a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: #f067a6 2px solid;
  background: #fff;
  padding: 0 28px;
}
#character .chara_list li .name {
  margin-top: 4px;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: bold;
  color: #7d5180;
}

@media only screen and (max-width: 768px) {
  #character {
    padding: 64px 8px 64px;
  }
  #character h2 {
    margin-bottom: 0;
  }
  #character .chara_list {
    justify-content: center;
    margin: 32px auto 0;
    padding: 0 8px;
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 16px;
  }
  #character .chara_list li {
    width: calc((100% - 8px) / 2);
    margin-right: 0;
    padding: 0 2px;
  }
  #character .chara_list li:nth-of-type(3n) {
    margin-right: 0;
  }
  #character .chara_list li .name {
    margin-top: 4px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: bold;
    color: #5c3529;
  }
}
/*# sourceMappingURL=style.css.map */