/*
Theme Name: PrisonPrincess-theme
Description: PrisonPrincess theme.
*/


/* 14px @ 0px increasing to 16px @ 1920px */
@media (min-width: 0px) {
  :root {
    font-size: calc(0.875rem + ((1vw - 0px) * 0.1042));
    /* Where: * 0.1042 = 100 * font_Size_Difference / viewport_Width_Difference */
  }
}
/* Prevent font scaling beyond this breakpoint */
@media (min-width: 1920px) {
  :root {
    font-size: 16px;
  }
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  color: #9a005a;
}
body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background:url('images/bg.png') no-repeat center top;
  background-size:cover;
}

ol,ul {
  list-style: none;
}

blockquote,q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}


/*layout*/

.container {
  max-width: 1200px;
  margin: auto;
}
.main-wrapper {
background:url('images/bg2.png') no-repeat center top;
  background-size: cover;
  color:#fff;
  padding: 2% 0;
}
.main-content {
  margin-top: 122px;
}


/*header*/

.site-header {
  background-color: rgba(255,255,255,0.9);
  padding: 6px 6px 12px 6px;
  position: fixed;
  top:0;
  width: 100%;
  z-index: 10;
  box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.28);
}

.site-header .container {
  position: relative;
}

.site-header h1 {
  width: 218px;
}

.sub-nav ul {
  position: absolute;
  top: 6px;
  right: 0;
  display: flex;
  z-index: 2;
}
.sub-nav li {
  border-left: 1px solid;
  padding: 0 6px;
}
.sub-nav li:first-child {
  border-left: none;
}
.sub-nav li a {
  font-size: 13px;
  padding: 1px 12px;
  color: #9a005a;
}

.sub-nav li a:hover {
  color: #1eaede;
}

.sub-nav li a.active {
  border-radius: 24px;
  background: #9a005a;
  color: #fff;
}

.main-nav ul {
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(100% - 300px);
  margin-top: .6rem;
  display: flex;
  justify-content:space-between;
  
}

.main-nav li {
  text-align: center;
}

.main-nav li a {
  display: block;
  text-decoration: none;
  font-family: 'Noto Serif', serif;
  font-size: 1.2rem;
  white-space: nowrap;
  letter-spacing: 3px;
  color: #9a005a;
}

.main-nav li a:hover {
  color: #1eaede;
}


/*footer*/

.site-footer {
  background: #141619;
  color: #eee;
  padding: 2.4rem 12px;
  line-height: 1.4;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction:row-reverse;
}

#contact {
  width: 70%;
  padding: 1%;
}

#contact p {
  margin-bottom: 1.2rem;
}
#contact form {
  padding: 1%;
}
#contact input,
#contact textarea {
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: .8rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #222427;
  color: #969696;
  
}
#contact textarea {
  height: 200px;
}

#contact input[type="submit"] {
  width: 100%;
  background: #363940;
  color: #fff;
  cursor: pointer;
}
#contact input[type="submit"]:hover {
  background: #1eaede;
}
.screen-reader-response {
display: none;
}
#contact [role="alert"] {
	color: #1eaede;
}

.site-footer h2 {
  font-size: 1.8rem;
  padding: 12px 0;
  color: #fff;
  font-family: 'Noto Serif', serif;
}

.site-footer p {
  color: #fff;
}

.sns {
  width: 30%;
  padding: 1%;
}

.sns-nav {
  display: flex;
  justify-content: center;
  margin-bottom: .8rem;
}

.sns-nav li {
  display: inline;
  padding: 0 .8rem;
}

.sns-nav a {
  font-size: 2.6rem;
  color: #eee;
}

.copyright {
  text-align: center;
  font-size:.8rem;
}

.copyright img {
  margin-bottom: 1%;
}

/*main*/
.main-content {
  line-height: 1.5;
}
.page-title {
  font-size: 1.8rem;
  margin-bottom: 1%;
  text-align: center;
  background: url('images/bg-title.png') no-repeat left top;
}

.page-title span {
  display: block;
  background: url('images/bg-title.png') no-repeat right bottom;
  padding: 18px 48px;
  font-family: 'Noto Serif', serif;
}

.banner ul {
  display: flex;
  justify-content: center;
  margin-bottom: 2%;
}

.banner ul li {
  padding: 0 1%;
}

#character .image {
  width: 50%;
  position: relative;
}
#character .image>img {
  display: block;
  margin: auto;
}

#character .content {
  width: 50%;
  padding: 4%;
  color: #000;
}

#character h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
}

#character .copy {
  text-align: center;
  font-size:1.8rem;
  font-weight: bold;
}

#character .cv,
#character .voice {
  text-align: center;
  margin-bottom: 12px;
  font-weight: bold;
}

#character .voice img {
  vertical-align: middle;
  cursor: pointer;
}

#character .description {
  border-top: 1px solid;
  border-bottom: 1px solid;
  text-align: left;
  padding: 12px 0;
  margin-bottom: 12px;
}
#character ul {
  display: flex;
}
#character ul li {
  width: 50%;
  padding: 1%;
  position: relative;
}
#character ul li .zoom {
  position: absolute;
  right: 2px;
  bottom: 2px;
}
.aria {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background:url('images/bg.png') no-repeat center top;
  background-size: cover;
  margin-bottom: 24px;
}
.aria h2 {
  color:#dd5667;
}

.aria .fullview {
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.zena {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: center;
  background:url('images/bg.png') no-repeat center top;
  background-size: cover;
}
.zena h2 {
  color:#465a8c;
}

.zena .fullview {
  position: absolute;
  bottom: 12px;
  left: 12px;
}

#system section>div {
  text-align: center;
  background:url('images/bg.png') no-repeat center top;
  background-size: cover;
padding: 4%;
  color: #000;
}
#system section>div p:first-child {
  font-size: 2rem;
  font-weight: bold;
  color: #9a005a;
}
#system ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
#system ul li a {
  display: block;
  position: relative;
  color: #fff;
  margin-bottom: 6px;
}
#system ul.nav li a {
    background:url('images/down-arrow.png') no-repeat left center;
  background-size: 20px;
  padding: 4px;
  padding-left: 24px;
  margin-right: 6px;
  
}
#system h2 {
  padding: .5rem 0 .5rem 24px;
  font-weight: bold;
background:url('images/down-arrow.png') no-repeat left center;
  background-size: 20px;
}

#system ul li .zoom {
  position: absolute;
  right: 2px;
  bottom: 2px;
}

#system ul li .right-arrow {
  position: absolute;
  left: -34px;
  top:0;
  bottom: 0;
  margin: auto;
}
#system ul li .down-arrow {
  position: absolute;
  left: 0;
  right: 0;
  top: -26px;
  margin: auto;
}

#system01 ul li {
  width: 50%;
  padding: 1%;
}

#system02 ul li,
#system03 ul li,
#system04 ul li,
#system05 ul li {
  width: 33.33%;
  padding: 1%;
}

#system04 ul li:first-child,
#system05 ul li:first-child {
  width: 66.666%;
}

#system04 span {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  font-size: 1.6rem;
  font-weight: bold;
  color: #eb35b2;
  line-height: 1.2;
  text-shadow: white 2px 0px, white -2px 0px, white 0px -2px, white 0px 2px, white 2px 2px, white -2px 2px, white 2px -2px, white -2px -2px, white 1px 2px, white -1px 2px, white 1px -2px, white -1px -2px, white 2px 1px, white -2px 1px, white 2px -1px, white -2px -1px;
}

#system04 span.txt1 {
  top: -10px;
  transform: rotate(-7deg);
  -moz-transform: rotate(-7deg);
  -webkit-transform: rotate(-7deg);
}

#system04 span.txt2 {
  bottom: -20px;
}

#system05 span {
  font-size: 2rem;
  font-weight: bold;
  color: #eb35b2;
  text-shadow: white 2px 0px, white -2px 0px, white 0px -2px, white 0px 2px, white 2px 2px, white -2px 2px, white 2px -2px, white -2px -2px, white 1px 2px, white -1px 2px, white 1px -2px, white -1px -2px, white 2px 1px, white -2px 1px, white 2px -1px, white -2px -1px;
}
#story .main-wrapper {
  padding-bottom: 0;
}
#story>div {
  text-align: center;
  line-height: 1.5;
  padding: 3% 12px;
}
#story .story-inner {
  background:url('images/story-bg.png') no-repeat center -110px;
  padding: 0;
  background-size:1600px;
}
#story .story-inner .container {
  max-width: 900px;
}
#story h1 {
  background: none;
  padding: 0;
}
#story h1 span {
  background: none;
  padding: 56px 0 0;
text-shadow: #46361a 2px 0px, #46361a -2px 0px, #46361a 0px -2px, #46361a 0px 2px, #46361a 2px 2px, #46361a -2px 2px, #46361a 2px -2px, #46361a -2px -2px, #46361a 1px 2px, #46361a -1px 2px, #46361a 1px -2px, #46361a -1px -2px, #46361a 2px 1px, #46361a -2px 1px, #46361a 2px -1px, #46361a -2px -1px;
}
#story>div>div>div>div {
  padding: 0 0 90px;
  
  }
#story p {
  font-size: 1.2rem;
  padding: .6rem 0;
  color: #fff;
text-shadow: #46361a 2px 0px, #46361a -2px 0px, #46361a 0px -2px, #46361a 0px 2px, #46361a 2px 2px, #46361a -2px 2px, #46361a 2px -2px, #46361a -2px -2px, #46361a 1px 2px, #46361a -1px 2px, #46361a 1px -2px, #46361a -1px -2px, #46361a 2px 1px, #46361a -2px 1px, #46361a 2px -1px, #46361a -2px -1px;
}

#story p:last-child {
  font-size: 2rem;
  font-weight: bold;
  color: #eb35b2;
text-shadow: white 2px 0px, white -2px 0px, white 0px -2px, white 0px 2px, white 2px 2px, white -2px 2px, white 2px -2px, white -2px -2px, white 1px 2px, white -1px 2px, white 1px -2px, white -1px -2px, white 2px 1px, white -2px 1px, white 2px -1px, white -2px -1px;
}

#staff>div,
#info>div {
  padding: 0 1% 12px;
}
#staff li,
#info li {
  background:url('images/list.png') no-repeat left center;
  padding-left: 20px;
}

#movie h2 {
  padding: .5rem 0 .5rem 24px;
  font-weight: bold;
background:url('images/down-arrow.png') no-repeat left center;
  background-size: 20px;
}

.video-wrapper {
  padding: 1% 0;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*patch-page*/

.patch-page {
  text-align: center;
  line-height: 1.5;
}

.patch-page .container {
  position: relative;
}

.patch-page .logo {
  padding: 48px;
}

.patch-page h2,
.patch-page h3 {
  font-weight: bold;
  margin: 2rem;
}

.patch-page div {
  margin-bottom: 2rem;
}

.patch-page p {
  margin-top: 4px;
  margin-bottom: 1rem;
}

.patch-page p.bld {
  font-weight: bold;
}

.patch-page .confirm {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.patch-page .confirm li {
  text-align: center;
  margin: 1%;
}

.patch-page .confirm li a {
  display: block;
  border-radius: 24px;
  background: #fff;
  border: 1px solid;
  padding: 8px 40px;
  color: #9a005a;
}

.patch-page .confirm li a:hover {
  color: #1eaede;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pushbar-button {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .pushbar-button {
    display: block;
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 1.6rem;
    cursor: pointer;
    border: none;
    color: #9a005a;
    background: #fff;
  }
  .pushbar .sub-nav ul {
    position: relative;
    justify-content: center;
    flex-wrap: wrap;
  }
  .pushbar .sub-nav ul li {
    width: 100%;
    text-align: center;
    padding: 6px;
    border: none;
  }
  .main-nav ul {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
    display: block;
  }
  .main-nav li {
    text-align: left;
    padding: 0;
    border-bottom: 1px solid #9a005a;
  }
  .main-nav li a {
    padding: 1rem;
  }
  .main-content {
    margin-top: 72px;
  }
  .site-header {
    background-size: 12px;
    background-position: bottom 6px center;
    padding: 6px 6px 16px 6px;
  }
  .site-header h1 {
    width: 106px;
  }
  /*footer*/
  #contact {
    width: 100%;
  }
  .sns {
    width: 100%;
  }
  /*main*/
  .main-content section h2 {
    background-size: 768px;
  }
  .main-content section h2 span {
    background-size: 768px;
    padding-left: 24px;
  }
  #character .image {
    width: 100%;
  }
  #character .content {
    padding: 24px 12px;
    width: 100%;
  }
  .fullview img {
    width: 69px;
  }
  #system01 ul li {
    width: 100%;
  }
  #system02 ul li,
  #system03 ul li,
  #system04 ul li,
  #system05 ul li {
    width: 100%;
  }
  #system04 ul li:first-child,
  #system05 ul li:first-child {
    width: 100%;
  }
  #system ul li .right-arrow {
    display: none;
  }
#story .story-inner {
  padding: 0 12px;
  background-size: auto;
}
  #story>div {
    text-align: left;
  }
  #story p br {
    display: none;
  }
  #story p:last-child {
    font-size: 1.5rem;
  }
  #staff>div,
  #info>div {
    padding: 24px 12px;
  }
  .video-wrapper {
    padding: 0;
  }
  /*confirm-page*/
  .confirm-page {
    padding: 12px;
  }
  /*patch-page*/
  .patch-page {
    padding: 12px;
  }
}

@media screen and (max-width: 480px) {
  .main-content section h2 {
    font-size: 1.4rem;
  }
}


/*ページ公開前用スタイル*/
.main-nav li {
  font-family: 'Noto Serif', serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  color:#b9b9b9;
}