@charset "UTF-8";
:root {
  --svh: 100vh;
  --color-text: var(--color-white);
  --color-bg: var(--color-sky);
  --color-black: #000;
  --color-white: #fff;
  --color-sky: #1287c3;
  --color-sky-light: #cfe7f4;
  --color-cream: #faf0e7;
  --color-navy: #001f3d;
  --color-red: #ca0a0a;
  --color-yellow: #ffd530;
  --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, 16px);
  }
}

body {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: 0.15rem;
  color: var(--color-text);
  background: var(--color-bg);
  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.1rem;
  font-feature-settings: "palt";
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  color: var(--color-text);
  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;
}
.l-wrap__loader {
  height: 3rem;
  width: 3rem;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 20;
}
@media screen and (max-width: 960px) {
  .l-wrap__loader {
    height: 2rem;
    width: 2rem;
  }
}
.is-v-load .l-wrap__loader {
  opacity: 0;
  transition: opacity 0.5s var(--ease_out);
}
.l-wrap__loader::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 0.2rem solid transparent;
  border-top: 0.2rem solid var(--color-white);
  animation: rotate 0.7s linear infinite;
  z-index: 20;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .l-wrap__loader::before {
    border-width: 0.15rem;
  }
}
.l-wrap__container {
  display: block;
  position: relative;
  opacity: 0;
}
.is-v-load .l-wrap__container {
  opacity: 1;
  transition: opacity 0.8s var(--ease_out);
}

.l-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 5;
}
@media screen and (max-width: 960px) {
  .l-header {
    top: 1rem;
    left: 0.5rem;
  }
}
.l-header__brand {
  width: 9.4rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-header__brand {
    width: 4.6rem;
  }
}
.l-header__brand-link {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__brand-link:hover {
    animation: pyoko 0.3s linear 2;
  }
}
.l-header__80th {
  width: 7rem;
  display: block;
  position: relative;
  margin-left: 1rem;
}
@media screen and (max-width: 960px) {
  .l-header__80th {
    width: 3.4rem;
    margin-left: 0.5rem;
  }
}
.l-header__80th-link {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__80th-link:hover {
    animation: pyoko 0.3s linear 2;
  }
}

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

.l-footer {
  display: block;
  position: relative;
}
.l-footer__container {
  width: 90%;
  max-width: 124rem;
  display: block;
  position: relative;
  padding: 0.4rem 0 8rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-footer__container {
    padding: 2rem 0 5rem;
  }
}
.l-footer__content {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
}
.l-footer__sharea {
  display: block;
  position: relative;
}
.l-footer__copy {
  width: 26.5rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer__copy {
    width: 16.5rem;
    margin: 2.5rem auto 0;
  }
}

.l-footer_share {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-footer_share {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.l-footer_share__cap {
  width: 8.5rem;
  display: block;
  position: relative;
  margin-right: 2.5rem;
}
@media screen and (max-width: 960px) {
  .l-footer_share__cap {
    width: 5rem;
    margin: 0 auto 1.1rem;
  }
}
.l-footer_share__list {
  display: flex;
  justify-content: center;
  position: relative;
}
.l-footer_share__list-item {
  display: block;
  position: relative;
}
.l-footer_share__list-item + .l-footer_share__list-item {
  margin-left: 0.6rem;
}
@media screen and (max-width: 960px) {
  .l-footer_share__list-item + .l-footer_share__list-item {
    margin-left: 0.8rem;
  }
}
.l-footer_share__link {
  width: 6.5rem;
  height: 6.5rem;
  display: block;
  position: relative;
  color: var(--color-navy);
}
@media screen and (max-width: 960px) {
  .l-footer_share__link {
    width: 4.8rem;
    height: 4.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer_share__link:hover {
    animation: pyoko 0.3s linear 2;
  }
}
.l-footer_share__link::before {
  content: "";
  width: calc(100% - 0.6rem);
  height: calc(100% - 0.6rem);
  display: block;
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  background-color: currentColor;
  border-radius: 50%;
}
.l-footer_share__link::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.l-footer_share__link-img {
  width: 2.5rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .l-footer_share__link-img {
    width: 2rem;
  }
}

.p-hero {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-hero__container {
  width: 100%;
  min-height: var(--svh);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 5.5rem 0 15.2rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-hero__container {
    padding: 6rem 0 7rem;
  }
}
.p-hero__content {
  width: 100%;
  display: block;
  position: relative;
}
.p-hero__title {
  width: 90%;
  max-width: 61rem;
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(8rem);
}
@media screen and (max-width: 960px) {
  .p-hero__title {
    max-width: 32rem;
  }
}
.is-v-load .p-hero__title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s var(--ease_out) 0.2s, transform 0.8s var(--ease_bounce) 0.2s;
}
.p-hero__chara {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 6rem;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, -20rem 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20rem 0, 0 100%, 0 100%);
}
@media screen and (max-width: 960px) {
  .p-hero__chara {
    margin-top: 3rem;
  }
}
.is-v-load .p-hero__chara {
  -webkit-clip-path: polygon(-20rem 0, 100% 0, calc(100% + 20rem) 100%, 0 100%);
  clip-path: polygon(-20rem 0, 100% 0, calc(100% + 20rem) 100%, 0 100%);
  transition: -webkit-clip-path 1s var(--ease_inout) 0.3s;
  transition: clip-path 1s var(--ease_inout) 0.3s;
  transition: clip-path 1s var(--ease_inout) 0.3s, -webkit-clip-path 1s var(--ease_inout) 0.3s;
}
.p-hero__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
}
.is-v-load .p-hero__scroll {
  opacity: 1;
  transition: opacity 0.7s var(--ease_inout) 0.6s;
}
.p-hero__scroll-cap {
  width: 7rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-hero__scroll-cap {
    width: 5.2rem;
  }
}
.p-hero__scroll-bar {
  width: 0.2rem;
  height: 5rem;
  display: block;
  position: relative;
  margin: 1.3rem auto 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-hero__scroll-bar {
    margin-top: 0.8rem;
  }
}

.p-hero_chara {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-hero_chara__list {
  width: calc(21rem * var(--chara_length));
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-hero_chara__list {
    width: calc(10.5rem * var(--chara_length));
  }
}
.is-v-load .p-hero_chara__list {
  animation: loop calc(100s * var(--chara_length) / 44) linear infinite;
}
.p-hero_chara:nth-child(even) .p-hero_chara__list {
  animation-direction: reverse;
}
@keyframes loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.p-hero_chara__list-item {
  width: 21rem;
  flex-shrink: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-hero_chara__list-item {
    width: 10.5rem;
  }
}
.p-hero_chara__img {
  display: block;
  position: relative;
  padding: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-hero_chara__img {
    padding: 0.25rem;
  }
}

.p-about {
  display: block;
  position: relative;
  padding: 13rem 0 12rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-about {
    padding: 6rem 0 7rem;
  }
}
.p-about__container {
  width: 90%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-about__container {
    width: 88%;
  }
}
.p-about__header {
  display: block;
  position: relative;
  margin-bottom: 9rem;
}
@media screen and (max-width: 960px) {
  .p-about__header {
    margin-bottom: 5.4rem;
  }
}
.p-about__title {
  width: 90%;
  max-width: 61rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-about__title {
    width: 100%;
    max-width: 32rem;
  }
}
.p-about__intro {
  display: block;
  position: relative;
  margin-top: 5.4rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-about__intro {
    margin-top: 3.4rem;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    line-height: 1.9;
  }
}
.p-about__inner {
  display: block;
  position: relative;
}
.p-about__bnr {
  width: 100%;
  max-width: 59rem;
  display: block;
  position: relative;
  margin: 9.6rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-about__bnr {
    margin-top: 4rem;
  }
}
.p-about__bnr-link {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-about__bnr-link:hover {
    animation: pyoko 0.3s linear 2;
  }
}

.p-about_content {
  width: 100%;
  max-width: 90rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-about_content + .p-about_content {
  margin-top: 7rem;
}
@media screen and (max-width: 960px) {
  .p-about_content + .p-about_content {
    margin-top: 4.5rem;
  }
}
.p-about_content::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-white);
  border-radius: 0.5rem;
}
.p-about_content__cap {
  width: 19rem;
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(-22%, -35%) rotate(-15deg);
}
@media screen and (max-width: 960px) {
  .p-about_content__cap {
    width: 12.5rem;
    transform: translate(-15%, -68%) rotate(-15deg);
  }
}
.p-about_content__cap-base {
  display: block;
  position: relative;
}
.p-about_content__cap-text {
  width: 90%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  color: var(--color-sky);
  text-align: center;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-about_content__cap-text {
    font-size: 1.3rem;
  }
}
.p-about_content__inner {
  width: 90%;
  max-width: 75rem;
  padding: 5rem 0 5.2rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-about_content__inner {
    width: 88%;
    padding: 3rem 0 3.4rem;
  }
}
.p-about_content__howto {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  position: relative;
}
.p-about_content__howto + .p-about_content__howto {
  margin-top: 5rem;
}
@media screen and (max-width: 960px) {
  .p-about_content__howto + .p-about_content__howto {
    margin-top: 3.4rem;
  }
}
.p-about_content__howto + .p-about_content__howto::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: -2.8rem;
  left: 0;
  border-top: 2px dashed var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-about_content__howto + .p-about_content__howto::before {
    height: 1px;
    top: -2.1rem;
    border-top-width: 1px;
  }
}
.p-about_content__howto-no {
  width: 4.6rem;
  display: block;
  position: relative;
  margin-right: 5rem;
}
@media screen and (max-width: 960px) {
  .p-about_content__howto-no {
    width: 2.8rem;
    margin-right: 1.5rem;
  }
}
.p-about_content__howto-text {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
  top: -0.4em;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .p-about_content__howto-text {
    font-size: 1.3rem;
  }
}
.p-about_content__howto-text strong {
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 960px) {
  .p-about_content__howto-text strong {
    letter-spacing: 0.2rem;
  }
}
.p-about_content__howto-text small {
  font-size: 0.8em;
}
.p-about_content__duration {
  display: block;
  position: relative;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-about_content__duration {
    font-size: 1.8rem;
    letter-spacing: 0.07rem;
  }
}
.p-about_content__duration small {
  font-size: 0.6em;
  font-weight: 500;
}

.p-chara {
  width: 100%;
  display: block;
  position: relative;
  color: var(--color-sky);
  background-color: var(--color-cream);
}
.p-chara__container {
  width: 95%;
  max-width: 136rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 11.2rem 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-chara__container {
    width: 90%;
    padding: 7rem 0;
  }
}
.p-chara__header {
  display: block;
  position: relative;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 960px) {
  .p-chara__header {
    margin-bottom: 5.3rem;
  }
}
.p-chara__title {
  width: 46rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-chara__title {
    width: 28rem;
  }
}
.p-chara__inenr {
  display: block;
  position: relative;
}
.p-chara__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  position: relative;
}
@media screen and (min-width: 961px) and (max-width: 1200px) {
  .p-chara__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .p-chara__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 960px) and (min-width: 850px) {
  .p-chara__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-chara__list-item {
  min-width: 0;
  display: block;
  position: relative;
}
.p-chara__nav {
  width: 100%;
  display: block;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 5;
  overflow: hidden;
}
.p-chara__attention {
  text-align: center;
  color: var(--color-black);
  font-size: 1.4rem;
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .p-chara__attention {
    font-size: 1rem;
  }
}

.p-chara_input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.p-chara_data {
  height: 100%;
  display: block;
  position: relative;
  color: var(--color-white);
  background-color: var(--color-sky);
  border-radius: 1rem;
  padding: 2rem;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-chara_data {
    padding: 1.5rem;
    border-radius: 0.7rem;
  }
}
input:disabled + .p-chara_data {
  pointer-events: none;
}
.p-chara_data::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1rem;
  border: 0.5rem solid var(--color-navy);
  opacity: 0;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-chara_data::after {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-chara_data:hover::after {
    opacity: 1;
  }
}
.p-chara_data__thumb {
  display: block;
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 1rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-chara_data__thumb {
    margin-bottom: 1rem;
  }
}
.p-chara_data__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--color-navy);
  opacity: 0;
  transition: opacity 0.4s var(--ease_out);
}
input:checked + .p-chara_data .p-chara_data__thumb::before {
  opacity: 0.8;
}
.p-chara_data__thumb::after {
  content: "";
  width: 45%;
  height: 45%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("../img/check.svg") no-repeat center/contain;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease_out);
}
input:checked + .p-chara_data .p-chara_data__thumb::after {
  opacity: 1;
}
.p-chara_data__title {
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-chara_data__title {
    font-size: 1.2rem;
  }
}
.p-chara_data__text {
  display: block;
  position: relative;
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-sky-light);
}
@media screen and (max-width: 960px) {
  .p-chara_data__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.p-chara_data__label {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}

.p-chara_data_thumb {
  display: block;
  position: relative;
}
.p-chara_data_thumb__slide {
  display: block;
  position: relative;
}
.p-chara_data_thumb__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-chara_data_thumb__list-item {
  width: 100%;
  flex-shrink: 0;
  display: block;
  position: relative;
}

.p-chara_free {
  height: 100%;
  display: block;
  position: relative;
  color: var(--color-white);
  background-color: var(--color-sky);
  border-radius: 1rem;
  padding: 2rem;
}
@media screen and (max-width: 960px) {
  .p-chara_free {
    padding: 1.5rem;
    border-radius: 0.7rem;
  }
}
.p-chara_free__thumb {
  display: block;
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 1rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-chara_free__thumb {
    margin-bottom: 1rem;
  }
}
.p-chara_free__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--color-navy);
  opacity: 0;
  transition: opacity 0.4s var(--ease_out);
}
input:checked + .p-chara_free .p-chara_free__thumb::before {
  opacity: 0.8;
}
.p-chara_free__thumb::after {
  content: "";
  width: 45%;
  height: 45%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("../img/check.svg") no-repeat center/contain;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease_out);
}
input:checked + .p-chara_free .p-chara_free__thumb::after {
  opacity: 1;
}
.p-chara_free__title {
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-chara_free__title {
    font-size: 1.2rem;
  }
}
.p-chara_free__text {
  display: block;
  position: relative;
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-navy);
}
@media screen and (max-width: 960px) {
  .p-chara_free__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.p-chara_free__input {
  display: block;
  position: relative;
}
.p-chara_free__input input {
  width: 100%;
  display: block;
  position: relative;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  text-align: center;
  border-radius: 0.3rem;
}
.p-chara_free__input input[disabled] {
  color: var(--color-white);
  background: transparent;
}
.p-chara_free__label {
  width: 100%;
  display: block;
  position: relative;
  margin: 1.5rem auto 0;
  color: var(--color-white);
  background-color: var(--color-navy);
  border-radius: 20rem;
  cursor: pointer;
  transition: background-color 0.4s var(--ease_out), color 0.4s var(--ease_out);
}
@media (hover: hover) and (pointer: fine) {
  .p-chara_free__label:hover {
    background-color: #095380;
  }
}
input:disabled + .p-chara_free .p-chara_free__label {
  color: #999;
  background: #666;
  pointer-events: none;
}
.p-chara_free__label-text {
  display: block;
  position: relative;
  padding: 1.4rem 2rem;
  font-size: 1.6rem;
  text-align: center;
}
.p-chara_free__label-text.--decide {
  display: block;
}
input:checked + .p-chara_free .p-chara_free__label-text.--decide {
  display: none;
}
.p-chara_free__label-text.--cancel {
  display: none;
}
input:checked + .p-chara_free .p-chara_free__label-text.--cancel {
  display: block;
}

.p-chara_nav {
  width: 100%;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-left: 4rem;
  margin: 0 auto;
  color: var(--color-white);
  background: var(--color-navy);
}
@media screen and (max-width: 960px) {
  .p-chara_nav {
    height: 6rem;
    padding-left: 2rem;
  }
}
.p-chara_nav__count {
  flex-shrink: 0;
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-chara_nav__count {
    font-size: 1.1rem;
    letter-spacing: 0.15rem;
  }
}
.p-chara_nav__select {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, 7.2rem);
  gap: 1rem;
  position: relative;
  margin-left: 3.6rem;
}
@media screen and (max-width: 960px) {
  .p-chara_nav__select {
    margin-left: 2.2rem;
    grid-template-columns: repeat(3, 3rem);
    gap: 0.6rem;
  }
}
.p-chara_nav__submit {
  width: 32.5rem;
  height: 10rem;
  display: block;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background: var(--color-red);
}
@media screen and (max-width: 960px) {
  .p-chara_nav__submit {
    width: 12rem;
    height: 6rem;
  }
}
.p-chara_nav__submit[disabled] {
  color: #999;
  background: #666;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-chara_nav__submit {
    transition: color 0.4s var(--ease_out), background-color 0.4s var(--ease_out);
  }
  .p-chara_nav__submit:hover {
    color: var(--color-red);
    background: var(--color-white);
  }
}
.p-chara_nav__submit:not([disabled])::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.5rem solid var(--color-red);
}
.p-chara_nav__submit-text {
  display: block;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .p-chara_nav__submit-text {
    font-size: 1.5rem;
  }
}

.p-chara_select {
  width: 100%;
  display: block;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.p-chara_select__thumb {
  width: 100%;
  display: block;
  position: relative;
}
.p-chara_select__thumb[type=button]::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--color-sky);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-chara_select__thumb[type=button]::before {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-chara_select__thumb:hover::before {
    opacity: 0.8;
  }
}
.p-chara_select__thumb[type=button]::after {
  content: "";
  width: 45%;
  height: 45%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("../img/remove.svg") no-repeat center/contain;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-chara_select__thumb[type=button]::after {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-chara_select__thumb:hover::after {
    opacity: 1;
  }
}
.p-chara_select__thumb-img {
  width: 100%;
  padding-top: 100%;
  display: block;
  position: relative;
}
.p-chara_select__thumb-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-form {
  display: block;
  position: relative;
  padding: 11.5rem 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-form {
    padding: 6.5rem 0 6rem;
  }
}
.p-form__container {
  width: 95%;
  max-width: 136rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-form__container {
    width: 90%;
  }
}
.p-form__inner {
  width: 100%;
  max-width: 90rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-form__select {
  display: block;
  position: relative;
}
.p-form__field {
  width: 100%;
  display: block;
  position: relative;
  margin: 6.5rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-form__field {
    margin-top: 4rem;
  }
}
.p-form__policy {
  display: block;
  position: relative;
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .p-form__policy {
    font-size: 1rem;
  }
}
.p-form__policy a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-form__policy a:hover {
    text-decoration: none;
  }
}
.p-form__btn {
  width: 100%;
  max-width: 33rem;
  display: block;
  position: relative;
  margin: 4.9rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-form__btn {
    margin-top: 2.8rem;
    max-width: 21.5rem;
  }
}
.p-form__submit {
  width: 100%;
  display: block;
  position: relative;
  color: var(--color-white);
  background-color: var(--color-navy);
  border-radius: 20rem;
  transition: color 0.4s var(--ease_out), background-color 0.4s var(--ease_out);
}
.p-form__submit[disabled] {
  pointer-events: none;
  color: #999;
  background-color: #666;
}
@media (hover: hover) and (pointer: fine) {
  .p-form__submit:hover {
    color: var(--color-navy);
    background-color: var(--color-white);
  }
}
.p-form__submit:not([disabled])::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-navy);
  border-radius: 20rem;
  pointer-events: none;
}
.p-form__submit-text {
  width: 100%;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__submit-text {
    height: 4.5rem;
    font-size: 1.3rem;
  }
}
.p-form__submit-text::before {
  content: "";
  width: 1.2rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 1.8rem;
  background: url("../img/txt_deco_b.svg") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .p-form__submit-text::before {
    width: 0.8rem;
    left: 1.5rem;
  }
}
.p-form__submit-text::after {
  content: "";
  width: 1.2rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 1.8rem;
  background: url("../img/txt_deco_b.svg") no-repeat center/contain;
  transform: scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-form__submit-text::after {
    width: 0.8rem;
    right: 1.5rem;
  }
}
.p-form__end {
  width: 100%;
  display: block;
  position: relative;
  padding: 5.6rem 0;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(8rem);
}
@media screen and (max-width: 960px) {
  .p-form__end {
    padding: 3.6rem 0;
  }
}
.is-v-load .p-form__end {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s var(--ease_out) 0.2s, transform 0.8s var(--ease_bounce) 0.2s;
}
.p-form__end::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/btn_deco.svg") no-repeat 1rem 1rem/1.2rem auto, url("../img/btn_deco.svg") no-repeat calc(100% - 1rem) 1rem/1.2rem auto, url("../img/btn_deco.svg") no-repeat calc(100% - 1rem) calc(100% - 1rem)/1.2rem auto, url("../img/btn_deco.svg") no-repeat 1rem calc(100% - 1rem)/1.2rem auto;
}
@media screen and (max-width: 960px) {
  .p-form__end::before {
    background: url("../img/btn_deco.svg") no-repeat 1rem 1rem/0.8rem auto, url("../img/btn_deco.svg") no-repeat calc(100% - 1rem) 1rem/0.8rem auto, url("../img/btn_deco.svg") no-repeat calc(100% - 1rem) calc(100% - 1rem)/0.8rem auto, url("../img/btn_deco.svg") no-repeat 1rem calc(100% - 1rem)/0.8rem auto;
  }
}
.p-form__end::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-white);
  border-radius: 0.5rem;
  pointer-events: none;
}
.p-form__end-cap {
  width: 90%;
  max-width: 53rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-form__end-cap {
    max-width: 27rem;
  }
}
.p-form__end-text {
  width: 100%;
  max-width: 53rem;
  display: block;
  position: relative;
  margin: 2rem auto 0;
  font-size: 2.6rem;
  letter-spacing: 0.2rem;
  text-align: center;
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  .p-form__end-text {
    margin-top: 1.2rem;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
}

.p-form_select {
  display: block;
  position: relative;
}
.p-form_select__header {
  display: block;
  position: relative;
  margin-bottom: 5.2rem;
}
@media screen and (max-width: 960px) {
  .p-form_select__header {
    margin-bottom: 3.6rem;
  }
}
.p-form_select__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0 4rem;
  margin: 0 auto;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-form_select__title {
    padding: 0 2.2rem;
    font-size: 1.8rem;
    font-weight: 600;
  }
}
.p-form_select__title::before {
  content: "";
  width: 2rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(-1, 1);
  background: url("../img/tl_deco.svg") no-repeat 0 50%/100% auto;
}
@media screen and (max-width: 960px) {
  .p-form_select__title::before {
    width: 1.2rem;
  }
}
.p-form_select__title::after {
  content: "";
  width: 2rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -0.6rem;
  background: url("../img/tl_deco.svg") no-repeat 0 50%/100% auto;
}
@media screen and (max-width: 960px) {
  .p-form_select__title::after {
    width: 1.2rem;
    right: 0;
  }
}
.p-form_select__list {
  display: flex;
  justify-content: center;
  position: relative;
}
.p-form_select__list-item {
  width: 23rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-form_select__list-item {
    width: 10.4rem;
  }
}
.p-form_select__list-item + .p-form_select__list-item {
  margin-left: 2rem;
}
@media screen and (max-width: 960px) {
  .p-form_select__list-item + .p-form_select__list-item {
    margin-left: 1.5rem;
  }
}

.p-form_select_data {
  width: 100%;
  display: block;
  position: relative;
}
.p-form_select_data__thumb {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
@media screen and (max-width: 960px) {
  .p-form_select_data__thumb {
    border-radius: 0.6rem;
  }
}
.p-form_select_data__thumb-img {
  width: 100%;
  padding-top: 100%;
  display: block;
  position: relative;
}
.p-form_select_data__thumb-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-form_select_data__name {
  display: block;
  position: relative;
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form_select_data__name {
    margin-top: 0.8rem;
    font-size: 1.1rem;
  }
}

.p-form_field {
  display: block;
  position: relative;
}
.p-form_field + .p-form_field {
  margin-top: 3.8rem;
}
@media screen and (max-width: 960px) {
  .p-form_field + .p-form_field {
    margin-top: 2.2rem;
  }
}
.p-form_field__title {
  display: block;
  position: relative;
  margin-bottom: 1.7rem;
  padding-left: 2.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 960px) {
  .p-form_field__title {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    font-size: 1.2rem;
  }
}
.p-form_field__title::before {
  content: "";
  width: 1.6rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/txt_deco.svg") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .p-form_field__title::before {
    width: 1rem;
  }
}
.p-form_field__content {
  display: block;
  position: relative;
}
.p-form_field__content.--select::after {
  content: "";
  width: 2.5rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 1.6rem;
  background: url("../img/down.svg") no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-form_field__content.--select::after {
    width: 1.8rem;
    right: 1.1rem;
  }
}
.p-form_field__content select {
  width: 100%;
  display: block;
  position: relative;
  padding: 1.2rem 1.8rem;
  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;
  color: var(--color-navy);
  font-weight: 600;
  background: var(--color-white);
  border-radius: 0.5rem;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 960px) {
  .p-form_field__content select {
    padding: 0.8rem 1.5rem;
  }
}
.p-form_field__content select::-ms-expand {
  display: none;
}
.p-form_field__content select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
}
.p-form_field__content textarea {
  width: 100%;
  display: block;
  position: relative;
  padding: 1.2rem 1.8rem;
  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;
  color: var(--color-navy);
  font-weight: 600;
  background: var(--color-white);
  border-radius: 0.5rem;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.p-result {
  display: block;
  position: relative;
  padding: 11.5rem 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-result {
    padding: 6.5rem 0 6rem;
  }
}
.p-result.--bg {
  padding: 4.8rem 0 5.4rem;
  color: var(--color-sky);
  background-color: var(--color-cream);
  -webkit-clip-path: polygon(0 0, -20rem 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, -20rem 0, 0 100%, 0 100%);
}
@media screen and (max-width: 960px) {
  .p-result.--bg {
    padding: 3.4rem 0 5rem;
  }
}
.is-v-load .p-result.--bg {
  -webkit-clip-path: polygon(-20rem 0, 100% 0, calc(100% + 20rem) 100%, 0 100%);
  clip-path: polygon(-20rem 0, 100% 0, calc(100% + 20rem) 100%, 0 100%);
  transition: -webkit-clip-path 1s var(--ease_inout) 0.4s;
  transition: clip-path 1s var(--ease_inout) 0.4s;
  transition: clip-path 1s var(--ease_inout) 0.4s, -webkit-clip-path 1s var(--ease_inout) 0.4s;
}
.p-result__container {
  width: 95%;
  max-width: 136rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-result__container {
    width: 90%;
  }
}
.p-result__inner {
  width: 100%;
  max-width: 90rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-result__select {
  display: block;
  position: relative;
}

.p-result_select {
  display: block;
  position: relative;
}
.p-result_select__header {
  display: block;
  position: relative;
  margin-bottom: 3.5rem;
}
.p-result_select__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0 4rem;
  margin: 0 auto;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-result_select__title {
    padding: 0 2.2rem;
    font-size: 1.8rem;
    font-weight: 600;
  }
}
.p-result_select__title::before {
  content: "";
  width: 2rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(-1, 1);
  background: url("../img/tl_deco.svg") no-repeat 0 50%/100% auto;
}
@media screen and (max-width: 960px) {
  .p-result_select__title::before {
    width: 1.2rem;
  }
}
.--bg .p-result_select__title::before {
  background: url("../img/tl_deco_b.svg") no-repeat 0 50%/100% auto;
}
.p-result_select__title::after {
  content: "";
  width: 2rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -0.6rem;
  background: url("../img/tl_deco.svg") no-repeat 0 50%/100% auto;
}
@media screen and (max-width: 960px) {
  .p-result_select__title::after {
    width: 1.2rem;
    right: 0;
  }
}
.--bg .p-result_select__title::after {
  background: url("../img/tl_deco_b.svg") no-repeat 0 50%/100% auto;
}
.p-result_select__list {
  display: flex;
  justify-content: center;
  position: relative;
}
.p-result_select__list-item {
  width: 23rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-result_select__list-item {
    width: 10.4rem;
  }
}
.p-result_select__list-item + .p-result_select__list-item {
  margin-left: 2rem;
}
@media screen and (max-width: 960px) {
  .p-result_select__list-item + .p-result_select__list-item {
    margin-left: 1rem;
  }
}

.p-result_select_data {
  width: 100%;
  display: block;
  position: relative;
}
.p-result_select_data__thumb {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.p-result_select_data__thumb-img {
  width: 100%;
  padding-top: 100%;
  display: block;
  position: relative;
}
.p-result_select_data__thumb-img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-result_select_data__name {
  display: block;
  position: relative;
  margin-top: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-result_select_data__name {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
.p-result_select_data__share {
  width: 100%;
  display: block;
  position: relative;
  margin: 2.6rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-result_select_data__share {
    margin-top: 2rem;
  }
}
.p-result_select_data__btn {
  width: 100%;
  display: block;
  position: relative;
  color: var(--color-white);
  background-color: var(--color-navy);
  border-radius: 20rem;
  transition: color 0.4s var(--ease_out), background-color 0.4s var(--ease_out);
}
@media (hover: hover) and (pointer: fine) {
  .p-result_select_data__btn:hover {
    color: var(--color-navy);
    background-color: var(--color-white);
  }
}
.p-result_select_data__btn:not([disabled])::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-navy);
  border-radius: 20rem;
  pointer-events: none;
}
.p-result_select_data__btn-text {
  width: 100%;
  height: 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-result_select_data__btn-text {
    height: 3rem;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
  }
}
.p-result_select_data__btn-text::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 1.8rem;
  background: url("../img/txt_deco.svg") no-repeat center/1.2rem auto;
  border-radius: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-result_select_data__btn-text::before {
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.6rem auto;
    left: 0.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-result_select_data__btn:hover .p-result_select_data__btn-text::before {
    background: url("../img/txt_deco_r.svg") no-repeat center/1.2rem auto;
  }
}
.p-result_select_data__btn-text::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.8rem;
  background: url("../img/txt_deco.svg") no-repeat center/1.2rem auto;
  border-radius: 50%;
  transform: translate(0, -50%) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .p-result_select_data__btn-text::after {
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.6rem auto;
    right: 0.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-result_select_data__btn:hover .p-result_select_data__btn-text::after {
    background: url("../img/txt_deco_r.svg") no-repeat center/1.2rem auto;
  }
}

.p-thanks {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-thanks__container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 13rem 0 5.2rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-thanks__container {
    padding: 10rem 0 2rem;
  }
}
.p-thanks__content {
  display: block;
  position: relative;
}
.p-thanks__title {
  width: 90%;
  max-width: 61rem;
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(8rem);
}
@media screen and (max-width: 960px) {
  .p-thanks__title {
    max-width: 32rem;
  }
}
.is-v-load .p-thanks__title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s var(--ease_out) 0.2s, transform 0.8s var(--ease_bounce) 0.2s;
}
.p-thanks__text {
  display: block;
  position: relative;
  margin-top: 3.8rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  opacity: 0;
  transform: translateY(8rem);
}
@media screen and (max-width: 960px) {
  .p-thanks__text {
    margin-top: 3.4rem;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    line-height: 1.9;
  }
}
.is-v-load .p-thanks__text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s var(--ease_out) 0.3s, transform 0.8s var(--ease_bounce) 0.3s;
}

.p-back {
  display: block;
  position: relative;
  padding: 8rem 0 7rem;
}
@media screen and (max-width: 960px) {
  .p-back {
    padding: 4rem 0 3.5rem;
  }
}
.p-back__btn {
  width: 34rem;
  display: block;
  position: relative;
  margin: 0 auto;
  color: var(--color-white);
  background-color: transparent;
  border-radius: 20rem;
  transition: color 0.4s var(--ease_out), background-color 0.4s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .p-back__btn {
    width: 19rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-back__btn:hover {
    color: var(--color-sky);
    background-color: var(--color-white);
  }
}
.p-back__btn:not([disabled])::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-white);
  border-radius: 20rem;
  pointer-events: none;
}
.p-back__btn-text {
  width: 100%;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-back__btn-text {
    height: 3.5rem;
    font-size: 1.2rem;
  }
}

.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;
  }
}
@keyframes pyoko {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.6rem);
  }
  100% {
    transform: translateY(0);
  }
}
#p-att {
  display: block;
  position: relative;
  margin-top: 1rem !important;
  font-size: 1.4rem !important;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #000 !important;
}

@media screen and (max-width: 960px) {
  #p-att {
    margin-top: 1rem !important;
    font-size: 1.2rem !important;
    letter-spacing: 0.05rem;
    line-height: 1.9;
  }
}