@charset "UTF-8";
/******************************************************************************
Default CSS Reset
******************************************************************************/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html, body {
  position: relative;
  box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, th, var {
  font-style: normal;
  font-weight: normal;
}

em, i {
  font-style: normal;
}

ol, ul {
  list-style: none;
}

caption {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400;
}

img {
  vertical-align: bottom;
  /* chormeで画像のぼやけ回避 */
  -webkit-backface-visibility: hidden;
}

/* iOSでのデフォルトスタイルをリセット */
input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox], input[type=radio] {
  display: none;
}

input[type=submit], input[type=button], label, button, select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

picture {
  display: block;
}

/******************************************************************************
General Setting
******************************************************************************/
body {
  margin: 0 auto;
  padding: 0;
  font-family: "メイリオ", Meiryo, "游ゴシック", YuGothic, "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", sans-serif;
  color: #000;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  font-size: 1.4em;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 400;
  background-color: #fff;
}

a {
  margin: 0;
  padding: 0;
  font-family: "メイリオ", Meiryo, "游ゴシック", YuGothic, "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", sans-serif;
  color: #000;
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:focus, *:focus {
  outline: none;
}

/******************************************************************************
content
******************************************************************************/
.wrapper {
  width: 100%;
}
.wrapper img {
  width: 100%;
  height: auto;
}
.inner {
  margin: 0 auto;
  max-width: 500px;
  width: 89.333%;
}
.bg_fix {
  z-index: -1;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../images/bg_pc.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
main {
  max-width: 500px;
  margin: auto;
  background-image: url(../images/bg_main.jpg);
  background-position: bottom center;
  background-size: cover;
  box-shadow: 0 0 80px rgba(202, 101, 230, 1);
  height: 100dvh;
  position: relative;
}
.article main, .character main {
  height: 100%;
  min-height: 100dvh;
}
/* .article main::before, .character main::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
} */
.content {
  position: relative;
  z-index: 10;
}
.floating {
  display: block;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
}
.floating_inner {
  margin: 0 auto;
  max-width: 500px;
  padding: 0 5% 11vw 5%;
}
.floating_text {
  width: 91%;
  margin: 0 auto 1rem;
}

footer {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

footer .copyright {
  text-align: center;
  font-size: 1rem;
  vertical-align: middle;
  font-family: Arial, sans-serif;
}

/* ▼article */
.article .content {
  padding: 4rem 0 40vw;
}
.head_area {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}
.head_img {
  width: 35.820%;
}
.head_img img {
  border-radius: 10px;
  border: 2px solid #fff;
}
.head_title_area {
  width: 56.716%;
}
.head_play {
  border-radius: 60px;
  background-color: #ffef6b;
  text-align: center;
  padding: 1rem 1rem 0.7rem 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  margin-top: 0.5rem;
}
.head_title {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.4;
}
.head_title span {
  font-size: 1.4rem;
  line-height: 1.3;
  display: inline-block;
}
.tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 2.25rem;
}
.tag_list li {
  border: 1px solid #b6b6b6;
  border-radius: 6px;
  background-color: #fff;
  padding: 0.5rem 1rem 0.3rem 1rem;
  color: #444444;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
}
.article_text {
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}
.article_img_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 2%;
}
.article_img_list li {
  width: 49%;
}

/* character */
.character .content {
  padding: 4rem 0 40vw;
}
.character_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 7.6%;
}
.character_list li {
  width: 46.2%;
}
.character_img {
  background: linear-gradient(120deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
  padding: 3px;
  margin-bottom: 0.5rem;
  border-radius: 10px;
}
.character_img img {
  border-radius: 10px;
}
.name_area {
background-image: url(../images/name_bg.png);
background-size: contain;
background-position: center;
background-repeat: no-repeat;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
min-height: 5.2rem;
filter: drop-shadow(5px 5px #fff);
}
.name_text {
text-align: center;
color: #fff;
font-size: 2.3rem;
font-family: "M PLUS 1p", sans-serif;
font-weight: 900;
text-shadow: 2px 2px 0 rgba(43, 3, 80, 1);
font-variant-east-asian: proportional-width;
letter-spacing: 0.05em;
line-height: 1.2;
margin-top: -0.3rem;
}


@media screen and (min-width: 500px) {
  .floating_inner {
    padding: 0 2% 3.5vw 2%;
  }
  .article .content {
    padding: 4rem 0 15vw;
}
.character .content {
  padding: 4rem 0 15vw;
}
.name_area {
  min-height: 6.2rem;
  }
}
@media screen and (max-width: 375px) {
  .name_text {
    font-size: 5.6vw;
}
}

