@charset "UTF-8";
:root {
  --svh: 100vh;
  --color-text: var(--color-brawn);
  --color-bg: var(--color-white);
  --color-black: #000;
  --color-gray: #bdbdbd;
  --color-white: #fff;
  --color-brawn: #614c3f;
  --color-red: #d85d5f;
  --color-pink: #f086b5;
  --color-pink-bg: #fad4e1;
  --color-pink-frame: #dd9cb2;
  --ease_out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease_inout: cubic-bezier(0.65, 0, 0.35, 1);
  --ease_bounce: cubic-bezier(0.34, 1.56, 0.64, 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;
}
@media screen and (max-width: 960px) {
  html {
    font-size: min(2.6666666667vw, 15px);
  }
}

body {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: 0.15rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  overflow: hidden;
  font-family: "Noto Sans JP", -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: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.15rem;
  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 {
  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;
  padding: 2rem;
  background: var(--color-pink-frame);
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .l-wrap {
    padding: 0.5rem;
  }
}
.is-ready .l-wrap {
  opacity: 1;
  transition: opacity 1.8s var(--ease_inout);
}
.l-wrap::before {
  content: "";
  width: calc(100% - 6rem);
  height: calc(100% - 6rem);
  display: block;
  position: absolute;
  top: 3rem;
  left: 3rem;
  border: 1px solid var(--color-pink-frame);
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .l-wrap::before {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    top: 1rem;
    left: 1rem;
  }
}
.l-wrap::after {
  width: 6rem;
  height: 6rem;
  display: block;
  position: fixed;
  top: calc(50% - 3rem);
  left: calc(50% - 3rem);
  border-radius: 50%;
  border: 0.3rem solid transparent;
  border-top: 0.3rem solid var(--color-pink);
  animation: rotate 0.5s linear infinite;
  animation-play-state: paused;
  z-index: 20;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .l-wrap::after {
    border-width: 0.15rem;
  }
}
.is-loading .l-wrap::after {
  content: "";
  animation-play-state: running;
}
.l-wrap__container {
  min-height: var(--svh);
  display: block;
  position: relative;
  background: url("../img/bg_pattern.jpg") repeat 0 0/50px auto;
}
@media screen and (max-width: 960px) {
  .l-wrap__container {
    background-size: 25px auto;
  }
}

.l-main {
  min-height: 35rem;
  display: block;
  position: relative;
  z-index: 0;
  padding-bottom: 6.7rem;
}
@media screen and (max-width: 960px) {
  .l-main {
    min-height: 19rem;
    padding-bottom: 4rem;
  }
}

.l-footer {
  display: block;
  position: relative;
  color: var(--color-white);
  background: var(--color-brawn);
}
.l-footer__container {
  display: block;
  position: relative;
  padding: 4.5rem 0 6rem;
}
@media screen and (max-width: 960px) {
  .l-footer__container {
    padding: 3.2rem 0 3.5rem;
  }
}
.l-footer__legal {
  display: block;
  position: relative;
}
.l-footer__legal-text {
  display: block;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: 0.15rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-magenta);
}
@media screen and (max-width: 960px) {
  .l-footer__legal-text {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
}
.l-footer__legal-copy {
  display: block;
  position: relative;
  margin-top: 0.7rem;
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: 0.05rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-magenta);
}
@media screen and (max-width: 960px) {
  .l-footer__legal-copy {
    margin-top: 1rem;
    font-size: 0.9rem;
  }
}

.p-top {
  display: block;
  position: relative;
}

.p-hero {
  display: block;
  position: relative;
  opacity: 0;
}
.is-ready .p-hero {
  opacity: 1;
  transition: opacity 1.8s var(--ease_out);
}
.p-hero__brand {
  width: 18rem;
  display: block;
  position: absolute;
  top: 3.4rem;
  left: 3.4rem;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-hero__brand {
    width: 9.8rem;
    top: 1.75rem;
    left: 1.75rem;
  }
}
.p-hero__kv {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-hero__content {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-hero__title {
  display: block;
  position: relative;
  opacity: 0;
}
.is-ready .p-hero__title {
  opacity: 1;
  transition: opacity 0.8s var(--ease_inout);
}

.p-intro {
  display: block;
  position: relative;
  margin-top: 0.8rem;
  padding: 4rem 0;
}
@media screen and (max-width: 960px) {
  .p-intro {
    margin-top: 0.7rem;
    padding: 2rem 0;
  }
}
.p-intro__text {
  display: block;
  position: relative;
  font-size: 1.9rem;
  line-height: 1.9;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-intro__text {
    font-size: 1.3rem;
    line-height: 1.8;
    letter-spacing: 0.05rem;
  }
}

.p-about {
  display: block;
  position: relative;
  margin-top: 0.1rem;
  z-index: 0;
}
.p-about__container {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 960px) {
  .p-about__container {
    width: 92%;
    padding: 3.4rem 0;
  }
}
.p-about__header {
  display: block;
  position: relative;
  margin-bottom: 6.5rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-about__header {
    margin-bottom: 3.4rem;
  }
}
.p-about__title {
  width: 100%;
  max-width: 44rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-about__title {
    width: 22rem;
  }
}
.p-about__inner {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 7.4rem 0 9rem;
  background-color: var(--color-pink-bg);
}
@media screen and (max-width: 960px) {
  .p-about__inner {
    width: 100%;
    padding: 4rem 0 5.3rem;
  }
}
.p-about__inner::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  display: block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-about__inner::before {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    top: 0.5rem;
    left: 0.5rem;
  }
}
.p-about__inner::after {
  content: "";
  width: 100%;
  height: calc(100% + 3.4rem);
  display: block;
  position: absolute;
  top: -1.7rem;
  left: 0;
  pointer-events: none;
  background: url("../img/bg_deco_top_pc.png") no-repeat center top/140rem auto, url("../img/bg_deco_bottom_pc.png") no-repeat center bottom/140rem auto;
}
@media screen and (max-width: 960px) {
  .p-about__inner::after {
    height: calc(100% + 1.6rem);
    top: -0.8rem;
    background: url("../img/bg_deco_top_sp.png") no-repeat center top/33.5rem auto, url("../img/bg_deco_bottom_sp.png") no-repeat center bottom/33.5rem auto;
  }
}
.p-about__cap {
  display: block;
  position: relative;
  margin-bottom: 4.8rem;
  text-align: center;
  color: var(--color-pink);
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-about__cap {
    margin-bottom: 2.8rem;
  }
}
.p-about__cap-main {
  display: block;
  position: relative;
  font-size: 3.5rem;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-about__cap-main {
    font-size: 1.7rem;
  }
}
.p-about__cap-sub {
  display: block;
  position: relative;
  margin-top: 0.8rem;
  font-size: 1.85rem;
  letter-spacing: 0.05rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-about__cap-sub {
    margin-top: 0.6rem;
    font-size: 1rem;
  }
}

.p-about_data {
  width: 90%;
  max-width: 80rem;
  display: block;
  position: relative;
  padding: 2.7rem 0;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-about_data {
    display: grid;
    grid-template-columns: 14rem 1fr;
  }
}
@media screen and (max-width: 960px) {
  .p-about_data {
    width: 89%;
    padding: 1.7rem 0;
  }
}
.p-about_data::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, var(--color-gray), var(--color-gray) 0.9rem, transparent 0.9rem, transparent 0.3rem);
  background-size: 1.2rem 0.1rem;
  background-repeat: repeat-x;
}
.p-about_data:last-child::before {
  border-bottom: 1px solid var(--color-line);
}
.p-about_data__header {
  min-width: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-about_data__header {
    margin-bottom: 0.4rem;
  }
}
.p-about_data__title {
  display: block;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0;
  color: var(--color-pink);
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-about_data__title {
    font-size: 1.3rem;
  }
}
.p-about_data__inner {
  min-width: 0;
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-about_data__inner {
    margin-top: -0.6rem;
  }
}
.p-about_data__cap {
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-about_data__cap {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
.p-about_data__cap small {
  font-size: 0.8em;
}
@media screen and (max-width: 960px) {
  .p-about_data__cap small {
    font-size: 0.7em;
  }
}
.p-about_data__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 960px) {
  .p-about_data__text {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
.p-about_data__text small {
  font-size: 0.8em;
}
.p-about_data__text a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-about_data__text a:hover {
    text-decoration: none;
  }
}
.p-about_data__note {
  display: block;
  position: relative;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  letter-spacing: 0.01rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-about_data__note {
    font-size: 1.1rem;
    margin-top: 0.1rem;
  }
}
.p-about_data__note small {
  font-size: 0.8em;
}
.p-about_data__note a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-about_data__note a:hover {
    text-decoration: none;
  }
}

.p-serial_form {
  display: block;
  position: relative;
  margin-top: 2rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-serial_form {
    margin-top: 0;
  }
}
.p-serial_form__container {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 960px) {
  .p-serial_form__container {
    width: 92%;
    padding: 3.4rem 0 3rem;
  }
}
.p-serial_form__header {
  display: block;
  position: relative;
  margin-bottom: 6rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-serial_form__header {
    margin-bottom: 3.2rem;
  }
}
.p-serial_form__title {
  width: 100%;
  max-width: 44rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-serial_form__title {
    width: 22rem;
  }
}
.p-serial_form__inner {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 7.4rem 0 9rem;
  background-color: var(--color-pink-bg);
}
@media screen and (max-width: 960px) {
  .p-serial_form__inner {
    width: 100%;
    padding: 4rem 0 4.5rem;
  }
}
.p-serial_form__inner::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  display: block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-serial_form__inner::before {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    top: 0.5rem;
    left: 0.5rem;
  }
}
.p-serial_form__inner::after {
  content: "";
  width: 100%;
  height: calc(100% + 3.4rem);
  display: block;
  position: absolute;
  top: -1.7rem;
  left: 0;
  pointer-events: none;
  background: url("../img/bg_deco_top_pc.png") no-repeat center top/140rem auto, url("../img/bg_deco_bottom_pc.png") no-repeat center bottom/140rem auto;
}
@media screen and (max-width: 960px) {
  .p-serial_form__inner::after {
    height: calc(100% + 1.6rem);
    top: -0.8rem;
    background: url("../img/bg_deco_top_sp.png") no-repeat center top/33.5rem auto, url("../img/bg_deco_bottom_sp.png") no-repeat center bottom/33.5rem auto;
  }
}
.p-serial_form__lead {
  display: block;
  position: relative;
  margin-bottom: 5rem;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-serial_form__lead {
    margin-bottom: 3rem;
    font-size: 1.3rem;
  }
}
.p-serial_form__content {
  display: block;
  position: relative;
}
.p-serial_form__field {
  width: 90%;
  max-width: 56rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-serial_form__field {
    width: 88%;
  }
}
.p-serial_form__field + .p-serial_form__field {
  margin-top: 2.8rem;
}
@media screen and (max-width: 960px) {
  .p-serial_form__field + .p-serial_form__field {
    margin-top: 1.5rem;
  }
}
.p-serial_form__field-cap {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-pink);
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-serial_form__field-cap {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
.p-serial_form__field-name {
  display: block;
  position: relative;
}
.p-serial_form__field-input {
  width: 100%;
  display: block;
  position: relative;
  padding: 1.4rem 2rem;
  margin: 0 auto;
  font-size: 16px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  font-weight: 500;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-serial_form__field-input {
    padding: 1rem 1rem;
  }
}
.p-serial_form__field-input[disabled] {
  background: transparent;
}
@media screen and (max-width: 960px) {
  .p-serial_form__field-cap + .p-serial_form__field-input {
    margin-left: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-serial_form__field-input:last-child {
    margin-right: 0;
  }
}
.p-serial_form__field-select {
  width: 100%;
  display: block;
  position: relative;
  padding: 0.6rem 1rem;
  font-size: 16px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-gray);
}
@media screen and (max-width: 960px) {
  .p-serial_form__field-select {
    margin: 1.5rem 0.5rem;
    padding: 0.5rem 1rem;
  }
}
@media screen and (max-width: 960px) {
  .p-serial_form__field-cap + .p-serial_form__field-select {
    margin-left: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-serial_form__field-select:last-child {
    margin-right: 0;
  }
}
.p-serial_form__field-select option {
  color: var(--color-text);
}
.p-serial_form__btn {
  width: 32rem;
  min-height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 3.2rem auto 0;
  color: var(--color-white);
  background: var(--color-pink);
  cursor: pointer;
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-serial_form__btn {
    width: 20rem;
    min-height: 4.5rem;
    margin-top: 2.3rem;
  }
}
.p-serial_form__btn + .p-serial_form__btn {
  margin-top: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .p-serial_form__btn {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-serial_form__btn:hover {
    opacity: 0.7;
  }
}
.p-serial_form__btn.-back {
  color: var(--color-white);
  background: var(--color-pink);
}
.p-serial_form__btn::after {
  content: "";
  width: 0.8rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 2.4rem;
  background: url("../img/arrow_white.png") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .p-serial_form__btn::after {
    width: 0.6rem;
    right: 1.8rem;
  }
}
.p-serial_form__btn-text {
  display: block;
  position: relative;
  padding: 0.4rem 1rem;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-serial_form__btn-text {
    font-size: 1.2rem;
  }
}
.p-serial_form__btn input,
.p-serial_form__btn button {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 1;
  opacity: 0;
  font-size: 0;
}

.p-attention {
  display: block;
  position: relative;
  margin-top: 1.8rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-attention {
    margin-top: 1rem;
  }
}
.p-attention__container {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 960px) {
  .p-attention__container {
    width: 92%;
    padding: 3rem 0;
  }
}
.p-attention__header {
  display: block;
  position: relative;
  margin-bottom: 6.2rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-attention__header {
    margin-bottom: 3.2rem;
  }
}
.p-attention__title {
  width: 100%;
  max-width: 44rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-attention__title {
    width: 22rem;
  }
}
.p-attention__inner {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 7.4rem 0 8.2rem;
  background-color: var(--color-pink-bg);
}
@media screen and (max-width: 960px) {
  .p-attention__inner {
    width: 100%;
    padding: 4rem 0 4rem;
  }
}
.p-attention__inner::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  display: block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-attention__inner::before {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    top: 0.5rem;
    left: 0.5rem;
  }
}
.p-attention__inner::after {
  content: "";
  width: 100%;
  height: calc(100% + 3.4rem);
  display: block;
  position: absolute;
  top: -1.7rem;
  left: 0;
  pointer-events: none;
  background: url("../img/bg_deco_top_pc.png") no-repeat center top/140rem auto, url("../img/bg_deco_bottom_pc.png") no-repeat center bottom/140rem auto;
}
@media screen and (max-width: 960px) {
  .p-attention__inner::after {
    height: calc(100% + 1.6rem);
    top: -0.8rem;
    background: url("../img/bg_deco_top_sp.png") no-repeat center top/33.5rem auto, url("../img/bg_deco_bottom_sp.png") no-repeat center bottom/33.5rem auto;
  }
}
.p-attention__text {
  width: 90%;
  max-width: 80rem;
  display: block;
  position: relative;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}
@media screen and (max-width: 960px) {
  .p-attention__text {
    font-size: 1rem;
  }
}
.p-attention__text span:not(:first-child) {
  margin-top: 0.8em;
}
@media screen and (max-width: 960px) {
  .p-attention__text span:not(:first-child) {
    margin-top: 0.5em;
  }
}
.p-attention__note {
  width: 90%;
  max-width: 80rem;
  display: block;
  position: relative;
  margin: 3rem auto 0;
}
.p-attention__note-cap {
  display: block;
  position: relative;
  font-size: 1.4rem;
  color: var(--color-pink);
  font-weight: 700;
  margin-bottom: 1rem;
}
.p-attention__note-text {
  display: block;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
}
.p-attention__note-text span:not(:first-child) {
  margin-top: 0.5em;
}

.p-form {
  display: block;
  position: relative;
  padding: 1.4rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-form {
    padding: 0.6rem 0 0;
  }
}
.p-form #errors {
  display: block;
  position: relative;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  text-align: center;
  color: var(--color-yellow);
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form #errors {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
}
.p-form__container {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 960px) {
  .p-form__container {
    width: 92%;
    padding: 2.5rem 0;
  }
}
.p-form__header {
  display: block;
  position: relative;
  margin-bottom: 8.6rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-form__header {
    margin-bottom: 4.4rem;
  }
}
.p-form__lead {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 960px) {
  .p-form__lead {
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
    line-height: 1.7;
  }
}
.p-form__note {
  display: block;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-form__note {
    font-size: 1rem;
  }
}
.p-form__inner {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 7.4rem 0 9.2rem;
  background-color: var(--color-pink-bg);
}
@media screen and (max-width: 960px) {
  .p-form__inner {
    width: 100%;
    padding: 4.2rem 0 4rem;
  }
}
.p-form__inner::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  display: block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-form__inner::before {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    top: 0.5rem;
    left: 0.5rem;
  }
}
.p-form__inner::after {
  content: "";
  width: 100%;
  height: calc(100% + 3.4rem);
  display: block;
  position: absolute;
  top: -1.7rem;
  left: 0;
  pointer-events: none;
  background: url("../img/bg_deco_top_pc.png") no-repeat center top/140rem auto, url("../img/bg_deco_bottom_pc.png") no-repeat center bottom/140rem auto;
}
@media screen and (max-width: 960px) {
  .p-form__inner::after {
    height: calc(100% + 1.6rem);
    top: -0.8rem;
    background: url("../img/bg_deco_top_sp.png") no-repeat center top/33.5rem auto, url("../img/bg_deco_bottom_sp.png") no-repeat center bottom/33.5rem auto;
  }
}
.p-form__field {
  width: 90%;
  max-width: 80rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-form__field + .p-form__field {
  margin-top: 2.6rem;
}
@media screen and (max-width: 960px) {
  .p-form__field + .p-form__field {
    margin-top: 1.5rem;
  }
}
.p-form__field-cap {
  display: block;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
  letter-spacing: -0.05rem;
  color: var(--color-pink);
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__field-cap {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
  }
}
.p-form__field-cap span {
  display: inline-block;
  position: relative;
  font-size: 1.3rem;
  margin-left: 0.2rem;
  color: var(--color-red);
}
@media screen and (max-width: 960px) {
  .p-form__field-cap span {
    margin-left: 1.2rem;
    font-size: 1rem;
  }
}
.p-form__field-name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  gap: 1.8rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-form__field-name {
    font-size: 1.4rem;
  }
}
.p-form__field-input {
  width: 100%;
  display: block;
  position: relative;
  padding: 1.4rem 2rem;
  margin: 0.5rem auto 0;
  font-size: 16px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  font-weight: 500;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-form__field-input {
    padding: 1rem 1rem;
    font-size: 16px;
  }
}
.p-form__field-input[disabled] {
  padding: 0;
  background: transparent;
  border: none;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-form__field-input[disabled] {
    font-size: 1.3rem;
  }
}
.p-form__field-input::-moz-placeholder {
  color: #ccc;
}
.p-form__field-input::placeholder {
  color: #ccc;
}
@media screen and (max-width: 960px) {
  .p-form__field-cap + .p-form__field-input {
    margin-left: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-form__field-input:last-child {
    margin-right: 0;
  }
}
.p-form__field-select {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 1rem;
}
.p-form__field-select::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 2.2rem;
  border-bottom: 2px solid var(--color-text);
  border-right: 2px solid var(--color-text);
  transform: translate(0, -50%) rotate(45deg);
}
.p-form__field-select select {
  width: 100%;
  display: block;
  position: relative;
  padding: 1.8rem 5rem 1.8rem 1.5rem;
  margin: 0 auto;
  font-size: 16px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  outline: none !important;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-form__field-select select {
    font-size: 16px;
  }
}
.p-form__field-select select option {
  font-size: 16px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  border: none;
  outline: none !important;
  color: var(--color-text);
}
.p-form__field-error {
  display: block;
  position: relative;
  margin-top: 1.4rem;
  font-size: 1.3rem;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--color-red);
}
@media screen and (max-width: 960px) {
  .p-form__field-error {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
.p-form__field-confirm {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-form__field-confirm {
    font-size: 1.3rem;
  }
}
.p-form__btn {
  width: 32rem;
  min-height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 3.8rem auto 0;
  color: var(--color-white);
  background: var(--color-pink);
  cursor: pointer;
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-form__btn {
    width: 20rem;
    min-height: 4.5rem;
    margin-top: 2.3rem;
  }
}
.p-form__btn + .p-form__btn {
  margin-top: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .p-form__btn {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-form__btn:hover {
    opacity: 0.7;
  }
}
.p-form__btn.-back {
  color: var(--color-pink);
  background: var(--color-white);
}
.p-form__btn.-back::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-pink);
  border-radius: 20rem;
}
.p-form__btn::after {
  content: "";
  width: 0.8rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 2.4rem;
  background: url("../img/arrow_white.png") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .p-form__btn::after {
    width: 0.6rem;
    right: 1.8rem;
  }
}
.p-form__btn.-back::after {
  left: 2rem;
  background: url("../img/arrow_pink.png") no-repeat center/contain;
}

.p-form__btn-text {
  display: block;
  position: relative;
  padding: 0.4rem 1rem;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-form__btn-text {
    font-size: 1.2rem;
  }
}
.p-form__btn input,
.p-form__btn button {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 1;
  opacity: 0;
  font-size: 0;
}
.p-form__thanks {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 4.5rem 0 2rem;
  margin: 0 auto;
  font-size: 3.5rem;
  letter-spacing: 0.15rem;
  color: var(--color-text);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-form__thanks {
    padding: 2.5rem 0 1rem;
    font-size: 1.7rem;
    line-height: 1.5;
  }
}

.p-select {
  display: block;
  position: relative;
  padding: 10rem 0 13rem;
}
@media screen and (max-width: 960px) {
  .p-select {
    padding: 6.5rem 0;
  }
}
.p-select::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 92, 101, 0.5);
}
.p-about + .p-select::before, .p-about + .p-select::after {
  height: calc(100% + 8rem);
}
.p-select__inner {
  width: 90%;
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(2rem);
}
.is-ready .p-select__inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease_out) 0.4s, transform 0.8s var(--ease_out) 0.4s;
}
.p-select__content {
  width: 100%;
  max-width: 113rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-select__content-item {
  display: block;
  position: relative;
}
.p-select__content-item + .p-select__content-item {
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .p-select__content-item + .p-select__content-item {
    margin-top: 1rem;
  }
}

.p-select_content {
  height: 14rem;
  display: block;
  position: relative;
  padding: 2rem 11rem 2rem 6.5rem;
  color: var(--color-text);
}
@media screen and (min-width: 961px) {
  .p-select_content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 960px) {
  .p-select_content {
    height: auto;
    padding: 1.6rem 1.2rem 1rem;
  }
}
.--present .p-select_content {
  background: var(--color-teal-dark);
}
.--event .p-select_content {
  background: var(--color-yellow-dark);
}
.p-select_content.is-completed {
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-select_content {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-select_content:hover {
    opacity: 0.7;
  }
}
.p-select_content__title {
  display: block;
  position: relative;
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  line-height: 1.3;
}
@media screen and (min-width: 961px) {
  .p-select_content__title {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-select_content__title {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
  }
}
.p-select_content__status {
  width: 13.8rem;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-select_content__status {
    width: 100%;
    height: 2.5rem;
    margin-top: 1.7rem;
    font-size: 1.1rem;
  }
}
.p-select_content.is-completed .p-select_content__status {
  color: var(--color-white);
  background: var(--color-text);
}
.p-select_content__status::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-text);
}
@media screen and (max-width: 960px) {
  .p-select_content__status::after {
    border-width: 0.1rem;
  }
}

.p-modal {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(240, 134, 181, 0.8);
  overflow-y: auto;
  opacity: 0;
  animation: show 0.8s var(--ease_out) forwards;
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-modal__container {
  min-height: var(--svh);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 5.8rem 0;
}
@media screen and (max-width: 960px) {
  .p-modal__container {
    padding: 3rem 0;
  }
}
.p-modal__content {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  background: var(--color-white);
}

.p-modal_content {
  display: block;
  position: relative;
  padding: 7rem 3rem;
}
@media screen and (max-width: 960px) {
  .p-modal_content {
    padding: 4rem 2rem 3rem;
  }
}
.p-modal_content__title {
  width: 90%;
  max-width: 45rem;
  display: block;
  position: relative;
  margin: 0 auto 4.4rem;
}
@media screen and (max-width: 960px) {
  .p-modal_content__title {
    max-width: 24rem;
    margin-bottom: 2.5rem;
  }
}
.p-modal_content__cap {
  display: block;
  position: relative;
  margin: 0 auto 2.4rem;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-pink);
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-modal_content__cap {
    margin-bottom: 1.2rem;
    font-size: 2rem;
  }
}
.p-modal_content__intro {
  display: block;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
  color: var(--color-teal);
}
@media screen and (max-width: 960px) {
  .p-modal_content__intro {
    font-size: 1.2rem;
  }
}
.p-modal_content__text {
  width: 90%;
  max-width: 51rem;
  display: block;
  position: relative;
  margin: 0 auto;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-modal_content__text {
    font-size: 1.5rem;
  }
}
.p-modal_content__field {
  width: 100%;
  max-width: 56rem;
  display: block;
  position: relative;
  margin: 3.5rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-modal_content__field {
    margin-top: 2rem;
    max-width: 30rem;
  }
}
.p-modal_content__field-cap {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-pink);
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-modal_content__field-cap {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.p-modal_content__field-input {
  width: 100%;
  display: block;
  position: relative;
  padding: 1.4rem 2rem;
  margin: 0 auto;
  font-size: 16px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  font-weight: 500;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-modal_content__field-input {
    padding: 1rem 1rem;
  }
}
.p-modal_content__field-input[disabled] {
  background: transparent;
}
@media screen and (max-width: 960px) {
  .p-modal_content__field-input:last-child {
    margin-right: 0;
  }
}
.p-modal_content__field-error {
  display: block;
  position: relative;
  margin-top: 0.8rem;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-red);
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-modal_content__field-error {
    margin-top: 0.6rem;
    font-size: 1rem;
  }
}
.p-modal_content__btn {
  width: 32rem;
  min-height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 3.8rem auto 0;
  color: var(--color-white);
  background: var(--color-pink);
  cursor: pointer;
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-modal_content__btn {
    width: 20rem;
    min-height: 4.5rem;
    margin-top: 3rem;
  }
}
.p-modal_content__btn + .p-modal_content__btn {
  margin-top: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .p-modal_content__btn {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-modal_content__btn:hover {
    opacity: 0.7;
  }
}
.p-modal_content__btn.-back {
  color: var(--color-white);
  background: var(--color-pink);
}
.p-modal_content__btn::after {
  content: "";
  width: 0.8rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 2.4rem;
  background: url("../img/arrow_white.png") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .p-modal_content__btn::after {
    width: 0.6rem;
    right: 1.8rem;
  }
}
.p-modal_content__btn-text {
  display: block;
  position: relative;
  padding: 0.4rem 1rem;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-modal_content__btn-text {
    font-size: 1.2rem;
  }
}
.p-modal_content__btn input,
.p-modal_content__btn button {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 1;
  opacity: 0;
  font-size: 0;
}
.p-modal_content__close {
  width: 6rem;
  height: 6rem;
  display: block;
  position: absolute;
  top: -2rem;
  right: -2rem;
  font-size: 0;
  background: var(--color-brawn);
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .p-modal_content__close {
    width: 4rem;
    height: 4rem;
    top: -1rem;
    right: -1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-modal_content__close {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-modal_content__close:hover {
    opacity: 0.7;
  }
}
.p-modal_content__close-text {
  width: 40%;
  height: 40%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-modal_content__close-text::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--color-white);
}
.p-modal_content__close-text::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--color-white);
}
.p-modal_content__note {
  width: 90%;
  display: block;
  position: relative;
  margin: 2.6rem auto 0;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .p-modal_content__note {
    width: 95%;
    margin-top: 2rem;
    font-size: 1rem;
  }
}
.p-modal_content__note small {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9em;
}

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