@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-white: #fff;
  --color-black: #000;
  --ease-main: cubic-bezier(0.33, 1, 0.68, 1);
  --font-jp: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  --font-en: "meno-banner","游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}

img {
  max-width: 100%;
  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-weight: 400;
  font-family: var(--font-jp);
  color: var(--color-black);
}

.p-link__text {
  display: block;
  padding: 12px;
  color: #ffb5b7;
  border: 2px solid #ffb5b7;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50rem;
  text-align: center;
  transition: color 0.6s var(--ease-main), background-color 0.6s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-link__text:hover {
    background-color: #ffb5b7;
    color: var(--color-white);
  }
}
@media screen and (max-width: 899px) {
  .p-link__text {
    border-width: 1px;
  }
}

h2,
h3 {
  font-weight: 400;
}

.svg-symbol {
  display: none;
}

a {
  text-decoration: none;
}

.p-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.p-bg__main {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-bg__main .is-deco {
  width: 40px;
  position: absolute;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  animation: moveStar 5s linear infinite;
}
.p-bg__main .is-deco img {
  animation: kurukuru 0.5s forwards infinite;
}
@keyframes kurukuru {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(-180deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes moveStar {
  0% {
    top: 0;
    opacity: 0;
    transform: translateY(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100%;
    transform: translateY(100%);
  }
}
.p-bg__main .is-deco img {
  width: 100%;
}

.p-wrap {
  position: relative;
  overflow: hidden;
}

.p-kv {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-kv__inner {
  padding: 75px 0 98px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .p-kv__inner {
    padding: 50px 0 98px;
  }
}
.p-kv__inner::before {
  content: "";
  display: block;
  width: 155%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #fff, #fff6f7);
  border-radius: 0 0 50% 50%;
}
@media screen and (max-width: 899px) {
  .p-kv__inner::before {
    width: 255%;
  }
}

.p-kv__logo {
  width: 600px;
  margin: 0 auto 50px;
  position: relative;
  opacity: 0;
  transform: scale(1.1);
  filter: blur(10px);
  transition: opacity 1s var(--ease-main), filter 1s var(--ease-main), transform 3s var(--ease-main);
}
.is-load .p-kv__logo {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
}
@media screen and (max-width: 899px) {
  .p-kv__logo {
    width: 80%;
    margin: 0 auto 30px;
  }
}

.p-kv__lead {
  margin-bottom: 40px;
  font-size: 1.5rem;
  line-height: 1.95;
  text-align: center;
  color: var(--color-black);
  font-weight: 700;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s var(--ease-main) 0.1s, transform 1s var(--ease-main) 0.1s;
}
.is-load .p-kv__lead {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-kv__lead {
    width: 90%;
    margin: 0 auto 30px;
    font-size: 1.3rem;
    line-height: 1.74;
  }
}

.p-kv__menu {
  width: 46.3%;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s var(--ease-main) 0.2s, transform 1s var(--ease-main) 0.2s;
}
.is-load .p-kv__menu {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-kv__menu {
    width: 92%;
  }
}
.p-kv__menu-inner {
  width: 100%;
  padding-top: 34.6%;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-kv__menu-inner {
    padding-top: 78.6%;
  }
}
.p-kv__menu-main-border {
  width: 72.4%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 899px) {
  .p-kv__menu-main-border {
    width: 76.6%;
  }
}
.p-kv__menu-main-image {
  width: 53.8%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.p-kv__menu-main-image img {
  transition: transform 0.5s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-kv__menu-main-image:hover img {
    transform: scale(0.97);
  }
}
@media screen and (max-width: 899px) {
  .p-kv__menu-main-image {
    width: 46.8%;
  }
}
.p-kv__menu-link-item {
  width: 21.3%;
  position: absolute;
  cursor: pointer;
  transition: transform 0.4s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-kv__menu-link-item:hover {
    transform: scale(0.97);
  }
}
@media screen and (max-width: 899px) {
  .p-kv__menu-link-item {
    width: 24%;
  }
}
.p-kv__menu-link-item:nth-of-type(1) {
  top: 0;
  left: 0;
}
.p-kv__menu-link-item:nth-of-type(2) {
  top: 0;
  right: 0;
}
.p-kv__menu-link-item:nth-of-type(3) {
  left: 0;
  bottom: 0;
}
.p-kv__menu-link-item:nth-of-type(4) {
  right: 0;
  bottom: 0;
}

.p-history {
  margin-top: -116px;
  padding: 175px 0 149px;
  background: linear-gradient(to bottom, #f8dcdd, #f8efe8);
}
@media screen and (max-width: 899px) {
  .p-history {
    margin-top: -40px;
    padding: 80px 0 114px;
  }
}

.p-history__inner {
  width: 67%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .p-history__inner {
    min-width: 840px;
  }
}
@media screen and (max-width: 899px) {
  .p-history__inner {
    width: 100%;
  }
}

.p-history__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 228px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-history__header {
    display: block;
    margin-bottom: 144px;
  }
}
.p-history__header-image {
  width: 46.7%;
  position: relative;
  left: 7px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s var(--ease-main), transform 1s var(--ease-main);
}
.p-scroll.is-active .p-history__header-image {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-history__header-image {
    width: 95.8%;
    margin: 0 auto;
    left: 0;
  }
}
.p-history__header-detail {
  width: 36%;
  margin-top: 34px;
}
@media screen and (max-width: 899px) {
  .p-history__header-detail {
    width: 80%;
    margin: 0 auto;
  }
}
.p-history__header-detail .p-in-title {
  margin-bottom: 10%;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 1s var(--ease-main), transform 1s var(--ease-main);
}
.p-scroll.is-active .p-history__header-detail .p-in-title {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-history__header-detail .p-in-title {
    width: 69%;
    margin: -4% auto 18px;
  }
}
.p-history__header-detail .p-in-head {
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 1s var(--ease-main) 0.1s, transform 1s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-history__header-detail .p-in-head {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-history__header-detail .p-in-head {
    margin-bottom: 12px;
  }
}
.p-history__header-detail .p-in-detail {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 1s var(--ease-main) 0.2s, transform 1s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-history__header-detail .p-in-detail {
  opacity: 1;
  transform: translateY(0);
}
.p-history__header-arrow {
  width: 56px;
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translateX(-50%);
  z-index: 1;
}
.p-history__header-arrow img {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 1s var(--ease-main) 0.4s, transform 1s var(--ease-main) 0.4s;
}
.p-scroll.is-active .p-history__header-arrow img {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-history__header-arrow {
    bottom: -102px;
  }
}

.p-history__contents {
  position: relative;
}
.p-history__contents-bg {
  width: 56%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/magica/bg_triangle_pc.png) no-repeat center/contain;
  opacity: 0;
  transition: opacity 1s var(--ease-main);
}
.p-history__contents-bg.p-scroll.is-active {
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-history__contents-bg {
    background: url(../img/magica/bg_triangle_sp.png) no-repeat center/contain;
  }
}
.p-history__contents-list-item {
  margin-bottom: 227px;
  padding: 30px 32px;
  background-color: var(--color-white);
  border-radius: 24px;
  position: relative;
  opacity: 0;
  transition: opacity 0.7s var(--ease-main);
}
.p-history__contents-list-item.p-scroll.is-active {
  opacity: 1;
}
.p-history__contents-list-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item {
    width: 86%;
    margin: 0 auto 130px;
    padding: 29.6% 6% 16.4%;
  }
  .p-history__contents-list-item:last-of-type {
    margin-bottom: 0;
  }
}
.p-history__contents-list-item.p-scroll.is-active::before {
  opacity: 1;
}
.p-history__contents-list-item::before {
  content: "";
  display: block;
  width: 24%;
  padding-top: 24%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -110%);
  background: url(../img/magica/decor_star.svg) no-repeat center/contain;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s var(--ease-main);
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item::before {
    width: 60%;
    padding-top: 60%;
    left: 50%;
    transform: translate(-50%, -88%);
  }
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item:nth-of-type(1) {
    padding: 26% 6% 16.4%;
  }
  .p-history__contents-list-item:nth-of-type(1):nth-of-type(1)::before {
    display: none;
  }
}
.p-history__contents-list-item:nth-of-type(1) .p-history__contents-list-item-inner {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item:nth-of-type(1) .p-history__contents-list-item-inner {
    width: 100%;
  }
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item:nth-of-type(1) .p-in-head {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item:nth-of-type(1) .p-in-detail {
    margin-top: -11.7%;
  }
}
.p-history__contents-list-item:nth-of-type(1) .p-in-image {
  width: 28.1%;
  margin-right: 7.1%;
  margin-left: 3.5%;
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item:nth-of-type(1) .p-in-image {
    width: 66%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 900px) {
  .p-history__contents-list-item:nth-of-type(2) {
    padding: 50px 33px;
  }
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item:nth-of-type(3) {
    padding: 25.6% 6% 16.4%;
  }
}
.p-history__contents-list-item:nth-of-type(3) .p-in-image {
  width: 27.1%;
  margin-left: 3.5%;
  margin-right: 8%;
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item:nth-of-type(3) .p-in-image {
    width: 65%;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item:nth-of-type(4) {
    padding: 26.5% 6% 16.4%;
  }
  .p-history__contents-list-item:nth-of-type(4) .p-history__contents-list-item-date {
    width: 100%;
  }
}
.p-history__contents-list-item:nth-of-type(4) .p-in-image {
  width: 27.2%;
  margin-left: 3.5%;
  margin-right: 8.8%;
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item:nth-of-type(4) .p-in-image {
    width: 65.8%;
    margin: 0 auto 10px;
  }
}
.p-history__contents-list-item.is-gold {
  border: 2px solid #a37c41;
  outline: 1px solid #a37c41;
  outline-offset: -5px;
  background: linear-gradient(to bottom, #fff, #e6cfaf);
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item.is-gold {
    background: linear-gradient(to bottom, #fff 62%, #e6cfaf);
  }
}
.p-history__contents-list-item-inner {
  width: 88%;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item-inner {
    width: 100%;
  }
}
.p-history__contents-list-item-date {
  width: 35%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
  opacity: 0;
  transition: opacity 1s var(--ease-main);
}
.p-scroll.is-active .p-history__contents-list-item-date {
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item-date {
    width: 90%;
    transform: translateX(-50%);
  }
}
.p-history__contents-list-item-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item-main {
    display: block;
  }
}
.p-history__contents-list-item-main .p-in-detail {
  flex: 1;
}
.p-history__contents-list-item-main .p-in-image {
  width: 34%;
  margin-right: 5%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s var(--ease-main), transform 1s var(--ease-main);
}
.p-scroll.is-active .p-history__contents-list-item-main .p-in-image {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item-main .p-in-image {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.p-history__contents-list-item-main .p-in-head {
  width: 62.6%;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 1s var(--ease-main), transform 1s var(--ease-main);
}
.p-scroll.is-active .p-history__contents-list-item-main .p-in-head {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item-main .p-in-head {
    width: 88%;
    margin: 0 auto 18px;
  }
}
.p-history__contents-list-item-main .p-in-label {
  width: 72px;
  text-align: center;
  padding: 3px 4px;
  margin-bottom: 8px;
  font-size: 1.2rem;
  border-radius: 50rem;
  color: var(--color-white);
  background-color: #dcb08d;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 1s var(--ease-main) 0.1s, transform 1s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-history__contents-list-item-main .p-in-label {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item-main .p-in-label {
    margin: 0 auto 7px;
  }
}
.is-gold .p-history__contents-list-item-main .p-in-label {
  background-color: #a37c41;
}
.p-history__contents-list-item-main .p-in-text {
  margin-bottom: 18px;
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 1s var(--ease-main) 0.2s, transform 1s var(--ease-main) 0.2s;
}
.p-scroll.is-active .p-history__contents-list-item-main .p-in-text {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item-main .p-in-text {
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.7;
  }
}
.p-history__contents-list-item-main .p-in-link {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 1s var(--ease-main) 0.3s, transform 1s var(--ease-main) 0.3s;
}
.p-scroll.is-active .p-history__contents-list-item-main .p-in-link {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item-main .p-in-link {
    display: block;
  }
}
.p-history__contents-list-item-main .p-in-link-item {
  width: 48.7%;
  margin-right: 2.2%;
}
@media screen and (max-width: 899px) {
  .p-history__contents-list-item-main .p-in-link-item {
    width: 68%;
    margin: 0 auto 8px;
  }
  .p-history__contents-list-item-main .p-in-link-item:last-of-type {
    margin-bottom: 0;
  }
}
.is-gold .p-history__contents-list-item-main .p-in-link-item a {
  border-color: #a37c41;
  color: #a37c41;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .is-gold .p-history__contents-list-item-main .p-in-link-item a:hover {
    background-color: #a37c41;
    color: var(--color-white);
  }
}
@media screen and (min-width: 900px) {
  .p-history__contents-list-item-main .p-in-link-item:last-of-type {
    margin-right: 0;
  }
}

.p-media__contents {
  padding: 110px 0;
}
@media screen and (max-width: 899px) {
  .p-media__contents {
    padding: 80px 0 68px;
  }
}
.p-media__contents.--comic {
  background: linear-gradient(to bottom, #ffd8ed, #e1d9f6);
}
.p-media__contents.--spinoff {
  background: linear-gradient(to bottom, #eddece, #eddbf1);
}
.p-media__contents.--game {
  background: linear-gradient(to bottom, #bee2f8, #ffd3d5);
}
.p-media__contents.--game_last {
  background: linear-gradient(to bottom, #d3edec, #bbe2f6);
}
.p-media__contents-block {
  margin-bottom: 85px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-media__contents-block {
    margin-bottom: 68px;
  }
}
.p-media__contents-block:last-of-type {
  margin-bottom: 0;
}
.p-media__contents-title {
  width: 300px;
  margin: 0 auto 43px;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.7s var(--ease-main), opacity 0.7s var(--ease-main);
}
.p-scroll.is-active .p-media__contents-title {
  opacity: 1;
  transform: translateY(0);
}
.p-media__contents-title img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .p-media__contents-title {
    width: 80%;
    margin: 0 auto 30px;
  }
}
.p-media__contents-main {
  width: 78.4%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .p-media__contents-main {
    min-width: 820px;
  }
}
@media screen and (max-width: 899px) {
  .p-media__contents-main {
    width: 92%;
  }
}
.p-media__contents-main-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.85%;
}
.p-media__contents-main-list.--block {
  width: 74.5%;
  margin: 0 auto;
  border-radius: 15px;
  background-color: #fff;
  padding-top: 0.6%;
  padding-bottom: 4.4%;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.7s var(--ease-main) 0.1s, opacity 0.7s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-media__contents-main-list.--block {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-list.--block {
    display: block;
    width: 100%;
    padding-bottom: 16.4%;
  }
}
.p-media__contents-main-list-item {
  display: flex;
  flex-direction: column;
  width: 23.6%;
  margin-bottom: 1.5%;
  padding: 2.2% 0;
  border-radius: 14px;
  background-color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.7s var(--ease-main), opacity 0.7s var(--ease-main);
}
.--block .p-media__contents-main-list-item {
  width: 32%;
  border-radius: 0;
  margin-bottom: 0;
  background-color: transparent;
}
.--block .p-media__contents-main-list-item + .p-in-link {
  width: 260px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.7s var(--ease-main) 0.2s, opacity 0.7s var(--ease-main) 0.2s;
}
.p-scroll.is-active .--block .p-media__contents-main-list-item + .p-in-link {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .--block .p-media__contents-main-list-item + .p-in-link {
    margin: 26px auto 0;
  }
}
@media screen and (max-width: 899px) {
  .--block .p-media__contents-main-list-item {
    width: 100%;
    padding-bottom: 0;
  }
}
.p-media__contents-main-list-item:nth-of-type(1) {
  transition-delay: 0.1s;
}
.p-media__contents-main-list-item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-media__contents-main-list-item:nth-of-type(3) {
  transition-delay: 0.3s;
}
.p-media__contents-main-list-item:nth-of-type(4) {
  transition-delay: 0.4s;
}
.p-media__contents-main-list-item:nth-of-type(5) {
  transition-delay: 0.5s;
}
.p-media__contents-main-list-item:nth-of-type(6) {
  transition-delay: 0.6s;
}
.p-media__contents-main-list-item:nth-of-type(7) {
  transition-delay: 0.7s;
}
.p-media__contents-main-list-item:nth-of-type(8) {
  transition-delay: 0.8s;
}
.p-media__contents-main-list-item:nth-of-type(9) {
  transition-delay: 0.9s;
}
.p-media__contents-main-list-item:nth-of-type(10) {
  transition-delay: 1s;
}
.p-scroll.is-active .p-media__contents-main-list-item {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-list-item {
    align-items: center;
    flex-direction: row;
    width: 100%;
    margin: 0;
    margin-bottom: 12px;
    padding: 6.5% 6.2%;
  }
}
.--spinoff .p-media__contents-main-list-item {
  width: 24%;
}
@media screen and (max-width: 899px) {
  .--spinoff .p-media__contents-main-list-item {
    width: 100%;
  }
}
.p-media__contents-main-list-item:last-of-type {
  margin-right: 0;
}
.p-media__contents-main-list-item .p-in-image {
  width: 81.5%;
  margin: 0 auto 20px;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-list-item .p-in-image {
    width: 42.6%;
    margin: 0;
    margin-right: 4%;
  }
}
.p-media__contents-main-list-item .p-in-detail {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-list-item .p-in-detail {
    display: block;
    width: 45%;
    text-align: left;
  }
}
.p-media__contents-main-list-item .p-in-detail-head {
  margin-bottom: 10px;
  color: var(--color-black);
  font-size: 1.5rem;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-list-item .p-in-detail-head {
    margin-bottom: 14px;
  }
}
.p-media__contents-main-list-item .p-in-detail-text {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 700;
  color: #c28f62;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-list-item .p-in-detail-text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 700;
  }
}
.p-media__contents-main-list-item .p-in-detail .p-in-link {
  margin-top: auto;
}
.p-media__contents-main-list-item .p-in-detail .p-in-link-item {
  width: 62%;
  margin: 0 auto 10px;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-list-item .p-in-detail .p-in-link-item {
    width: 100%;
  }
}
.p-media__contents-main-list-item .p-in-detail .p-in-link-item:last-of-type {
  margin-bottom: 0;
}
.p-media__contents-main-list-item .p-in-detail .p-in-link-item .p-link__text {
  padding: 10px;
}
.p-media__contents-main-about {
  display: flex;
  justify-content: space-between;
  width: 74.5%;
  margin: 0 auto;
  padding: 5% 8.2%;
  border-radius: 15px;
  background-color: var(--color-white);
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.7s var(--ease-main) 0.1s, opacity 0.7s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-media__contents-main-about {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-about {
    display: block;
    width: 100%;
    padding: 11.6% 5.8%;
  }
}
.p-media__contents-main-about-image {
  width: 48%;
}
.p-media__contents-main-about-image img {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-about-image {
    width: 100%;
  }
}
.p-media__contents-main-about-detail {
  width: 44.3%;
  margin-top: 7%;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-about-detail {
    width: 100%;
    margin-top: 14px;
  }
}
.p-media__contents-main-about-detail .p-in-head {
  margin-bottom: 10px;
  color: var(--color-black);
  font-size: 1.5rem;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-about-detail .p-in-head {
    text-align: center;
  }
}
.p-media__contents-main-about-detail .p-in-detail {
  font-size: 1.5rem;
  letter-spacing: -0.06em;
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 700;
  color: #c28f62;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-about-detail .p-in-detail {
    text-align: center;
  }
}
.p-media__contents-main-about-detail .p-in-detail .u-caution {
  display: block;
  font-size: 1.1rem;
  color: #ffb5b7;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-about-detail .p-in-detail .u-caution {
    text-align: center;
  }
}
.p-media__contents-main-about-detail .p-in-link-item {
  width: 190px;
}
@media screen and (max-width: 899px) {
  .p-media__contents-main-about-detail .p-in-link-item {
    width: 62%;
    margin: 0 auto;
  }
}
.p-media__contents-arrow {
  width: 42px;
  margin: 18px auto;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.7s var(--ease-main) 0.1s, opacity 0.7s var(--ease-main) 0.1s;
}
.p-scroll.is-active .p-media__contents-arrow {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-media__contents-arrow {
    margin: 34px auto 36px;
  }
}

.p-footer {
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}

.p-footer__inner {
  display: flex;
  justify-content: space-between;
  padding: 60px 3.5% 50px;
}
@media screen and (max-width: 899px) {
  .p-footer__inner {
    display: block;
    padding: 77px 3.5% 30px;
  }
}

@media screen and (max-width: 899px) {
  .p-footer__block {
    margin-bottom: 40px;
  }
  .p-footer__block:last-of-type {
    margin-bottom: 0;
  }
}

.p-footer__share {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 899px) {
  .p-footer__share {
    display: block;
    margin-bottom: 40px;
  }
}
.p-footer__share-title {
  margin-right: 30px;
  color: #bf8f64;
  font-size: 1.2rem;
}
@media screen and (max-width: 899px) {
  .p-footer__share-title {
    margin-bottom: 14px;
    margin-right: 0;
    font-size: 1.2rem;
    text-align: center;
  }
}
.p-footer__share-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .p-footer__share-list {
    justify-content: center;
  }
}
.p-footer__share-list-item {
  width: 32px;
  height: 32px;
  margin-right: 35px;
  transition: opacity 0.5s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-footer__share-list-item:hover {
    opacity: 0.6;
  }
}
.p-footer__share-list-item:last-of-type {
  margin-right: 0;
}
.p-footer__share-list-item svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #bf8f64;
  fill-rule: evenodd;
}

.p-footer__official {
  width: 190px;
}
@media screen and (max-width: 899px) {
  .p-footer__official {
    width: 55%;
    margin: 0 auto;
  }
}
.p-footer__link {
  margin-bottom: 20px;
}
@media screen and (max-width: 899px) {
  .p-footer__link {
    margin-bottom: 38px;
  }
}
.p-footer__link-list {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 899px) {
  .p-footer__link-list {
    justify-content: center;
  }
}
.p-footer__link-list-item {
  padding-left: 18px;
  font-size: 1.2rem;
  position: relative;
  transition: opacity 0.5s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-footer__link-list-item:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 899px) {
  .p-footer__link-list-item {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 899px) {
  .p-footer__link-list-item:first-of-type {
    padding-left: 0;
  }
}
.p-footer__link-list-item:first-of-type::before {
  display: none;
}
.p-footer__link-list-item::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  background-color: #bf8f64;
}
.p-footer__link-list-item a {
  display: block;
  color: #bf8f64;
}

.p-footer__copy {
  text-align: right;
  color: #bf8f64;
  line-height: 1.26;
  font-size: 1.1rem;
}
@media screen and (max-width: 899px) {
  .p-footer__copy {
    text-align: center;
  }
}