@charset "UTF-8";
:root {
  --svh: 100vh;
  --color-text: var(--color-gray);
  --color-bg: var(--color-white);
  --color-black: #000;
  --color-white: #fff;
  --color-sky: #37b9e7;
  --color-yellow: #ffebb9;
  --color-pink: #f59baf;
  --color-gray: #61686a;
  --color-pearl: #ccd9dd;
  --color-shadow: rgba(203, 212, 212, 0.5);
  --ease_out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease_inout: cubic-bezier(0.65, 0, 0.35, 1);
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
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, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  width: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: 0.05rem;
  color: var(--color-text);
  background: var(--color-bg);
  overflow: hidden;
  font-family: "Zen Kaku Gothic New", -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%;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
}

a {
  color: var(--color-text);
  position: relative;
  text-decoration: none;
}

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

* {
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
*::before, *::after {
  box-sizing: border-box;
}
*:focus-visible {
  outline: 1px solid var(--color-black) !important;
}

input, select, textarea {
  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;
}

button {
  font-size: 1.6rem;
  line-height: 1.3;
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ol, ul {
  list-style: none;
}

@media screen and (min-width: 961px) {
  .is-sp {
    display: none !important;
  }
  .is-sp-inline {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .sp-inline {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .is-pc {
    display: none !important;
  }
  .is-pc-inline {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .pc-inline {
    display: none !important;
  }
}
@media screen and (orientation: landscape) {
  .is-port {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .is-land {
    display: none !important;
  }
}
img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}
img::-moz-selection {
  background: none;
}
img::selection {
  background: none;
}
img[height] {
  height: auto !important;
}

[data-prefix]::before {
  content: attr(data-prefix);
}

[data-suffix]::after {
  content: attr(data-suffix);
}

.l-wrap {
  display: block;
  position: relative;
  background: url("../img/bg.gif") repeat 50% 0/30px auto;
}
@media screen and (max-width: 960px) {
  .l-wrap {
    background-size: 15px auto;
  }
}
.l-wrap__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg_deco-flower.png") repeat-y center top/100% auto;
  transition: background-position 1s ease-out;
}
@media screen and (max-width: 960px) {
  .l-wrap__bg {
    background: url("../img/bg_deco-flower_sp.png") repeat-y center top/100% auto;
  }
}
.l-wrap__loader {
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 1;
}
.is-load .l-wrap__loader {
  opacity: 0;
  transition: opacity 1s var(--ease_out);
}
.is-loaded .l-wrap__loader {
  display: none;
}
.l-wrap__loader-deco {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0%;
}
.is-loading .l-wrap__loader-deco {
  animation: loading_movie 10s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-loading .l-wrap__loader-deco {
    animation-duration: 5s;
  }
}
@keyframes loading_movie {
  0% {
    left: 0;
    top: 0;
  }
  25% {
    left: 100%;
    top: 0;
  }
  50% {
    left: 100%;
    top: 100%;
  }
  75% {
    left: 0;
    top: 100%;
  }
  100% {
    left: 0;
    top: 0;
  }
}
.l-wrap__loader-img {
  width: 12rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform-origin: center bottom;
  transform: translate(-50%, 0) rotate(180deg);
}
@media screen and (max-width: 960px) {
  .l-wrap__loader-img {
    width: 6rem;
  }
}
.is-loading .l-wrap__loader-img {
  animation: loading_chara 10s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-loading .l-wrap__loader-img {
    animation-duration: 5s;
  }
}
@keyframes loading_chara {
  0% {
    transform: translate(-50%, 0) rotate(-180deg);
  }
  24.5% {
    transform: translate(-50%, 0) rotate(-180deg);
  }
  25.5% {
    transform: translate(-50%, 0) rotate(-90deg);
  }
  49.5% {
    transform: translate(-50%, 0) rotate(-90deg);
  }
  50.5% {
    transform: translate(-50%, 0) rotate(0);
  }
  74.5% {
    transform: translate(-50%, 0) rotate(0);
  }
  75.5% {
    transform: translate(-50%, 0) rotate(90deg);
  }
  99.5% {
    transform: translate(-50%, 0) rotate(90deg);
  }
  100% {
    transform: translate(-50%, 0) rotate(180deg);
  }
}
.l-wrap__container {
  display: block;
  position: relative;
  opacity: 0;
}
.is-load .l-wrap__container {
  opacity: 1;
  transition: opacity 1s var(--ease_inout);
}

.l-main {
  min-height: var(--svh);
  display: block;
  position: relative;
}

.l-header {
  display: block;
  position: relative;
  z-index: 1;
}

.l-footer {
  display: block;
  position: relative;
}
.l-footer__deco {
  width: 12.8rem;
  display: block;
  position: absolute;
  bottom: 0;
  right: 2.4rem;
}
@media screen and (max-width: 960px) {
  .l-footer__deco {
    width: 10rem;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.l-footer__container {
  width: 100%;
  display: block;
  position: relative;
  padding: 6rem 0 10rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-footer__container {
    padding: 0.5rem 0 11rem;
  }
}
.l-footer__brand {
  width: 27rem;
  display: block;
  position: relative;
  margin: 0 auto 3.4rem;
}
@media screen and (max-width: 960px) {
  .l-footer__brand {
    width: 20rem;
    margin-bottom: 2.9rem;
  }
}
.l-footer__brand-link {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__brand-link {
    transition: opacity 0.4s var(--ease_out);
  }
  .l-footer__brand-link:hover {
    opacity: 0.6;
  }
}
.l-footer__share {
  display: block;
  position: relative;
}
.l-footer__help {
  display: block;
  position: relative;
  margin-top: 4.1rem;
}
@media screen and (max-width: 960px) {
  .l-footer__help {
    margin-top: 2.4rem;
  }
}
.l-footer__legal {
  display: block;
  position: relative;
  margin-top: 2.6rem;
}
.l-footer__legal-text {
  display: block;
  position: relative;
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-footer__legal-text {
    font-size: 1rem;
  }
}
.l-footer__legal-text + .l-footer__legal-text {
  margin-top: 0.5rem;
}
@media screen and (max-width: 960px) {
  .l-footer__legal-text + .l-footer__legal-text {
    margin-top: 0.7rem;
  }
}

.l-footer_share {
  display: block;
  position: relative;
}
.l-footer_share__cap {
  display: block;
  position: relative;
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Poppins", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-footer_share__cap {
    margin-bottom: 1.4rem;
    font-size: 1.3rem;
  }
}
.l-footer_share__list {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1.4rem;
}
@media screen and (max-width: 960px) {
  .l-footer_share__list {
    gap: 1.5rem;
  }
}
.l-footer_share__list-item {
  display: block;
  position: relative;
}
.l-footer_share__link {
  width: 6rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer_share__link {
    width: 7rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer_share__link:hover {
    transform: rotate(360deg);
    transition: transform 0.5s var(--ease_inout);
  }
}

.l-footer_help {
  display: block;
  position: relative;
}
.l-footer_help__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer_help__list {
    gap: 1.8rem 0.5rem;
  }
}
.l-footer_help__list-item {
  display: block;
  position: relative;
}
.l-footer_help__link {
  width: 20rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 20rem;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .l-footer_help__link {
    width: 15rem;
    height: 3.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer_help__link {
    transition: background-color 0.5s var(--ease_out), color 0.5s var(--ease_out);
  }
  .l-footer_help__link:hover {
    color: var(--color-white);
    background-color: var(--color-pink);
  }
}
.l-footer_help__link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-pearl);
  border-radius: 20rem;
}
.l-footer_help__link-text {
  display: block;
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 0;
  font-family: "Poppins", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 960px) {
  .l-footer_help__link-text {
    font-size: 1.2rem;
  }
}

.p-hero {
  display: block;
  position: relative;
  background: url("../img/main/bg_deco-main.jpg") no-repeat center/cover;
}
@media screen and (max-width: 960px) {
  .p-hero {
    background: url("../img/main/bg_deco-main_sp.jpg") no-repeat center/cover;
  }
}
.p-hero::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/main/bg_deco-flower.png") no-repeat center/100% auto;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-hero::before {
    background: url("../img/main/bg_deco-flower_sp.png") no-repeat center/cover;
  }
}
.p-hero::after {
  content: "";
  width: 400rem;
  padding-top: 4.8rem;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  background: url("../img/main/bg_deco-bottom.png") no-repeat center top/100% auto;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-hero::after {
    width: 100%;
    background: url("../img/main/bg_deco-bottom_sp.png") no-repeat center top/100% auto;
  }
}
.p-hero__container {
  width: 100%;
  max-width: 140rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  opacity: 0;
  -webkit-mask: url("../img/mask.png") no-repeat 0 0/110% 1800%;
  mask: url("../img/mask.png") no-repeat 0 0/110% 1800%;
}
@media screen and (min-width: 961px) {
  .p-hero__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-hero__container {
    padding: 2rem 0 4rem;
  }
}
@media screen and (max-width: 960px) {
  .p-hero__container {
    -webkit-mask: url("../img/mask.png") no-repeat 0 0/250% 1800%;
    mask: url("../img/mask.png") no-repeat 0 0/250% 1800%;
  }
}
.is-load .p-hero__container {
  opacity: 1;
  transition: opacity 0.8s var(--ease_inout);
  animation: mask 2s steps(17, end) forwards;
}
@keyframes mask {
  0% {
    -webkit-mask-position: 50% 0;
    mask-position: 50% 0;
  }
  100% {
    -webkit-mask-position: 50% 100%;
    mask-position: 50% 100%;
  }
}
.p-hero__container::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0.5%;
  left: 0;
  background: url("../img/main/bg_deco-item.png") no-repeat right 2% bottom 0%/18.8% auto;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-hero__container::before {
    background: url("../img/main/bg_deco-item.png") no-repeat right 5% bottom 0%/35% auto;
  }
}
.p-hero__header {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-hero__header {
    width: 77rem;
  }
}
@media screen and (max-width: 960px) {
  .p-hero__header {
    width: 90%;
    margin: 0 auto 1.5rem;
  }
}
.p-hero__kv {
  width: 100%;
  display: block;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-hero__kv {
    border-radius: 0.9rem;
  }
}
.p-hero__kv-img {
  display: block;
  position: relative;
}
.p-hero__kv-img img {
  width: 100%;
}
.p-hero__inner {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-hero__inner {
    flex: 1 1 0;
    min-width: 0;
    padding-top: 2%;
  }
}
.p-hero__title {
  width: 95%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-hero__title {
    width: 100%;
  }
}
.p-hero__release {
  width: 97%;
  display: block;
  position: relative;
  margin: 4% auto;
  left: 1.5%;
}
@media screen and (max-width: 960px) {
  .p-hero__release {
    width: 100%;
    left: 0;
    margin: 4% auto 0;
  }
}

.p-package {
  display: block;
  position: relative;
}
.p-package__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 5.6rem 0;
}
@media screen and (max-width: 960px) {
  .p-package__container {
    padding: 5.6rem 0 3rem;
  }
}
.p-package__inner {
  display: block;
  position: relative;
}
.p-package__list {
  display: block;
  position: relative;
}
.p-package__list-item {
  display: block;
  position: relative;
}
.p-package__list-item + .p-package__list-item {
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .p-package__list-item + .p-package__list-item {
    margin-top: 3rem;
  }
}

.p-package_content {
  width: 90%;
  max-width: 112rem;
  display: block;
  position: relative;
  padding: 6rem;
  margin: 0 auto;
  background-color: var(--color-white);
  z-index: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
  transform-origin: center top;
  box-shadow: 0 3rem 5rem 3rem var(--color-shadow);
}
@media screen and (max-width: 960px) {
  .p-package_content {
    padding: 2rem 2.8rem 4.1rem;
  }
}
.is-active .p-package_content {
  opacity: 1;
  transform: scale3d(1.001, 1.001, 1.001);
  box-shadow: 0 1rem 1.5rem 0 var(--color-shadow);
  transition: opacity 0.8s var(--ease_inout), box-shadow 1s var(--ease_out), transform 0.7s var(--ease_out);
}
.p-package_content::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: -1rem;
  left: 0;
  pointer-events: none;
  background: url("../img/package/bg_deco-pin.png") no-repeat left 0.6% top 0/3.2rem auto, url("../img/package/bg_deco-pin.png") no-repeat right 0.4% top 0/3.2rem auto;
  opacity: 0;
  transform: scale3d(1.001, 1.05, 1.05);
}
@media screen and (max-width: 960px) {
  .p-package_content::before {
    top: -1.5rem;
    background: url("../img/package/bg_deco-pin.png") no-repeat left 1.4% top 0/1.7rem auto, url("../img/package/bg_deco-pin.png") no-repeat right 0.4% top 0/1.7rem auto;
  }
}
.is-active .p-package_content::before {
  opacity: 1;
  transform: scale3d(1.001, 1.001, 1.001);
  transition: opacity 0.4s var(--ease_inout) 0.6s, transform 0.4s var(--ease_out) 0.6s;
}
.p-package_content__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-package_content__container {
    display: grid;
    grid-template-columns: 44rem auto;
    gap: 3rem 6rem;
  }
}
.p-package_content__header {
  min-width: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-package_content__header {
    width: 78%;
    margin: 0 auto 3rem;
  }
}
.p-package_content__thumb {
  display: block;
  position: relative;
}
.p-package_content__thumb-img {
  display: block;
  position: relative;
}
.p-package_content__inner {
  min-width: 0;
  display: block;
  position: relative;
}
.p-package_content__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0 0.6rem 0 0;
  font-size: 5rem;
  line-height: 0.9;
  letter-spacing: 0.2rem;
  color: var(--color-sky);
}
@media screen and (max-width: 960px) {
  .p-package_content__title {
    padding: 0 1rem;
    font-size: 3rem;
    letter-spacing: 0.1rem;
    margin: 0 auto;
  }
}
.p-package_content__title::before {
  content: "";
  width: 100%;
  height: 2.5rem;
  display: block;
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  background-color: var(--color-yellow);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .p-package_content__title::before {
    height: 1rem;
    bottom: -0.5rem;
  }
}
.p-package_content__release {
  display: block;
  position: relative;
  margin-top: 1.6rem;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-pink);
}
@media screen and (max-width: 960px) {
  .p-package_content__release {
    margin-top: 0.7rem;
    font-size: 2.4rem;
    text-align: center;
  }
}
.p-package_content__release small {
  font-size: 0.7em;
}
.p-package_content__data {
  display: block;
  position: relative;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 961px) {
  .p-package_content__data {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (max-width: 960px) {
  .p-package_content__data {
    margin-top: 1.8rem;
  }
}
.p-package_content__data + .p-package_content__data {
  margin-top: 1.1rem;
}
.p-package_content__data-cap {
  min-width: 17.5rem;
  display: block;
  position: relative;
  padding: 0.3rem 0.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  color: var(--color-white);
  background-color: var(--color-sky);
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-package_content__data-cap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 13rem;
    padding: 0.2rem 0.1rem;
    margin: 0 auto 0.4rem;
    font-size: 1.1rem;
  }
}
.p-package_content__data-text {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-package_content__data-text {
    font-size: 1.15rem;
    letter-spacing: 0;
    text-align: center;
  }
}
.p-package_content__detail {
  display: block;
  position: relative;
  margin-top: 3rem;
  padding: 3rem 0 2.8rem;
}
@media screen and (max-width: 960px) {
  .p-package_content__detail {
    margin-top: 2.9rem;
    padding: 2.6rem 0;
  }
}
.p-package_content__detail:last-child {
  padding-bottom: 0;
}
.p-package_content__detail + .p-package_content__detail {
  margin-top: 0;
}
.p-package_content__detail::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid var(--color-pearl);
}
.p-package_content__detail-cap {
  display: block;
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--color-sky);
}
@media screen and (max-width: 960px) {
  .p-package_content__detail-cap {
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
  }
}
.p-package_content__detail-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-package_content__detail-text {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.p-package_content__footer {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-package_content__footer {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 960px) {
  .p-package_content__footer {
    margin-top: 3rem;
  }
}
.p-package_content__btn {
  width: 40rem;
  min-height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background-color: var(--color-sky);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-package_content__btn {
    width: 100%;
    min-height: 6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-package_content__btn {
    transition: background-color 0.35s var(--ease_out);
  }
  .p-package_content__btn:hover {
    background-color: var(--color-pink);
  }
}
.p-package_content__btn-icon {
  width: 4.5rem;
  display: block;
  position: absolute;
  top: 48%;
  left: 5.35rem;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-package_content__btn-icon {
    width: 3.5rem;
    top: 50%;
    left: 3.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-package_content__btn:hover .p-package_content__btn-icon img {
    animation: lock 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
@keyframes lock {
  10% {
    transform: rotate(2.5deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  30% {
    transform: rotate(8deg);
  }
  40% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0);
  }
}
.p-package_content__btn-text {
  display: block;
  position: relative;
  font-size: 2rem;
}
@media screen and (max-width: 960px) {
  .p-package_content__btn-text {
    font-size: 1.4rem;
  }
}

.p-special {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 5.2rem 0;
}
@media screen and (max-width: 960px) {
  .p-special {
    padding: 3rem 0;
  }
}
.p-special__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-special__container + .p-special__container {
  margin-top: 11.8rem;
}
@media screen and (max-width: 960px) {
  .p-special__container + .p-special__container {
    margin-top: 6rem;
  }
}
.p-special__header {
  display: block;
  position: relative;
  margin-bottom: 4rem;
}
.p-special__title {
  width: 75rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-special__title {
    width: 100%;
  }
}
.p-special__inner {
  display: block;
  position: relative;
}
.p-special__content {
  display: block;
  position: relative;
}
.p-special__content-item {
  display: block;
  position: relative;
}
.p-special__content-item + .p-special__content-item {
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .p-special__content-item + .p-special__content-item {
    margin-top: 4rem;
  }
}
.p-special__shop {
  display: block;
  position: relative;
}
.p-special__shop-item {
  display: block;
  position: relative;
}
.p-special__shop-item + .p-special__shop-item {
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .p-special__shop-item + .p-special__shop-item {
    margin-top: 4rem;
  }
}
.p-special__note {
  display: block;
  position: relative;
  margin-top: 3rem;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.95;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-special__note {
    margin-top: 2.6rem;
    font-size: 0.9rem;
    letter-spacing: 0;
  }
}

.p-special_content {
  width: 90%;
  max-width: 112rem;
  display: block;
  position: relative;
  padding: 6rem;
  margin: 0 auto;
  background-color: var(--color-white);
  box-shadow: 0 1rem 1.5rem 0 var(--color-shadow);
  z-index: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
  transform-origin: center top;
  box-shadow: 0 3rem 5rem 3rem var(--color-shadow);
}
@media screen and (max-width: 960px) {
  .p-special_content {
    padding: 2rem 2.8rem 4.1rem;
  }
}
.is-active .p-special_content {
  opacity: 1;
  transform: scale3d(1.001, 1.001, 1.001);
  box-shadow: 0 1rem 1.5rem 0 var(--color-shadow);
  transition: opacity 0.8s var(--ease_inout), box-shadow 1s var(--ease_out), transform 0.7s var(--ease_out);
}
.p-special_content::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: -1rem;
  left: 0;
  pointer-events: none;
  background: url("../img/novelty/bg_deco-pin.png") no-repeat left 0.6% top 0/3.2rem auto, url("../img/novelty/bg_deco-pin.png") no-repeat right 0.4% top 0/3.2rem auto;
  opacity: 0;
  transform: scale3d(1.001, 1.05, 1.05);
}
@media screen and (max-width: 960px) {
  .p-special_content::before {
    top: -1.5rem;
    background: url("../img/novelty/bg_deco-pin.png") no-repeat left 1.4% top 0/1.7rem auto, url("../img/novelty/bg_deco-pin.png") no-repeat right 0.4% top 0/1.7rem auto;
  }
}
.is-active .p-special_content::before {
  opacity: 1;
  transform: scale3d(1.001, 1.001, 1.001);
  transition: opacity 0.4s var(--ease_inout) 0.6s, transform 0.4s var(--ease_out) 0.6s;
}
.p-special_content__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-special_content__container {
    display: grid;
    grid-template-columns: 44rem auto;
    gap: 3rem 6rem;
  }
}
.p-special_content__header {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-special_content__header {
    width: 78%;
    margin: 0 auto 2.2rem;
  }
}
.p-special_content__thumb {
  display: block;
  position: relative;
}
.p-special_content__thumb-img {
  display: block;
  position: relative;
}
.p-special_content__inner {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-special_content__inner {
    top: -0.2em;
  }
}
.p-special_content__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0 0.6rem 0 0;
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0.2rem;
  color: var(--color-sky);
}
@media screen and (max-width: 960px) {
  .p-special_content__title {
    padding: 0 1rem;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.1rem;
    margin: 0 auto;
  }
}
.p-special_content__title::before {
  content: "";
  width: 100%;
  height: 2.5rem;
  display: block;
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  background-color: var(--color-yellow);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .p-special_content__title::before {
    height: 1rem;
    bottom: -0.5rem;
  }
}
.p-special_content__text {
  display: block;
  position: relative;
  margin-top: 4rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-special_content__text {
    margin-top: 2rem;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.p-special_content__detail {
  display: block;
  position: relative;
  margin-top: 3rem;
}
@media screen and (max-width: 960px) {
  .p-special_content__detail {
    margin-top: 1.6rem;
  }
}
.p-special_content__detail-cap {
  display: block;
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--color-sky);
}
@media screen and (max-width: 960px) {
  .p-special_content__detail-cap {
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
  }
}
.p-special_content__detail-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-special_content__detail-text {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.p-special_content__footer {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-special_content__footer {
    grid-column: 1/-1;
  }
}
.p-special_content__btn {
  width: 40rem;
  min-height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background-color: var(--color-sky);
  border-radius: 20rem;
}
@media (hover: hover) and (pointer: fine) {
  .p-special_content__btn {
    transition: background-color 0.35s var(--ease_out);
  }
  .p-special_content__btn:hover {
    background-color: var(--color-pink);
  }
}
.p-special_content__btn-icon {
  width: 4.5rem;
  display: block;
  position: absolute;
  top: 48%;
  left: 5.35rem;
  transform: translate(-50%, -50%);
}
.p-special_content__btn-text {
  display: block;
  position: relative;
  font-size: 2rem;
}

.p-special_shop {
  width: 90%;
  max-width: 112rem;
  display: block;
  position: relative;
  padding: 5.4rem 6rem;
  margin: 0 auto;
  background-color: var(--color-white);
  box-shadow: 0 1rem 1.5rem 0 var(--color-shadow);
  z-index: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
  transform-origin: center top;
  box-shadow: 0 3rem 5rem 3rem var(--color-shadow);
}
@media screen and (max-width: 960px) {
  .p-special_shop {
    padding: 2rem 2.8rem 4.1rem;
  }
}
.is-active .p-special_shop {
  opacity: 1;
  transform: scale3d(1.001, 1.001, 1.001);
  box-shadow: 0 1rem 1.5rem 0 var(--color-shadow);
  transition: opacity 0.8s var(--ease_inout), box-shadow 1s var(--ease_out), transform 0.7s var(--ease_out);
}
.p-special_shop::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: -1rem;
  left: 0;
  pointer-events: none;
  background: url("../img/novelty/bg_deco-pin.png") no-repeat left 0.6% top 0/3.2rem auto, url("../img/novelty/bg_deco-pin.png") no-repeat right 0.4% top 0/3.2rem auto;
  opacity: 0;
  transform: scale3d(1.001, 1.05, 1.05);
}
@media screen and (max-width: 960px) {
  .p-special_shop::before {
    top: -1.5rem;
    background: url("../img/novelty/bg_deco-pin.png") no-repeat left 1.4% top 0/1.7rem auto, url("../img/novelty/bg_deco-pin.png") no-repeat right 0.4% top 0/1.7rem auto;
  }
}
.is-active .p-special_shop::before {
  opacity: 1;
  transform: scale3d(1.001, 1.001, 1.001);
  transition: opacity 0.4s var(--ease_inout) 0.6s, transform 0.4s var(--ease_out) 0.6s;
}
.p-special_shop__container {
  width: 100%;
  display: block;
  position: relative;
}
.p-special_shop__header {
  display: block;
  position: relative;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 960px) {
  .p-special_shop__header {
    margin-bottom: 3rem;
  }
}
.p-special_shop__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0 0.6rem 0 0;
  font-size: 3.2rem;
  line-height: 1.3;
  letter-spacing: 0.2rem;
  color: var(--color-sky);
}
@media screen and (max-width: 960px) {
  .p-special_shop__title {
    padding: 0 0.4rem;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.1rem;
    margin: 0 auto;
  }
}
.p-special_shop__title small {
  font-size: 0.7em;
  letter-spacing: 0.1rem;
}
.p-special_shop__title::before {
  content: "";
  width: 100%;
  height: 2.5rem;
  display: block;
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  background-color: var(--color-yellow);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .p-special_shop__title::before {
    height: 1rem;
    bottom: -0.11rem;
  }
}
.p-special_shop__inner {
  display: block;
  position: relative;
}
.p-special_shop__list {
  width: 100%;
  max-width: 92rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.2rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-special_shop__list {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.p-special_shop__list-item {
  display: block;
  position: relative;
}
.p-special_shop__text {
  display: block;
  position: relative;
  margin-top: 4rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 1.8;
}
.p-special_shop__detail {
  display: block;
  position: relative;
  margin-top: 3rem;
}
.p-special_shop__detail-cap {
  display: block;
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--color-sky);
}
.p-special_shop__detail-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 1.5;
}
.p-special_shop__footer {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-special_shop__footer {
    grid-column: 1/-1;
  }
}
.p-special_shop__btn {
  width: 40rem;
  min-height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background-color: var(--color-sky);
  border-radius: 20rem;
}
@media (hover: hover) and (pointer: fine) {
  .p-special_shop__btn {
    transition: background-color 0.35s var(--ease_out);
  }
  .p-special_shop__btn:hover {
    background-color: var(--color-pink);
  }
}
.p-special_shop__btn-icon {
  width: 4.5rem;
  display: block;
  position: absolute;
  top: 48%;
  left: 5.35rem;
  transform: translate(-50%, -50%);
}
.p-special_shop__btn-text {
  display: block;
  position: relative;
  font-size: 2rem;
}

.p-special_shop_data {
  display: block;
  position: relative;
}
.p-special_shop_data__thumb {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto 2.4rem;
}
@media screen and (max-width: 960px) {
  .p-special_shop_data__thumb {
    width: 78%;
    margin: 0 auto 1.8rem;
  }
}
.p-special_shop_data__thumb-img {
  display: block;
  position: relative;
}
.p-special_shop_data__title {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-sky);
}
@media screen and (max-width: 960px) {
  .p-special_shop_data__title {
    margin-bottom: 0.6rem;
    font-size: 1.6rem;
  }
}
.p-special_shop_data__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-special_shop_data__text {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.u-text-indent {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.u-ta-center {
  text-align: center !important;
}

.u-display-block {
  display: block !important;
}

.u-display-inline-block {
  display: inline-block !important;
}

.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-fw-lighter {
  font-weight: lighter !important;
}

.u-fw-normal {
  font-weight: normal !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

.u-fs-1 {
  font-size: 0.1em;
}

.u-fs-2 {
  font-size: 0.2em;
}

.u-fs-3 {
  font-size: 0.3em;
}

.u-fs-4 {
  font-size: 0.4em;
}

.u-fs-5 {
  font-size: 0.5em;
}

.u-fs-6 {
  font-size: 0.6em;
}

.u-fs-7 {
  font-size: 0.7em;
}

.u-fs-8 {
  font-size: 0.8em;
}

.u-fs-9 {
  font-size: 0.9em;
}

.u-fs-10 {
  font-size: 1em;
}

.u-fs-11 {
  font-size: 1.1em;
}

.u-fs-12 {
  font-size: 1.2em;
}

.u-fs-13 {
  font-size: 1.3em;
}

.u-fs-14 {
  font-size: 1.4em;
}

.u-fs-15 {
  font-size: 1.5em;
}

.u-fs-16 {
  font-size: 1.6em;
}

.u-fs-17 {
  font-size: 1.7em;
}

.u-fs-18 {
  font-size: 1.8em;
}

.u-fs-19 {
  font-size: 1.9em;
}

.u-fs-20 {
  font-size: 2em;
}

.u-color-white {
  color: var(--color-white);
}

.u-color-black {
  color: var(--color-black);
}

.u-lazy {
  min-height: 10rem;
  opacity: 0;
}
.u-lazy.is-lazy-loaded {
  opacity: 1;
  min-height: auto;
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}
.u-lazy__loader {
  height: 4rem;
  width: 4rem;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 25;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  pointer-events: none;
}
.is-lazy-loading + .u-lazy__loader {
  display: block;
}
.u-lazy__loader::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top: 2px solid var(--color-black);
  pointer-events: none;
}
.is-lazy-loading + .u-lazy__loader::before {
  content: "";
  animation: rotate 0.6s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes arrow {
  0% {
    opacity: 1;
    transform: translate(0, 0);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(1rem, 0);
  }
  26% {
    opacity: 0;
    transform: translate(-1rem, 0);
  }
  50% {
    opacity: 0;
    transform: translate(-1rem, 0);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes arrow_prev {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(-1rem, 0) scale(-1, 1);
  }
  26% {
    opacity: 0;
    transform: translate(1rem, 0) scale(-1, 1);
  }
  50% {
    opacity: 0;
    transform: translate(1rem, 0) scale(-1, 1);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
  }
}
@keyframes arrow_centerY {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(1rem, -50%);
  }
  26% {
    opacity: 0;
    transform: translate(-1rem, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-1rem, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes arrow_centerY_prev {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(-1rem, -50%);
  }
  26% {
    opacity: 0;
    transform: translate(1rem, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(1rem, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes skeleton_screen {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}