@charset "UTF-8";
:root {
  --black: #222;
  --white: #fff;
  --red: #EB3D40;
  --text: #111;
  --gold: #F0DE8D;
  --gray: #E6E6E6;
  --shadow: #600F11;
}

#menu-open {
  display: none !important;
}

/*
base
----------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

/*
レイアウト
----------------------------------------------- */
.l-body {
  font-size: 16px;
}

.l-wrap {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  min-height: 100vh;
  margin: auto;
  background: transparent linear-gradient(180deg, #EB3D40 0%, #B31C21 100%) 0% 0% no-repeat padding-box;
}

.l-inner {
  width: calc(100% - 40px);
  max-width: 480px;
  margin: auto;
}

/*
heder
----------------------------------------------- */
.p-header {
  margin-top: 20px;
  text-align: center;
}

/*
footer
----------------------------------------------- */
.p-footer {
  margin-top: auto;
}
.p-footer__logo {
  width: 100px;
  margin: 40px auto 20px;
}
.p-footer__copy {
  text-align: center;
  padding: 1em 0;
  font-size: 12px;
  font-weight: 500;
  background-color: var(--gray);
}

/*
slide
----------------------------------------------- */
@keyframes slideToLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.p-slide {
  display: flex;
  overflow: hidden;
}
.p-slide__wrap {
  display: flex;
  animation: slideToLeft 60s infinite linear 0.5s both;
}
.p-slide__wrap.to-right {
  animation: slideToRight 60s infinite linear 0.5s both;
}
.p-slide__item {
  width: 1432px;
}

/*
mv
----------------------------------------------- */
.p-mv {
  margin-top: 28px;
  text-align: center;
  color: #fff;
}
.p-mv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.p-mv__title .logo {
  width: 100px;
}
.p-mv__title .title {
  width: 284px;
}
.p-mv__text {
  margin: 24px 0;
  font-weight: 500;
}
.p-mv__text--head {
  margin: 24px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/*
button
----------------------------------------------- */
.p-button, .p-button__more, .p-button__gold {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 295px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 9999px;
}
.p-button__gold {
  height: 62px;
  font-weight: 700;
  background: transparent linear-gradient(107deg, #F0DE8D 0%, #FCF3D2 51%, #F0DE8D 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 4px 0px #600F11;
}
.p-button__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.p-button__more {
  width: 100%;
  margin-top: 32px !important;
  padding: 1.5em 0;
  text-align: center;
  line-height: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--black);
}
.p-button__more:hover {
  cursor: pointer;
}
.p-button__start {
  margin-top: 24px;
}
.p-button__list * + * {
  margin-top: 36px;
}

/*
present
----------------------------------------------- */
.p-present {
  margin-top: 72px;
  text-align: center;
  background-color: var(--red);
}
.p-present__img {
  width: 331px;
  margin-top: -20px;
  padding-bottom: 18px;
}
.p-present__black {
  padding: 1em 20px;
  font-size: 12px;
  color: var(--white);
  background-color: var(--black);
}
.p-present__black p {
  width: fit-content;
  margin: auto;
}

/*
step
----------------------------------------------- */
.p-step {
  margin-top: 24px;
  text-align: center;
}

/*
form
----------------------------------------------- */
.p-form {
  margin: 24px auto 0;
  padding: 30px 20px 36px;
  border-radius: 20px;
  background-color: var(--white);
}
.p-form__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 28px;
}
.p-form__title .num {
  color: var(--red);
}
.p-form__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 11px;
}
.p-form__block {
  display: none;
}
.p-form__case {
  position: relative;
  z-index: 0;
  aspect-ratio: 1/1;
}
.p-form__case-link {
  display: block;
  width: 100%;
  height: 100%;
}
.p-form__case-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.p-form.--low {
  display: none;
  padding: 0;
}
.p-form__loading {
  width: 218px;
  margin: auto;
  padding: 88px 0;
}
.p-form__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0.5em;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid #C7C7C7;
  transition: all 0.3s;
}
.p-form__label input {
  position: absolute;
}
.p-form__label:hover {
  color: var(--white);
  border-color: var(--text);
  background-color: var(--text);
}
.p-form__back {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
}

/*
banner
----------------------------------------------- */
.p-banner {
  display: block;
}

/*
links
----------------------------------------------- */
.p-links {
  margin-top: 40px;
}
.p-links__text {
  margin-top: 40px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
}

/*
heading
----------------------------------------------- */
.p-heading {
  margin: 32px auto 28px;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
}
.p-heading__balloon {
  position: relative;
  z-index: 0;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5em 1.5em;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background-color: #FFE0E0;
  border-radius: 9999px;
}
.p-heading__balloon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  z-index: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: #FFE0E0 transparent transparent transparent;
  transform: translateY(99%);
}

.p-pop {
  position: relative;
  z-index: 0;
  width: fit-content;
  margin: 0 auto 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
}
.p-pop::before, .p-pop::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--white);
}
.p-pop::before {
  left: -1.6em;
  transform: rotate(-20deg);
}
.p-pop::after {
  right: -1.6em;
  transform: rotate(20deg);
}

.p-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  color: #fff;
}
.p-share__term {
  margin-right: 1em;
  font-weight: 700;
}
.p-share__icon {
  width: 48px;
  margin-top: 0;
}
.p-share__icon img {
  width: 100%;
}

.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease-out;
}

.u-hide {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

.u-note {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1em;
  font-size: 12px;
  color: #818181;
}

.l-main{
  background-color: transparent;
}