@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-black: #000;
  --color-gray: #333;
  --color-white: #fff;
  --color-gold: #cdb576;
  --color-red1: #770101;
  --color-red2: #c80000;
  --ease-main: cubic-bezier(0.33, 1, 0.68, 1);
  --font-en: "Cormorant Unicase", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  --font-jp: "Noto Serif JP","游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}

img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}
html {
  font-size: 0.625em;
}

body {
  font-family: var(--font-jp);
  color: var(--color-black);
}

h2,
h3 {
  font-weight: 400;
}

.svg-symbol {
  display: none;
}

a {
  text-decoration: none;
}

.p-wrap {
  background: url(../img/marble_pattern.jpg) repeat left top/500px auto;
}

.p-header {
  padding: 50px 0 65px;
}
@media screen and (max-width: 899px) {
  .p-header {
    padding: 30px 0 32px;
  }
}

.p-header__deco-item {
  position: absolute;
}
.p-header__deco-item:nth-of-type(1) {
  width: 29.3%;
  max-width: 410px;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s var(--ease-main) 0.1s, transform 1s var(--ease-main) 0.1s;
}
.is-load .p-header__deco-item:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-header__deco-item:nth-of-type(1) {
    width: 40.3%;
    right: 0;
    top: 45px;
  }
}
.p-header__deco-item:nth-of-type(2) {
  width: 25%;
  max-width: 350px;
  left: 0;
  top: 311px;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-main) 0.1s, transform 1s var(--ease-main) 0.1s;
}
.is-load .p-header__deco-item:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-header__deco-item:nth-of-type(2) {
    width: 48%;
    left: 0;
    top: 552px;
  }
}

.p-header__logo {
  width: 430px;
  margin: 0 auto 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main), transform 0.8s var(--ease-main);
}
.is-load .p-header__logo {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-header__logo {
    width: 57%;
  }
}

.p-header__title {
  width: 710px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main) 0.1s, transform 0.8s var(--ease-main) 0.1s;
}
.is-load .p-header__title {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-header__title {
    width: 66%;
  }
}
.p-header__title img {
  width: 100%;
}

.p-main {
  padding-bottom: 115px;
}
@media screen and (max-width: 899px) {
  .p-main {
    padding-bottom: 73px;
  }
}

.p-main__deco {
  width: 48%;
  max-width: 350px;
  position: absolute;
  left: 0;
  bottom: -5.2%;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-main) 0.1s, transform 1s var(--ease-main) 0.1s;
}
.is-load .p-main__deco {
  opacity: 1;
  transform: translateY(0);
}

.p-main__inner {
  padding: 87px 0 103px;
  background: url(../img/bg_red_pc.jpg) no-repeat center/cover;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main) 0.2s, transform 0.8s var(--ease-main) 0.2s;
}
.is-load .p-main__inner {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-main__inner {
    padding: 44px 0 54px;
  }
}
.p-main__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/line_repeat.png) repeat-x left top/contain;
}
@media screen and (max-width: 899px) {
  .p-main__inner::before {
    height: 9px;
  }
}
.p-main__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 18px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/line_repeat.png) repeat-x left top/contain;
  transform: rotate(180deg);
}
@media screen and (max-width: 899px) {
  .p-main__inner::after {
    height: 9px;
  }
}

.p-main__lead {
  margin-bottom: 23px;
  font-size: 2.4rem;
  line-height: 1.8;
  text-align: center;
  color: var(--color-gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main) 0.3s, transform 0.8s var(--ease-main) 0.3s;
}
.is-load .p-main__lead {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-main__lead {
    margin-bottom: 12px;
    font-size: 1.3rem;
  }
}

.p-main__detail {
  margin-bottom: 68px;
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 2.2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main) 0.4s, transform 0.8s var(--ease-main) 0.4s;
}
.is-load .p-main__detail {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-main__detail {
    margin-bottom: 26px;
    font-size: 1.2rem;
    line-height: 1.9;
  }
}

.p-main__contents {
  width: 78.4%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 52px 40px 47px;
  background: url(../img/frame_bg_sp.jpg) no-repeat center/cover;
  position: relative;
  border: 1px solid var(--color-gold);
  outline: 1px solid var(--color-gold);
  outline-offset: -5px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main) 0.5s, transform 0.8s var(--ease-main) 0.5s;
}
.is-load .p-main__contents {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-main__contents {
    width: 90%;
    padding: 34px 19px 34px;
    outline-offset: -4px;
  }
}
.p-main__contents-deco .p-in-item {
  width: 52px;
  position: absolute;
}
@media screen and (max-width: 899px) {
  .p-main__contents-deco .p-in-item {
    width: 26px;
  }
}
.p-main__contents-deco .p-in-item:nth-of-type(1) {
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 899px) {
  .p-main__contents-deco .p-in-item:nth-of-type(1) {
    top: 5px;
    left: 5px;
  }
}
.p-main__contents-deco .p-in-item:nth-of-type(2) {
  top: 10px;
  right: 10px;
  transform: rotate(90deg);
}
@media screen and (max-width: 899px) {
  .p-main__contents-deco .p-in-item:nth-of-type(2) {
    top: 5px;
    right: 5px;
  }
}
.p-main__contents-deco .p-in-item:nth-of-type(3) {
  bottom: 10px;
  left: 10px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 899px) {
  .p-main__contents-deco .p-in-item:nth-of-type(3) {
    bottom: 5px;
    left: 5px;
  }
}
.p-main__contents-deco .p-in-item:nth-of-type(4) {
  bottom: 10px;
  right: 10px;
  transform: rotate(180deg);
}
@media screen and (max-width: 899px) {
  .p-main__contents-deco .p-in-item:nth-of-type(4) {
    bottom: 5px;
    right: 5px;
  }
}
.p-main__contents-title {
  margin-bottom: 18px;
  text-align: center;
  font-size: 2.7rem;
  color: var(--color-gold);
}
@media screen and (max-width: 899px) {
  .p-main__contents-title {
    font-size: 1.5rem;
  }
}
.p-main__contents-title img {
  width: 60px;
  margin: 18px auto 0;
}
@media screen and (max-width: 899px) {
  .p-main__contents-title img {
    width: 36px;
    margin: 12px auto 0;
  }
}
.p-main__contents-detail {
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 2.3;
}
@media screen and (max-width: 899px) {
  .p-main__contents-detail {
    font-size: 1.2rem;
    line-height: 1.9;
  }
}

.p-main__episode {
  width: 80%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 92px 0 0;
}
@media screen and (max-width: 899px) {
  .p-main__episode {
    width: 90%;
    padding: 30px 0 0;
  }
}
.p-main__episode-pagination {
  margin-bottom: 47px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main), transform 0.8s var(--ease-main);
}
.p-scroll.is-active .p-main__episode-pagination {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-main__episode-pagination {
    margin-bottom: 27px;
  }
}
.p-main__episode-pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.p-main__episode-pagination-list-item {
  padding: 23px 23px 28px;
  font-family: var(--font-en);
  font-size: 2.8rem;
}
@media screen and (max-width: 899px) {
  .p-main__episode-pagination-list-item {
    margin-bottom: -6px;
    padding: 14px 14px 16px;
    font-family: var(--font-en);
    font-size: 1.7rem;
  }
}
.p-main__episode-pagination-list-item.is-current {
  background: url(../img/pager_base.png) no-repeat center/contain;
}
.p-main__episode-pagination-list-item.is-current a {
  color: var(--color-gold);
  pointer-events: none;
}
.p-main__episode-pagination-list-item a {
  color: var(--color-red1);
  position: relative;
  transition: color 0.7s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-main__episode-pagination-list-item a:hover {
    color: var(--color-gold);
  }
}
.p-main__episode-contents-list-item .p-in-num {
  margin-bottom: 14px;
  color: var(--color-red2);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main) 0.1s, transform 0.8s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-main__episode-contents-list-item .p-in-num {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-main__episode-contents-list-item .p-in-num {
    margin-bottom: 10px;
  }
}
.p-main__episode-contents-list-item .p-in-num-text {
  display: block;
  font-family: var(--font-en);
  font-size: 2rem;
}
@media screen and (max-width: 899px) {
  .p-main__episode-contents-list-item .p-in-num-text {
    font-size: 1rem;
  }
}
.p-main__episode-contents-list-item .p-in-num-main {
  display: block;
  font-size: 4.5rem;
}
@media screen and (max-width: 899px) {
  .p-main__episode-contents-list-item .p-in-num-main {
    font-size: 2.2rem;
  }
}
.p-main__episode-contents-list-item .p-in-title {
  margin-bottom: 40px;
  font-size: 4.2rem;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main) 0.2s, transform 0.8s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-main__episode-contents-list-item .p-in-title {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-main__episode-contents-list-item .p-in-title {
    margin-bottom: 26px;
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
.p-main__episode-contents-list-item .p-in-image {
  display: flex;
  flex-wrap: wrap;
  width: 98%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main) 0.3s, transform 0.8s var(--ease-main) 0.3s;
}
.p-scroll.is-active .p-main__episode-contents-list-item .p-in-image {
  opacity: 1;
  transform: translateY(0);
}
.p-main__episode-contents-list-item .p-in-image-item {
  width: 32.6%;
}
@media screen and (min-width: 900px) {
  .p-main__episode-contents-list-item .p-in-image-item {
    margin-right: 1.1%;
    margin-bottom: 1.1%;
  }
  .p-main__episode-contents-list-item .p-in-image-item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .p-main__episode-contents-list-item .p-in-image-item {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .p-main__episode-contents-list-item .p-in-image-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
.p-main__episode-contents-list-item .p-in-image-item a {
  display: block;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-main__episode-contents-list-item .p-in-image-item a:hover::before {
    opacity: 0.4;
  }
}
.p-main__episode-contents-list-item .p-in-image-item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-red2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-main);
}

.p-main__thanks {
  display: none;
  width: 78.4%;
  max-width: 1300px;
  margin: 48px auto 0;
  padding: 52px 40px 57px;
  background: url(../img/frame_bg_sp.jpg) no-repeat center/cover;
  position: relative;
  border: 1px solid var(--color-gold);
  outline: 1px solid var(--color-gold);
  outline-offset: -5px;
  z-index: 2;
}
.is-thanks .p-main__thanks {
  display: block;
}
@media screen and (max-width: 899px) {
  .p-main__thanks {
    width: 90%;
    margin: 21px auto 0;
    padding: 34px 19px 34px;
    outline-offset: -4px;
  }
}
.p-main__thanks-deco .p-in-item {
  width: 52px;
  position: absolute;
}
@media screen and (max-width: 899px) {
  .p-main__thanks-deco .p-in-item {
    width: 26px;
  }
}
.p-main__thanks-deco .p-in-item:nth-of-type(1) {
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 899px) {
  .p-main__thanks-deco .p-in-item:nth-of-type(1) {
    top: 5px;
    left: 5px;
  }
}
.p-main__thanks-deco .p-in-item:nth-of-type(2) {
  top: 10px;
  right: 10px;
  transform: rotate(90deg);
}
@media screen and (max-width: 899px) {
  .p-main__thanks-deco .p-in-item:nth-of-type(2) {
    top: 5px;
    right: 5px;
  }
}
.p-main__thanks-deco .p-in-item:nth-of-type(3) {
  bottom: 10px;
  left: 10px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 899px) {
  .p-main__thanks-deco .p-in-item:nth-of-type(3) {
    bottom: 5px;
    left: 5px;
  }
}
.p-main__thanks-deco .p-in-item:nth-of-type(4) {
  bottom: 10px;
  right: 10px;
  transform: rotate(180deg);
}
@media screen and (max-width: 899px) {
  .p-main__thanks-deco .p-in-item:nth-of-type(4) {
    bottom: 5px;
    right: 5px;
  }
}
.p-main__thanks-title {
  margin-bottom: 28px;
  text-align: center;
  font-size: 2.7rem;
  color: var(--color-gold);
}
@media screen and (max-width: 899px) {
  .p-main__thanks-title {
    margin-bottom: 19px;
    font-size: 1.5rem;
  }
}
.p-main__thanks-title img {
  width: 60px;
  margin: 18px auto 0;
}
@media screen and (max-width: 899px) {
  .p-main__thanks-title img {
    width: 36px;
    margin: 12px auto 0;
  }
}
.p-main__thanks-dl-image {
  width: 220px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 899px) {
  .p-main__thanks-dl-image {
    width: 36.6%;
    margin: 0 auto 20px;
  }
}
.p-main__thanks-dl-image img {
  width: 100%;
}
.p-main__thanks-dl-link {
  width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-main__thanks-dl-link {
    width: 76%;
  }
}
.p-main__thanks-dl-link a {
  display: block;
  padding: 14px 0;
  background-color: var(--color-gray);
  font-family: var(--font-en);
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  position: relative;
  transition: background-color 0.6s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-main__thanks-dl-link a:hover {
    background-color: var(--color-red2);
  }
}
@media screen and (max-width: 899px) {
  .p-main__thanks-dl-link a {
    padding: 10px 0;
    font-size: 1.4rem;
  }
}
.p-main__thanks-dl-link a .p-in-icon {
  width: 20px;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}
@media screen and (max-width: 899px) {
  .p-main__thanks-dl-link a .p-in-icon {
    width: 7%;
    right: 10px;
  }
}
.p-main__thanks-dl-link a .p-in-icon img {
  width: 100%;
}

.p-footer {
  padding-bottom: 120px;
}
@media screen and (max-width: 899px) {
  .p-footer {
    padding-bottom: 60px;
  }
}

.p-footer__logo {
  width: 220px;
  margin: 0 auto 34px;
  transition: transform 0.6s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-footer__logo:hover {
    transform: scale(0.97);
  }
}
@media screen and (max-width: 899px) {
  .p-footer__logo {
    width: 125px;
    margin: 0 auto 28px;
  }
}

.p-footer__link {
  margin-bottom: 36px;
}
@media screen and (max-width: 899px) {
  .p-footer__link {
    margin-bottom: 27px;
  }
}
.p-footer__link-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-footer__link-list-item {
  margin: 0 28px;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 899px) {
  .p-footer__link-list-item {
    margin: 0 3%;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}
.p-footer__link a {
  color: var(--color-gold);
  transition: color 0.6s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-footer__link a:hover {
    color: var(--color-red2);
  }
}

.p-footer__caution {
  margin-bottom: 10px;
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 899px) {
  .p-footer__caution {
    line-height: 1.8;
    font-size: 0.8rem;
  }
}

.p-footer__copy {
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 899px) {
  .p-footer__copy {
    font-size: 0.8rem;
  }
}