@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: center center;
  background-size: cover;
  box-shadow: 0 0 80px rgba(0, 0, 0, 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.2);
}
.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%;
  border: 2px solid #e40000;
}
.head_title_area {
  width: 56.716%;
}
.head_play {
 border-radius: 60px;
 background-color: #e40000;
 text-align: center;
 padding: 1rem 1rem 0.7rem 1rem;
 font-size: 1.6rem;
 font-weight: bold;
 color: #fff;
 margin-top: 1rem;
}
.head_title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
}
.tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid #b6b6b6;
  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(124deg, rgba(114,114,114,1) -8%, rgba(230,230,230,1) 8%, rgba(177,174,174,1) 26%, rgba(114,114,114,1) 50%, rgba(230,230,230,1) 67%, rgba(177,174,174,1) 74%, rgba(114,114,114,1) 95%);
  padding: 3px;
  margin-bottom: 1rem;
}
.name_area {
  background-image: url(../images/name_bg.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0.8rem;
}
.name_text {
text-align: center;
color: #fff;
font-size: 2.3rem;
font-family: "Noto Serif JP", serif;
font-weight: 800;
text-shadow:  0 0 6px #8d0000, 0 0 6px #8d0000, 0 0 6px #8d0000, 0 0 6px #8d0000, 0 0 6px #8d0000;
font-variant-east-asian: proportional-width;
letter-spacing: 0.05em;
line-height: 1.2;
margin-top: -0.8rem;
}


@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;
}
}

