@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 {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-gray: #333;
  --color-black: #000;
  --color-white: #fff;
  --color-pink: #ff9097;
  --color-pink-light: #fff3f4;
  --color-gold: #dcb18c;
  --font-jp: source-han-sans-japanese, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --font-eng: meno-banner, "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
  vertical-align: middle;
}
img[data-src] {
  height: auto !important;
}

.is-sp {
  display: none;
}
@media (max-width: 750px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media (max-width: 750px) {
  .is-pc {
    display: none;
  }
}

.p-wrapper {
  color: var(--color-gray);
  font-family: var(--font-jp);
  font-weight: 400;
  font-feature-settings: "palt";
  overflow: hidden;
}

.p-content {
  position: relative;
  background: url(../img/bg_pattern_pc.jpg) repeat 0 0/600px auto;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.on-load .p-content {
  opacity: 1;
}
@media (max-width: 750px) {
  .p-content {
    background-size: 450px auto;
  }
}
.p-content__head {
  position: relative;
}
.p-content__body {
  padding-top: 87px;
  padding-bottom: 166px;
  transform: translateY(12px);
  opacity: 0;
}
.on-load .p-content__body {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.7s, opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.7s;
}
@media (max-width: 750px) {
  .p-content__body {
    padding-top: 53px;
    padding-bottom: 117px;
    transform: translateY(8px);
  }
}

.p-inner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .p-inner {
    width: 100%;
  }
}

.p-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.on-load .p-loading {
  opacity: 0;
}
.p-loading__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  animation: LoadingRotate 0.8s linear infinite;
}
@keyframes LoadingRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.p-loading__icon svg {
  display: block;
  width: 100%;
}

.p-visual {
  position: relative;
}
.p-visual__bg {
  position: relative;
  -webkit-mask-image: url(../img/main_msk_pc.svg);
  mask-image: url(../img/main_msk_pc.svg);
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media (max-width: 750px) {
  .p-visual__bg {
    -webkit-mask-image: url(../img/main_msk_sp.svg);
    mask-image: url(../img/main_msk_sp.svg);
  }
}
.p-visual__bg::before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  padding-top: 42.8571428571%;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 750px) {
  .p-visual__bg::before {
    padding-top: 144%;
  }
}
.p-visual__bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  opacity: 0.75;
}
.p-visual__scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-visual__scene-item {
  position: absolute;
  width: 33.3333333333%;
}
@keyframes MoveUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes MoveDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@media (max-width: 750px) {
  .p-visual__scene-item {
    width: 50%;
  }
}
.p-visual__scene-item:nth-child(1) {
  top: 0;
  left: 0;
  animation: MoveUp 80s linear infinite;
}
@media (max-width: 750px) {
  .p-visual__scene-item:nth-child(1) {
    animation-duration: 40s;
  }
}
.p-visual__scene-item:nth-child(2) {
  top: 100%;
  left: 33.3333333333%;
  transform: translateY(-100%);
  animation: MoveDown 80s linear infinite;
}
@media (max-width: 750px) {
  .p-visual__scene-item:nth-child(2) {
    left: 50%;
    animation-duration: 40s;
  }
}
.p-visual__scene-item:nth-child(3) {
  top: 0;
  left: 66.6666666667%;
  animation: MoveUp 80s linear infinite;
}
@media (max-width: 750px) {
  .p-visual__scene-item:nth-child(3) {
    display: none;
    animation-duration: 40s;
  }
}
.p-visual__content {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media (max-width: 750px) {
  .p-visual__content {
    top: 50.1%;
  }
}
.p-visual__title {
  width: 48%;
  margin: 0 auto;
  transform: scale(1.1);
  opacity: 0;
}
.on-load .p-visual__title {
  transform: scale(1);
  opacity: 1;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (max-width: 750px) {
  .p-visual__title {
    width: 89.4%;
    transform: scale(1.2);
  }
}
.p-visual__lead {
  margin-top: 2.35%;
  text-align: center;
  color: var(--color-white);
  font-size: min(1.2857142857vw, 36px);
  line-height: 1.77;
  letter-spacing: 0.015em;
  transform: translateY(12px);
  opacity: 0;
}
.on-load .p-visual__lead {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.3s, opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}
@media (max-width: 750px) {
  .p-visual__lead {
    margin-top: 7%;
    font-size: min(3.4666666667vw, 16.9px);
    transform: translateY(8px);
  }
}
.p-visual__supplement {
  margin-top: 0.7%;
  transform: translateY(12px);
  opacity: 0;
}
.on-load .p-visual__supplement {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.5s, opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.5s;
}
@media (max-width: 750px) {
  .p-visual__supplement {
    margin-top: 2%;
    transform: translateY(8px);
  }
}
.p-visual__supplement-list-item {
  text-align: center;
  color: var(--color-white);
  font-size: min(0.8571428571vw, 18px);
  line-height: 1.83;
  letter-spacing: 0.02em;
}
@media (max-width: 750px) {
  .p-visual__supplement-list-item {
    font-size: min(2.9333333333vw, 16.5px);
  }
}
.p-visual__supplement-list-item .p-in-link {
  vertical-align: baseline;
  text-decoration: none;
  color: var(--color-pink);
}
@media (hover: hover) {
  .p-visual__supplement-list-item .p-in-link:hover {
    border-bottom: 1px var(--color-pink) solid;
  }
}

.p-picture__list-item:nth-child(n+2) {
  margin-top: 10px;
}
@media (max-width: 750px) {
  .p-picture__list-item:nth-child(n+2) {
    margin-top: 4px;
  }
}

.p-picture_item {
  position: relative;
  width: 100%;
}
.p-picture_item__head {
  position: relative;
  padding: 29px 40px 25px;
  border: 2px var(--color-pink-light) solid;
  background: var(--color-pink-light);
  transition: border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-picture_item__head:hover {
    border-color: var(--color-pink);
  }
}
@media (max-width: 750px) {
  .p-picture_item__head {
    padding: 19px 5% 21px;
  }
}
.p-picture_item__heading {
  width: 96%;
  color: var(--color-pink);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
}
@media (max-width: 750px) {
  .p-picture_item__heading {
    width: 93%;
    font-size: 13px;
  }
}
.p-picture_item__heading .p-in-story {
  display: inline-block;
  width: 74px;
  vertical-align: baseline;
}
@media (max-width: 750px) {
  .p-picture_item__heading .p-in-story {
    width: 52.5px;
  }
}
.p-picture_item__body {
  position: relative;
  margin-top: 1px;
  background: var(--color-pink-light);
}
.p-picture_item__content {
  width: 91%;
  margin: 0 auto;
  padding-top: 34px;
  padding-bottom: 51px;
}
@media (max-width: 750px) {
  .p-picture_item__content {
    width: 89.5%;
    padding-top: 24px;
    padding-bottom: 31px;
  }
}

.p-picture_download__all-btn {
  width: 68%;
  max-width: 470px;
  margin: 0 auto;
}
.p-picture_download__all-btn-link {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 12px;
  border: 1px var(--color-pink) solid;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-picture_download__all-btn-link:hover {
    background: var(--color-pink);
  }
}
@media (max-width: 750px) {
  .p-picture_download__all-btn-link {
    padding-top: 12px;
  }
}
.p-picture_download__all-btn-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 4%;
  right: 2.3%;
  width: 5.4%;
  height: 100%;
  background: url(../img/icon_dl.svg) no-repeat center center/100% auto;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-picture_download__all-btn-link:hover::before {
    opacity: 0;
  }
}

@media (max-width: 750px) {
  .p-picture_download__all-btn-link::before {
    top: 0;
    right: 6%;
    width: 8.8%;
  }
}
.p-picture_download__all-btn-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 4%;
  right: 2.3%;
  width: 5.4%;
  height: 100%;
  background: url(../img/icon_dl_white.svg) no-repeat center center/100% auto;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-picture_download__all-btn-link:hover::after {
    opacity: 1;
  }
}

@media (max-width: 750px) {
  .p-picture_download__all-btn-link::after {
    top: 0;
    right: 6%;
    width: 8.8%;
  }
}
.p-picture_download__all-btn-text {
  display: block;
  text-align: center;
  color: var(--color-pink);
  font-size: 15px;
  line-height: 1.2;
  transition: color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-picture_download__all-btn-link:hover .p-picture_download__all-btn-text {
    color: var(--color-white);
  }
}
@media (max-width: 750px) {
  .p-picture_download__all-btn-text {
    font-size: 12px;
  }
}
.p-picture_download__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 31px;
}
@media (max-width: 750px) {
  .p-picture_download__list {
    margin-top: 20px;
  }
}
.p-picture_download__list-item {
  width: 19.5%;
  margin-left: 0.625%;
}
@media (max-width: 750px) {
  .p-picture_download__list-item {
    width: 33%;
    margin-left: 0.5%;
  }
}
.p-picture_download__list-item:nth-child(5n-4) {
  margin-left: 0;
}
@media (max-width: 750px) {
  .p-picture_download__list-item:nth-child(5n-4) {
    margin-left: 0;
  }
}
.p-picture_download__list-item:nth-child(n+6) {
  margin-top: 0.625%;
}
@media (max-width: 750px) {
  .p-picture_download__list-item:nth-child(n+6) {
    margin-top: 0;
  }
}
@media (max-width: 750px) {
  .p-picture_download__list-item:nth-child(3n-2) {
    margin-left: 0;
  }
}
@media (max-width: 750px) {
  .p-picture_download__list-item:nth-child(n+4) {
    margin-top: 0.5%;
  }
}
.p-picture_download__thumbnail {
  position: relative;
  width: 100%;
}
.p-picture_download__thumbnail-link {
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-picture_download__thumbnail-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 5%;
  right: 3.4%;
  width: 14.5%;
  padding-top: 14.5%;
  background: url(../img/icon_dl_white.svg) no-repeat center center/100% auto;
}
@media (max-width: 750px) {
  .p-picture_download__thumbnail-link::after {
    right: 1.8%;
  }
}
.p-picture_download__thumbnail-link img {
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-picture_download__thumbnail-link:hover img {
    transform: scale(1.1);
  }
}

.p-rule {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .p-rule {
    width: 89.5%;
    margin: 0 auto;
    margin-top: 60px;
  }
}
.p-rule__title {
  text-align: center;
  color: var(--color-gold);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.07em;
}
@media (max-width: 750px) {
  .p-rule__title {
    font-size: 16px;
  }
}
.p-rule__list {
  margin-top: 42px;
}
@media (max-width: 750px) {
  .p-rule__list {
    margin-top: 24px;
  }
}
.p-rule__list-item {
  padding-left: 0.5em;
  text-indent: -0.5em;
  line-height: 1.69;
  letter-spacing: 0.02em;
}
@media (max-width: 750px) {
  .p-rule__list-item {
    font-size: 12px;
  }
}
.p-rule__list-item:nth-child(n+2) {
  margin-top: 10px;
}
@media (max-width: 750px) {
  .p-rule__list-item:nth-child(n+2) {
    margin-top: 3.5px;
  }
}

.p-footer {
  position: relative;
  background: var(--color-pink-light);
}
.p-footer__wrapper {
  width: 91.5%;
  margin: 0 auto;
  padding-top: 61px;
  padding-bottom: 59px;
}
@media (max-width: 750px) {
  .p-footer__wrapper {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.p-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .p-footer__inner {
    display: block;
  }
}
.p-footer__share {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .p-footer__share {
    display: block;
  }
}
.p-footer__share-heading {
  color: var(--color-gold);
  font-family: var(--font-eng);
  font-size: 13px;
  letter-spacing: 0.1em;
}
@media (max-width: 750px) {
  .p-footer__share-heading {
    text-align: center;
    font-size: 12px;
  }
}
.p-footer__share-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 30px;
}
@media (max-width: 750px) {
  .p-footer__share-list {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    margin-top: 13px;
  }
}
.p-footer__share-list-item {
  width: 30px;
  margin-left: 26px;
}
@media (max-width: 750px) {
  .p-footer__share-list-item {
    width: 6%;
    max-width: 35px;
    margin: 0 3.8%;
  }
}
.p-footer__share-list-item:first-child {
  margin-left: 0;
}
@media (max-width: 750px) {
  .p-footer__share-list-item:first-child {
    margin-left: 3.8%;
  }
}
.p-footer__share-icon {
  display: block;
  position: relative;
}
.p-footer__share-icon > img {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-footer__share-icon:hover > img {
    opacity: 0;
  }
}

.p-footer__share-icon-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-footer__share-icon:hover .p-footer__share-icon-cover {
    opacity: 1;
  }
}
.p-footer__official {
  margin-top: 28px;
}
@media (max-width: 750px) {
  .p-footer__official {
    margin-top: 20px;
  }
}
.p-footer__official-btn {
  box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-footer__official-btn-link {
  display: block;
  position: relative;
  box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px var(--color-pink) solid;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-footer__official-btn-link:hover {
    background: var(--color-pink);
  }
}
@media (max-width: 750px) {
  .p-footer__official-btn-link {
    padding: 0 14.5px;
  }
}
.p-footer__official-btn-text {
  display: block;
  position: relative;
  box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 39px 7px 16px;
  text-align: center;
  color: var(--color-pink);
  font-family: var(--font-eng);
  font-size: 11px;
  letter-spacing: 0.05em;
  transition: color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-footer__official-btn-link:hover .p-footer__official-btn-text {
    color: var(--color-white);
  }
}
@media (max-width: 750px) {
  .p-footer__official-btn-text {
    padding-top: 9.5px;
    padding-bottom: 9.5px;
    padding-right: 35px;
    padding-left: 20px;
  }
}
.p-footer__official-btn-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  width: 16px;
  height: 100%;
  background: url(../img/sns_x_pink.svg) no-repeat center center/100% auto;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-footer__official-btn-link:hover .p-footer__official-btn-text::before {
    opacity: 0;
  }
}

@media (max-width: 750px) {
  .p-footer__official-btn-text::before {
    width: 15px;
  }
}
.p-footer__official-btn-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  width: 16px;
  height: 100%;
  background: url(../img/sns_x_white.svg) no-repeat center center/100% auto;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-footer__official-btn-link:hover .p-footer__official-btn-text::after {
    opacity: 1;
  }
}

@media (max-width: 750px) {
  .p-footer__official-btn-text::after {
    width: 15px;
  }
}
@media (max-width: 750px) {
  .p-footer__help {
    margin-top: 50px;
  }
}
.p-footer__help-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 750px) {
  .p-footer__help-list {
    justify-content: center;
    width: 100%;
  }
}
.p-footer__help-list-item {
  position: relative;
  padding-left: 21px;
  padding-right: 19px;
}
@media (max-width: 750px) {
  .p-footer__help-list-item {
    padding-left: 3.2%;
    padding-right: 3.2%;
  }
}
.p-footer__help-list-item:first-child {
  padding-left: 0;
}
@media (max-width: 750px) {
  .p-footer__help-list-item:last-child {
    padding-right: 0;
  }
}
.p-footer__help-list-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 1px;
  height: 70%;
  background: var(--color-gold);
}
.p-footer__help-list-item:last-child::after {
  content: none;
}

.p-footer__help-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--color-gold);
  font-family: var(--font-eng);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (hover: hover) {
  .p-footer__help-link:hover {
    color: var(--color-pink);
  }
}
@media (max-width: 750px) {
  .p-footer__help-link {
    font-size: min(2.9333333333vw, 14.3px);
  }
}
.p-footer__help-link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: translateY(50%) scaleX(0);
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (hover: hover) {
  .p-footer__help-link:hover::before {
    transform: translateY(50%) scaleX(1);
  }
}

.p-footer__help-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 10px;
  height: 10px;
  background: url(../img/deco_sparkle_gold.svg) no-repeat center center/100% auto;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (hover: hover) {
  .p-footer__help-link:hover::after {
    opacity: 1;
  }
}

.p-footer__copyright {
  margin-top: 21px;
}
.p-footer__copyright-text {
  color: var(--color-gold);
  font-family: var(--font-eng);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
@media (max-width: 750px) {
  .p-footer__copyright-text {
    text-align: center;
  }
}

.js-accordion-btn {
  cursor: pointer;
}
.js-accordion-content {
  height: 0;
  overflow: hidden;
}
.default-open .js-accordion-content {
  height: auto;
}
.js-accordion-icon {
  position: absolute;
  top: 50%;
  right: 31px;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
}
@media (max-width: 750px) {
  .js-accordion-icon {
    right: 15px;
    width: 13px;
    height: 13px;
  }
}
.js-accordion-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-pink);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-open .js-accordion-icon::before {
  opacity: 0;
}
.js-accordion-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  width: 2px;
  height: 100%;
  background: var(--color-pink);
}