@charset "UTF-8";
:root {
  --contents-max-width: 500;
  --inner-width_mobile: 500px;
  --padding: 16px;
  --color-black: #333;
  --color-white: #fff;
  --color-pink-soft: #F7F7F7;
  --color-pink-right-vivid: #FFF1F9;
  --color-gray: #D9D9D9;
  --color-yellow: #FEFCBB;
  --color-text: var(--color-black);
  --color-bg-white: var(--color-white);
  --color-text-white: var(--color-white);
  --color-main-pink: #FF048C;
  --border-color: var(--color-gray);
  --button-color:var(--color-main-pink);
  --font-noto: "Inter", "Noto Sans JP", sans-serif;
  --font-mplus: "M PLUS 1", "Inter", "Noto Sans JP", sans-serif;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 400px) {
  html {
    font-size: clamp(0.625rem, -0.875rem + 7.5vw, 1rem);
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(0.625rem, 0.1957898659rem + 0.8941877794vw, 1rem);
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

html {
  scroll-padding-top: 1.875rem;
  scroll-snap-type: y proximity;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 4.25rem;
  }
}

body {
  min-height: 100vh;
  font-family: var(--font-noto);
  font-weight: 400;
  color: var(--color-text);
}

section {
  display: block;
}

picture {
  display: block;
}

.c-title-image {
  display: block;
  margin-inline: auto;
}
.c-title-image img {
  width: 100%;
  height: auto;
}

:where(h2), :where(h3) {
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: #fff;
  color: var(--color-main-pink);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}
.c-skip-link:focus {
  top: 0;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.l-header {
  width: 100%;
  z-index: 100;
  position: relative;
  background: var(--color-main-pink);
}

.l-header__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  height: 3.5rem;
  justify-content: space-between;
}
@media screen and (min-width: 1366px) {
  .l-header__inner {
    height: 4.25rem;
    padding: 0.625rem 1.5rem;
    gap: 1.5rem;
  }
}

.l-body {
  flex-direction: column;
  background-attachment: fixed;
}
.l-body > * {
  width: 100%;
}

.l-contents {
  max-width: 100%;
  animation: bodyFadeIn 0.7s ease-in-out forwards;
  opacity: 0;
  filter: blur(20px);
  overflow: hidden;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 1024px) {
  .l-contents {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@keyframes bodyFadeIn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.l-block {
  max-width: 100%;
  margin-top: -1px;
  background: var(--color-bg-white);
  overflow: hidden;
}
.l-block img {
  width: 100%;
}

.l-block--cta {
  position: relative;
}

.l-footer {
  padding: 2.8125rem 0 7.5rem;
  background: #313130;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 2.8125rem 0 13.75rem;
  }
}

.l-footer__inner {
  padding: 0 1rem;
}

.l-sidebar {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-sidebar {
    display: block;
    padding: 16px;
  }
}

.l-sidebar__inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.l-sidebar__inner img {
  width: 100%;
  height: auto;
  max-width: 25rem;
}

.l-fv {
  padding: 0.625rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-fv {
    padding: 2.5rem 0 3rem;
  }
}

.l-merit {
  padding: 2.5rem var(--padding);
  background: var(--color-pink-soft);
}
@media screen and (min-width: 768px) {
  .l-merit {
    padding: 3.75rem var(--padding);
  }
}

.l-merit__inner {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-merit__inner {
    gap: 2.5rem;
  }
}

.l-campaign {
  padding: 2.5rem 0;
  background: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .l-campaign {
    padding: 1.875rem 0 3.75rem;
  }
}

.l-campaign__inner {
  padding: 0 1.25rem;
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-campaign__inner {
    padding: 0;
    max-width: 57rem;
  }
}

.l-step {
  padding: 1.3125rem 0;
  background: #FFFEE3;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-step {
    padding: 1rem 0 0.625rem;
  }
}
.l-step::after {
  content: "";
  display: block;
  position: absolute;
  transform: translateY(100%);
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 1.875rem;
  background: #FFFEE3;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .l-step::after {
    height: 5.8125rem;
  }
}

.l-step__inner {
  padding: 0 1.25rem;
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-step__inner {
    max-width: 62.5rem;
    padding: 0;
  }
}

.l-presentation {
  padding: 2.5rem 0;
  background: #F4FEFF;
}
@media screen and (min-width: 768px) {
  .l-presentation {
    padding: 3.75rem 0;
  }
}

.l-presentation__inner {
  padding: 0 1.25rem;
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-presentation__inner {
    gap: 2.5rem;
    max-width: 64.5625rem;
    padding: 0;
  }
}

.l-faq {
  padding: 2.5rem 0;
  background: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .l-faq {
    padding: 5rem 0 7.5rem;
  }
}

.l-faq__inner {
  padding: 0 1.25rem;
  display: grid;
  gap: 1.25rem;
  max-width: 31.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-faq__inner {
    max-width: calc(61.0625rem + 40px);
    gap: 2.5rem;
  }
}

.l-plan {
  padding: 1.875rem 0;
  background: var(--color-pink-soft);
}
@media screen and (min-width: 768px) {
  .l-plan {
    padding: 3.75rem 0;
  }
}

.l-plan__inner {
  padding: 0 1.25rem;
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-plan__inner {
    gap: 2.5rem;
    max-width: 57.4375rem;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .is-en .l-plan__inner {
    max-width: 62.75rem;
  }
}

.l-otoku {
  padding: 2.5rem 0;
  background: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .l-otoku {
    padding: 3.125rem 0;
  }
}

.l-otoku__inner {
  padding: 0 1.25rem;
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-otoku__inner {
    max-width: 49.625rem;
    padding: 0;
  }
}

.l-connect {
  padding: 2.5rem 0;
  background: var(--color-pink-soft);
}
@media screen and (min-width: 768px) {
  .l-connect {
    padding: 2.9375rem 0;
  }
}

.l-connect__inner {
  padding: 0 1.25rem;
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-connect__inner {
    max-width: 62.5rem;
    padding: 0;
  }
}

.l-benefits {
  padding: 2.5rem 0 0.5rem;
  background: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .l-benefits {
    padding: 3.125rem 0 1.25rem;
  }
}

.l-benefits__inner {
  padding: 0 1.25rem;
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-benefits__inner {
    max-width: 62.5rem;
    padding: 0;
  }
}

.l-option {
  padding: 2.3125rem 0;
  background: var(--color-pink-right-vivid);
}
@media screen and (min-width: 768px) {
  .l-option {
    padding: 2.5rem 0 1.625rem;
  }
}

.l-option__inner {
  padding: 0 1.25rem;
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-option__inner {
    max-width: 62.5rem;
    padding: 0;
  }
}

.l-contact {
  padding: 2.4375rem 0;
  background: #FFFEE3;
  display: block;
}

.l-contact__inner {
  padding: 0 1.75rem;
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-contact__inner {
    max-width: 62.5rem;
    padding: 0;
  }
}

.l-overview {
  padding: 1.875rem 0;
  background: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .l-overview {
    padding: 3.75rem 0;
  }
}

.l-overview__inner {
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-overview__inner {
    gap: 2.5rem;
    max-width: 61rem;
  }
}

.l-cta {
  padding: 1.8125rem 0 1.25rem;
  background: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .l-cta {
    padding: 3.3125rem 0 1.875rem;
  }
}
.l-cta--pink {
  background: var(--color-pink-right-vivid);
}
.l-cta--main {
  padding: 3.75rem 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .l-cta--main {
    padding: 7.5rem 0 3.5rem;
  }
}

.l-cta__inner {
  padding: 0 1rem;
  margin-inline: auto;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-cta__inner {
    max-width: 62.5rem;
  }
}

.l-fixed {
  padding: 1.0625rem 0 0.375rem;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .l-fixed {
    padding: 1.125rem 0 0.375rem;
    opacity: 0;
    pointer-events: none;
  }
  .l-fixed.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

.l-fixed__inner {
  padding: 0 1.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-fixed__inner {
    max-width: 62.5rem;
    padding: 0;
  }
}

.l-fixed .c-button__set {
  max-width: 31.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-fixed .c-button__set {
    max-width: 39.75rem;
  }
}

.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(infinity * 1px);
  background: var(--button-color);
  color: var(--color-text-white);
  font-weight: bold;
  line-height: 1.2380952381;
  font-size: 1.3125rem;
  max-width: 31.25rem;
  margin-inline: auto;
  padding: 0.9375rem 1.375rem 0.75rem;
  width: 100%;
  text-decoration: none;
  box-shadow: 0 0.1875rem 0 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.2s ease;
}
@media screen and (min-width: 768px) {
  .c-button {
    max-width: 51.125rem;
    font-size: 2.75rem;
    padding: 1.75rem 1rem;
    line-height: 1;
  }
}
.c-button--point {
  line-height: 1;
  font-size: 1.1875rem;
  font-family: var(--font-mplus);
}
@media screen and (min-width: 768px) {
  .c-button--point {
    font-size: 2rem;
  }
}
.c-button--point span.-large {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-button--point span.-large {
    font-size: 2.5rem;
  }
}
.c-button--point span.-small {
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-button--point span.-small {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .c-button br.-sp {
    display: none;
  }
}
.c-button * {
  pointer-events: none;
}
.c-button svg {
  position: absolute;
  width: 0.625rem;
  height: auto;
  right: 1.3125rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-button svg {
    width: 0.9375rem;
    right: 3.0625rem;
  }
}

.c-button__secondary {
  background: var(--color-bg-white);
  border: 0.15625rem solid var(--color-main-pink);
  text-align: center;
  color: var(--color-main-pink);
  display: inline-block;
  width: 100%;
  margin-inline: auto;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 0.1875rem 0 0 rgba(0, 0, 0, 0.1);
  transition: 0.2s ease;
}
@media screen and (min-width: 768px) {
  .c-button__secondary {
    border: 0.1875rem solid var(--color-main-pink);
  }
}

@media (any-hover: hover) {
  .c-button__set:hover .c-button {
    box-shadow: none;
    transform: translateY(0.1875rem);
  }
  .c-button__set:hover .c-button__balloon {
    margin-top: 0.1875rem;
  }
  .c-button__secondary:hover {
    background: var(--color-main-pink);
    color: var(--color-text-white);
    transform: translateY(0.1875rem);
    box-shadow: none;
  }
}
.c-button--shine {
  position: relative;
  overflow: hidden;
}
.c-button--shine::after {
  position: absolute;
  content: "";
  display: block;
  top: -11.25rem;
  left: 0;
  width: 1.875rem;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}

@keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.c-button__set {
  position: relative;
}

.c-button__balloon {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-white);
  border: 2px solid var(--button-color);
  color: var(--color-text);
  font-size: 0.875rem;
  padding: 0.1875rem 0.75rem;
  white-space: nowrap;
  z-index: 1;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  transition: 0.2s ease;
}
@media screen and (min-width: 768px) {
  .c-button__balloon {
    font-size: 1.375rem;
    padding: 0.5rem 0.75rem;
    border: 4px solid var(--button-color);
    top: -1.4375rem;
  }
}
.c-button__balloon::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.5625rem;
  background: var(--color-bg-white);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-button__balloon::before {
    width: 2rem;
    height: 1rem;
    bottom: -0.75rem;
  }
}
.c-button__balloon--fixed {
  font-size: min(3.75vw, 1.40625rem);
  font-family: var(--font-mplus);
  font-weight: 700;
  padding: 0.125rem 1rem;
  top: -0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-button__balloon--fixed {
    font-family: var(--font-noto);
    font-size: 2.1875rem;
    line-height: 1;
    padding: 0.125rem 2rem;
    top: -1.75rem;
    font-weight: 600;
  }
}

.c-button__balloon-img {
  display: block;
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  transition: margin-top 0.2s ease;
  width: 54.1176470588%;
  z-index: 1;
}
.c-button__balloon-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-button__balloon-img {
    top: -0.8125rem;
    width: 34.2767295597%;
  }
}

@media (any-hover: hover) {
  .c-button__set:hover .c-button__balloon-img {
    margin-top: 0.1875rem;
  }
}
.c-button--fixed-img {
  display: block;
  max-width: 31.25rem;
  margin-inline: auto;
  box-shadow: 0 0.1875rem 0 0 rgba(0, 0, 0, 0.2);
  border-radius: calc(infinity * 1px);
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}
.c-button--fixed-img::after {
  position: absolute;
  content: "";
  display: block;
  top: -11.25rem;
  left: 0;
  width: 1.875rem;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.c-button--fixed-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-button--fixed-img {
    max-width: 39.75rem;
  }
}

@media (any-hover: hover) {
  .c-button__set:hover .c-button--fixed-img {
    box-shadow: none;
    transform: translateY(0.1875rem);
  }
}
.c-button__set--main {
  max-width: 20.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-button__set--main {
    max-width: 48rem;
  }
}

.c-button__set--main02 {
  max-width: 20.5625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-button__set--main02 {
    max-width: 39.375rem;
  }
}

.c-button__set--sub {
  max-width: 22.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-button__set--sub {
    max-width: 49.125rem;
  }
}

.c-button__balloon-img--main {
  width: 90.5487804878%;
}
@media screen and (min-width: 768px) {
  .c-button__balloon-img--main {
    width: 75.6510416667%;
  }
}

.c-button__balloon-img--main02 {
  width: 82.9787234043%;
}
@media screen and (min-width: 768px) {
  .c-button__balloon-img--main02 {
    width: 82.8571428571%;
  }
}

.c-button__balloon-img--sub {
  width: 75.9776536313%;
}
@media screen and (min-width: 768px) {
  .c-button__balloon-img--sub {
    width: 69.2111959288%;
  }
}

.c-button-img {
  display: block;
  margin-inline: auto;
  box-shadow: 0 0.1875rem 0 0 rgba(0, 0, 0, 0.2);
  border-radius: calc(infinity * 1px);
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}
.c-button-img::after {
  position: absolute;
  content: "";
  display: block;
  top: -11.25rem;
  left: 0;
  width: 1.875rem;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.c-button-img img {
  width: 100%;
  height: auto;
  display: block;
}
.c-button-img--main {
  max-width: 20.5rem;
}
@media screen and (min-width: 768px) {
  .c-button-img--main {
    max-width: 48rem;
  }
}
.c-button-img--main02 {
  max-width: 20.5625rem;
}
@media screen and (min-width: 768px) {
  .c-button-img--main02 {
    max-width: 39.375rem;
  }
}
.c-button-img--sub {
  max-width: 22.375rem;
}
@media screen and (min-width: 768px) {
  .c-button-img--sub {
    max-width: 49.125rem;
  }
}

@media (any-hover: hover) {
  .c-button__set:hover .c-button-img {
    box-shadow: none;
    transform: translateY(0.1875rem);
  }
}
.c-button--fixed {
  font-family: var(--font-mplus);
  padding: 1.375rem 1rem;
  font-size: min(4.75vw, 1.78125rem);
  line-height: 1.2105263158;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-button--fixed {
    font-family: var(--font-noto);
    font-size: 2.75rem;
    padding: 1.75rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-button--fixed {
    max-width: unset;
  }
}

.c-fixedBtn {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 0;
  z-index: 10;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.25rem;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .c-fixedBtn {
    display: none;
  }
}
.c-fixedBtn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.c-fixedBtn a {
  display: block;
  width: 90%;
  max-width: 22.5rem;
  margin-top: 0.25rem;
}
.c-fixedBtn a img {
  width: 100%;
  height: auto;
}

.c-language-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.c-language-switch a,
.c-language-switch span {
  color: #fff;
  font-size: 1rem;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
}
@media screen and (min-width: 1366px) {
  .c-language-switch a,
  .c-language-switch span {
    font-size: 1.4375rem;
  }
}
.c-language-switch a:hover {
  opacity: 0.8;
}

.p-header__logo {
  flex-shrink: 0;
}
.p-header__logo img {
  height: 3.4375rem;
  width: auto;
}
@media screen and (min-width: 1366px) {
  .p-header__logo img {
    height: auto;
    width: 21.3125rem;
  }
}

.p-header-nav {
  display: none;
  margin-left: auto;
}
@media screen and (min-width: 1366px) {
  .p-header-nav {
    display: block;
    margin-left: 0;
  }
}

.p-header-nav__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.p-header-nav__item a,
.p-header-nav__item button {
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.3684210526;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

@media (any-hover: hover) {
  .p-header-nav__item a:hover, .p-header-nav__item button:hover {
    font-weight: 700;
  }
}
.c-dropdown-icon {
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-bottom: 0.25rem;
  transition: transform 0.2s ease;
}
[aria-expanded=true] .c-dropdown-icon {
  transform: rotate(-135deg);
  margin-bottom: -0.125rem;
}

.p-header-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.3s;
  pointer-events: none;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #bfbfbf;
}
.p-header-nav__dropdown.is-open {
  visibility: visible;
  clip-path: inset(0);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
  pointer-events: auto;
}

.p-header-nav__dropdown-inner {
  max-width: 50rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 2.5rem 1.5rem;
}

.p-header-nav__dropdown-headline {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-main-pink);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--color-main-pink);
  margin-bottom: 1rem;
}

.p-header-nav__dropdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.p-header-nav__dropdown-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 1.3125rem;
  line-height: 1.6;
  font-weight: 700;
  padding: 0.5rem 0.5rem;
  border-radius: 4px;
  transition: 0.2s ease;
}

@media (any-hover: hover) {
  .p-header-nav__dropdown-item a:hover {
    color: var(--color-main-pink);
  }
}
.p-header-nav__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-header-nav__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__entry-btn {
  display: none;
  flex-shrink: 0;
  background: #fff;
  color: var(--color-main-pink);
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  border-radius: calc(infinity * 1px);
  white-space: nowrap;
  transition: 0.2s ease;
}
@media screen and (min-width: 1366px) {
  .p-header__entry-btn {
    display: inline-block;
  }
}

@media (any-hover: hover) {
  .p-header__entry-btn:hover {
    opacity: 0.8;
  }
}
.c-hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
@media screen and (min-width: 1366px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger__bar {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.c-hamburger__text {
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
}

.p-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s 0.3s;
}
@media screen and (min-width: 1366px) {
  .p-drawer {
    display: none;
  }
}
.p-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s;
}

.p-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(91, 91, 91, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.is-open .p-drawer__overlay {
  opacity: 1;
}

.p-drawer__close {
  position: absolute;
  top: 1.375rem;
  left: 0.625rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
}
.p-drawer__close::after, .p-drawer__close::before {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  display: block;
  transform-origin: center center;
  position: absolute;
  top: 50%;
  left: 0;
}
.p-drawer__close::after {
  transform: rotate(225deg);
}
.p-drawer__close::before {
  transform: rotate(-225deg);
}

.p-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 1.5rem 0 0;
  z-index: 1;
  max-width: 20.25rem;
}
.is-open .p-drawer__panel {
  transform: translateX(0);
}

.p-drawer__entry-btn {
  display: block;
  text-align: center;
  color: var(--color-main-pink);
  font-size: 1.3125rem;
  font-weight: 700;
  padding: 0.8125rem 1.3125rem;
  border: 2px solid var(--color-main-pink);
  background: var(--color-bg-white);
  border-radius: calc(infinity * 1px);
  text-decoration: none;
  box-shadow: 0 0.1875rem 0 0 rgba(33, 33, 33, 0.19);
  margin: 0 2.625rem;
}

.p-drawer__nav-list {
  list-style: none;
  margin-top: 1.125rem;
}

.p-drawer__nav-item {
  border-bottom: 1px solid var(--color-gray);
}
.p-drawer__nav-item:first-of-type {
  border-top: 1px solid var(--color-gray);
}
.p-drawer__nav-item a,
.p-drawer__nav-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.6875rem 2.625rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.p-drawer__arrow {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  transform-origin: center center;
  transform: rotate(45deg);
  background: transparent;
  border-left: none;
  border-bottom: none;
}
.p-drawer__arrow.-sub-back {
  transform: rotate(225deg);
}

.p-drawer__sub {
  position: absolute;
  inset: 0;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.p-drawer__sub.is-open {
  transform: translateX(0);
}

.p-drawer__sub-back {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-main-pink);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 0 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-gray);
  width: 100%;
  text-align: left;
}

.p-drawer__sub-list {
  list-style: none;
}

.p-drawer__sub-item {
  border-bottom: 1px solid var(--color-gray);
}
.p-drawer__sub-item:first-of-type {
  border-top: 1px solid var(--color-gray);
}
.p-drawer__sub-item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.6875rem 2.625rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
}

.p-drawer__sub-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-drawer__sub-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-drawer__sub-header {
  padding: 1.5rem 2.625rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-drawer__sub-header .p-drawer__arrow {
  position: absolute;
  left: 2.625rem;
  top: 50%;
  transform: translateY(-50%) rotate(225deg);
}

.p-drawer__sub-headline {
  font-weight: 700;
  font-size: 1.125rem;
}

.p-header__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5.4375rem;
  }
}

.p-footer__logo {
  max-width: 13.3125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 21.125rem;
    margin-inline: initial;
  }
}
.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer__sns-list {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-list {
    gap: 2.625rem;
    margin-top: 0;
    margin-inline: initial;
  }
}

.p-footer__sns-item a {
  display: block;
  width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-item a {
    width: 2.625rem;
  }
}
.p-footer__sns-item a img {
  width: 100%;
  height: auto;
}

.p-footer__nav {
  margin-top: 1.875rem;
}

.p-footer__menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-footer__menu {
    gap: 2.5rem;
  }
}

.p-footer__menu-item a {
  color: var(--color-text-white);
  font-size: 1rem;
  text-decoration: underline;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1875;
}

.p-footer__copyright {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  margin-top: 1.875rem;
  color: var(--color-text-white);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.p-sidebar__contents {
  border-radius: 8px;
  padding: 1rem;
  display: grid;
  gap: 1.5rem;
}

.p-sidebar__menu {
  display: grid;
  gap: 0.5rem;
  list-style: none;
}

.p-sidebar__menu-item a {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.p-sidebar__menu-item a svg {
  width: 1.5rem;
  height: auto;
}

.p-sidebar__menu-title {
  color: var(--color-text);
}

.p-sidebar__text {
  font-size: 0.6875rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.3;
  font-weight: bold;
}
.p-sidebar__text::before, .p-sidebar__text::after {
  font-size: inherit;
  line-height: inherit;
  font-size: 1rem;
}
.p-sidebar__text::before {
  content: "＼";
}
.p-sidebar__text::after {
  content: "／";
}

.p-fv {
  position: relative;
  background: var(--color-main-pink);
}

.p-fv__inner {
  max-width: 64.375rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}
.p-fv__inner img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-fv {
    --deco-right-vw: 13.1944444444vw;
    --deco-right-max: 380px;
    --deco-left-vw: 19.0277777778vw;
    --deco-left-max: 548px;
    background-image: url("../img/fv/fv_pc-right.png"), url("../img/fv/fv_pc-left.png");
    background-position: right bottom, left bottom;
    background-size: min(var(--deco-right-vw), var(--deco-right-max)) auto, min(var(--deco-left-vw), var(--deco-left-max)) auto;
    background-repeat: no-repeat;
  }
}
.p-merit__list {
  display: grid;
  gap: 0.625rem;
  margin-inline: auto;
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--inner-width_mobile);
}
@media screen and (min-width: 768px) {
  .p-merit__list {
    max-width: 58.125rem;
  }
}

.p-merit__item {
  list-style: none;
  border-radius: 13px;
  box-shadow: 0 2.574px 8.365px -0.643px rgba(0, 0, 0, 0.15);
}
.p-merit__item img {
  width: 100%;
}

.p-merit__title {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.354;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-merit__title {
    display: block;
    font-size: 2.625rem;
  }
}
.p-merit__title span.-accent {
  color: var(--color-main-pink);
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-merit__title span.-accent {
    font-size: 3.25rem;
  }
}
.p-merit__title span.-small {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-merit__title span.-small {
    font-size: inherit;
  }
}

.p-merit__title-image {
  width: min(100%, 22.8125rem);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-merit__title-image {
    width: min(100%, 43.5rem);
  }
}

.p-campaign__banner {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-campaign__banner {
    margin-top: 1.25rem;
  }
}
.p-campaign__banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-campaign__banner-balloon img {
  width: 100%;
  max-width: 48rem;
  height: auto;
  margin: 0 auto;
}

.is-en .p-campaign__banner-balloon {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .is-en .p-campaign__banner-balloon {
    margin-top: 1.875rem;
  }
}

.p-campaign__title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-main-pink);
}
@media screen and (min-width: 768px) {
  .p-campaign__title {
    font-size: 2.625rem;
    line-height: 1.2142857143;
  }
}
.p-campaign__title span {
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-campaign__title span {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-campaign__title br {
    display: none;
  }
}

.p-campaign__title-image.-majitoku {
  width: min(100%, 21.375rem);
}
@media screen and (min-width: 768px) {
  .p-campaign__title-image.-majitoku {
    width: min(100%, 47.5625rem);
  }
}
.p-campaign__title-image.-comparison {
  width: min(100%, 22.375rem);
}
@media screen and (min-width: 768px) {
  .p-campaign__title-image.-comparison {
    width: min(100%, 37rem);
  }
}

.p-campaign__table-wrap {
  margin-top: 4.625rem;
}
@media screen and (min-width: 768px) {
  .p-campaign__table-wrap {
    margin-top: 4.4375rem;
  }
}

.p-campaign__table {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-campaign__table {
    margin-top: 1.3125rem;
  }
}
.p-campaign__table img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-step__title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-step__title {
    font-size: 2.625rem;
  }
}
.p-step__title span.-mt {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-step__title span.-mt {
    margin-top: 0.625rem;
  }
}
.p-step__title span.-small {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-step__title span.-small {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-step__title span.-small span {
    font-size: 1.375rem;
  }
}
.p-step__title span.-accent {
  color: var(--color-main-pink);
}
.p-step__title span.-medium {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-step__title span.-medium {
    font-size: 2rem;
  }
}

.p-step__title-image {
  width: min(100%, 21.0625rem);
}
@media screen and (min-width: 768px) {
  .p-step__title-image {
    width: min(100%, 36.625rem);
  }
}

.p-step__list {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-step__list {
    margin-top: 0.875rem;
    grid-template-columns: repeat(4, 1fr);
    max-width: 60.75rem;
  }
}

.p-step__item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 2.652px 8.618px -0.663px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .p-step__item {
    box-shadow: 0 2.557px 8.311px -0.639px rgba(0, 0, 0, 0.15);
  }
}
.p-step__item img {
  width: 100%;
  height: auto;
}

.p-step__links {
  position: absolute;
  width: 100%;
  padding: 0 4.1875rem;
  bottom: 0;
  left: 0;
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-step__links {
    padding: 0 1rem;
    margin-bottom: 1rem;
  }
}
.p-step__links a {
  font-family: var(--font-mplus);
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  position: relative;
  color: #2151E2;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4666666667;
}
.p-step__links a span {
  text-decoration: underline;
}
.p-step__links a::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid var(--color-main-pink);
  border-right: 2px solid var(--color-main-pink);
  transform: rotate(45deg);
}

.is-en .p-step__links {
  padding: 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .is-en .p-step__links {
    padding: 0 0.875rem;
  }
}
.is-en .p-step__links a {
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .is-en .p-step__links a {
    gap: 0.25rem;
  }
}

.p-presentation__title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4333333333;
}
@media screen and (min-width: 768px) {
  .p-presentation__title {
    font-size: 2.625rem;
  }
}
.p-presentation__title span.-small {
  font-size: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-presentation__title span.-small {
    font-size: 2rem;
  }
}

.p-presentation__title-image {
  width: min(100%, 13.375rem);
}
@media screen and (min-width: 768px) {
  .p-presentation__title-image {
    width: min(100%, 43.5625rem);
  }
}

.p-presentation__flow {
  margin-top: 1.25rem;
}
.p-presentation__flow img {
  width: 100%;
  height: 100%;
}

.p-faq__title {
  font-size: 1.875rem;
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-faq__title {
    font-size: 2.625rem;
  }
}
.p-faq__title span.-accent {
  color: var(--color-main-pink);
}

.p-faq__title-image {
  width: min(100%, 20.9375rem);
}
@media screen and (min-width: 768px) {
  .p-faq__title-image {
    width: min(100%, 35.9375rem);
  }
}

.p-faq__item-wrap {
  grid-template-columns: 1.5625rem 1fr;
  gap: 1.25rem;
  border-top: 2px solid var(--border-color);
}
@media screen and (min-width: 768px) {
  .p-faq__item-wrap {
    grid-template-columns: 2.25rem 1fr;
    gap: 1.875rem;
  }
}
.p-faq__item-wrap:last-of-type {
  border-bottom: 2px solid var(--border-color);
}

.p-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms ease;
}
.p-faq__answer p {
  margin: 0.625rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq__answer p {
    margin: 0.625rem 0 1.875rem;
  }
}
.p-faq__answer p:nth-of-type(n+2) {
  margin-top: 1em;
}

.p-faq__item-icon {
  cursor: pointer;
  width: 1.5625rem;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-faq__item-icon {
    width: 2.25rem;
  }
}
.p-faq__item-icon svg {
  width: 100%;
  height: auto;
}

.p-faq__item-wrap.is-open .p-faq__answer {
  max-height: 1000px;
}
.p-faq__item-wrap.is-open .p-faq__question {
  font-weight: bold;
  background: var(--color-pink-soft);
}
.p-faq__item-wrap.is-open .p-faq__item-icon {
  transform: rotate(180deg);
}

.p-faq__item {
  display: grid;
}

.p-faq__question, .p-faq__answer {
  font-weight: 500;
  text-align: left;
  transition: 0.2s ease;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-faq__question, .p-faq__answer {
    font-size: 1.375rem;
  }
}
.p-faq__question button, .p-faq__answer button {
  color: inherit;
  font-weight: inherit;
  background: none;
  border: none;
  text-align: inherit;
  transition: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

.p-faq__question {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.625rem;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-faq__question {
    gap: 1.4375rem;
    padding: 1.875rem 0;
  }
}

@media (any-hover: hover) {
  .p-faq__question:hover {
    background: var(--color-pink-soft);
  }
}
.p-plan__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-plan__title {
    font-size: 3.125rem;
  }
}
.p-plan__title span.-small {
  font-size: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-plan__title span.-small {
    font-size: 2.5rem;
  }
}
.p-plan__title span.-accent {
  color: var(--color-main-pink);
}
@media screen and (min-width: 768px) {
  .p-plan__title br {
    display: none;
  }
}

.p-plan__title-image {
  width: min(100%, 17.25rem);
}
@media screen and (min-width: 768px) {
  .p-plan__title-image {
    width: min(100%, 45.5rem);
  }
}

.p-plan__image {
  max-width: 53.875rem;
  margin-inline: auto;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-plan__image {
    margin-top: 1.5rem;
  }
}
.p-plan__image img {
  width: 100%;
  height: auto;
}

.p-plan__title-age {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-plan__title-age {
    font-size: 3.125rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__title-age span.-small {
    font-size: 2.5rem;
  }
}
.p-plan__title-age span.-accent {
  color: var(--color-main-pink);
}
@media screen and (max-width: 767px) {
  .p-plan__title-age span.-accent {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__title-age br {
    display: none;
  }
}
.p-plan__title-age-image {
  width: min(100%, 22.3125rem);
}
@media screen and (min-width: 768px) {
  .p-plan__title-age-image {
    width: min(100%, 44.3125rem);
  }
}

.p-plan__table {
  margin-inline: auto;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-plan__table {
    margin-top: 0.625rem;
    max-width: 57rem;
  }
}
.p-plan__table img {
  width: 100%;
  height: auto;
}

.p-plan__title-giga {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-plan__title-giga {
    font-size: 2.4375rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__title-giga span.-small {
    font-size: 1.875rem;
  }
}
.p-plan__title-giga span.-accent {
  color: var(--color-main-pink);
  font-size: 2.5rem;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-plan__title-giga span.-accent {
    font-size: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__title-giga span.-accent span.-medium {
    font-size: 3rem;
  }
}
.p-plan__title-giga span.-accent span.-small {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-plan__title-giga br {
    display: none;
  }
}
.p-plan__title-giga-image {
  width: min(100%, 16.625rem);
}
@media screen and (min-width: 768px) {
  .p-plan__title-giga-image {
    width: min(100%, 45.0625rem);
  }
}

.p-plan__graph {
  margin-top: 0.6875rem;
  max-width: 56.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-plan__graph {
    margin-top: 0.625rem;
  }
}
.p-plan__graph img {
  width: 100%;
  height: auto;
}

.p-plan__title-unext {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: 1.875rem;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .p-plan__title-unext {
    font-size: 2rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__title-unext span.-small-sp {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__title-unext br {
    display: none;
  }
}
.p-plan__title-unext-image {
  width: min(100%, 23.4375rem);
}
@media screen and (min-width: 768px) {
  .p-plan__title-unext-image {
    width: min(100%, 60.375rem);
  }
}

.p-plan__campaign-period {
  font-size: 1rem;
  line-height: 1.42;
  letter-spacing: -0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-plan__campaign-period {
    font-size: 1.375rem;
    line-height: 1.1818181818;
  }
}

.p-plan__u-next-banner {
  margin-top: 0.875rem;
  max-width: 56.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-plan__u-next-banner {
    margin-top: 0.625rem;
  }
}
.p-plan__u-next-banner img {
  width: 100%;
  height: auto;
}

.p-plan__arrow {
  margin-inline: auto;
  width: 12.5rem;
  height: 3rem;
  background: var(--color-main-pink);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-plan__arrow {
    height: 2.875rem;
    margin-top: 1.5rem;
  }
}

.p-otoku__card {
  background: var(--color-yellow);
  position: relative;
  border-radius: 0.9375rem;
  margin-inline: auto;
  padding: 4.1875rem 0.8125rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-otoku__card {
    border-radius: 1.0625rem;
    padding: 2.9375rem 1.8125rem 1.625rem;
  }
}

.p-otoku__title-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-1.9375rem);
}
@media screen and (min-width: 768px) {
  .p-otoku__title-wrap {
    transform: translateY(-1.25rem);
  }
}

.p-otoku__title {
  text-align: center;
  color: var(--color-text-white);
  background: var(--color-main-pink);
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.1851851852;
  padding: 0.5625rem 2.3125rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  clip-path: polygon(0 0, 100% 0, calc(100% - 1.25rem) 50%, 100% 100%, 0 100%, 1.25rem 50%);
}
@media screen and (min-width: 768px) {
  .p-otoku__title {
    font-size: 1.875rem;
    line-height: 1.2;
    padding: 0.5625rem 2.5rem;
    clip-path: polygon(0 0, 100% 0, calc(100% - 1.625rem) 50%, 100% 100%, 0 100%, 1.625rem 50%);
  }
}
@media screen and (min-width: 768px) {
  .p-otoku__title br {
    display: none;
  }
}

.is-en .p-otoku__title {
  font-size: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .is-en .p-otoku__title {
    font-size: 1.875rem;
  }
}
.is-en .p-otoku__text {
  font-size: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .is-en .p-otoku__text {
    font-size: 1.6875rem;
  }
}

.p-otoku__text {
  font-size: 1.8125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4137931034;
}
@media screen and (min-width: 768px) {
  .p-otoku__text {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-otoku__text br {
    display: none;
  }
}

.p-otoku__card-inner {
  background: var(--color-bg-white);
  border-radius: 0.9375rem;
  width: 100%;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-otoku__card-inner {
    border-radius: 1.0625rem;
    padding: 0.75rem 1.625rem 1.4375rem;
    margin-top: 0.625rem;
  }
}
.p-otoku__card-inner img {
  width: 102%;
  max-width: 38.9375rem;
  margin-inline: auto;
}

.p-otoku__button-wrap {
  marig-ninline: auto;
}

.p-otoku__button {
  box-shadow: 0 3.432px 0 0 rgba(0, 0, 0, 0.1);
  padding: 1.75rem 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2272727273;
}
@media screen and (min-width: 768px) {
  .p-otoku__button {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-otoku__button br {
    display: none;
  }
}

.p-connect__title {
  text-align: center;
  font-size: 1.875rem;
  letter-spacing: -0.07em;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-connect__title {
    font-size: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-connect__title br {
    display: none;
  }
}
.p-connect__title span.-accent {
  color: var(--color-main-pink);
}
.p-connect__title span span.-large {
  font-size: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-connect__title span span.-large {
    font-size: 4.3125rem;
  }
}
.p-connect__title span span.-medium {
  font-size: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-connect__title span span.-medium {
    font-size: 3.4375rem;
  }
}

.p-connect__title-image {
  width: min(100%, 16.0625rem);
}
@media screen and (min-width: 768px) {
  .p-connect__title-image {
    width: min(100%, 49.375rem);
  }
}

.p-connect__header {
  margin-top: 1.5625rem;
  max-width: 58.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-connect__header {
    margin-top: 22;
  }
}
.p-connect__header img {
  width: 100%;
}

.p-connect__grid {
  margin-top: 1.5625rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  max-width: 58.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-connect__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.375rem;
    gap: 0.9375rem;
  }
}
.p-connect__grid img {
  width: 100%;
  height: auto;
}

.p-connect__text {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-connect__text {
    font-size: 1.4375rem;
    line-height: 1.5652173913;
    letter-spacing: 0.02em;
    margin-top: 1.375rem;
  }
}

.p-connect__button-wrap {
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-connect__button-wrap {
    margin-top: 1.375rem;
  }
}

.is-en .p-connect__button {
  max-width: 40.75rem;
}

.p-connect__button {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  padding: 0.8125rem 1.5rem;
  max-width: 35.625rem;
  box-shadow: 0 3.432px 0 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-connect__button {
    font-size: 1.875rem;
    padding: 1.8125rem 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-connect__button br {
    display: none;
  }
}

.p-benefits__title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .p-benefits__title {
    font-size: 3.125rem;
    line-height: 1;
  }
}
.p-benefits__title span {
  font-weight: 700;
}
.p-benefits__title span.-accent {
  color: var(--color-main-pink);
}
.p-benefits__title span.-small {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__title span.-small {
    color: var(--color-main-pink);
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-benefits__title br {
    display: none;
  }
}

.p-benefits__title-image {
  width: min(100%, 13.9375rem);
}
@media screen and (min-width: 768px) {
  .p-benefits__title-image {
    width: min(100%, 54.75rem);
  }
}

.p-benefits__reason {
  max-width: 53rem;
  margin-inline: auto;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__reason {
    margin-top: 0.6875rem;
  }
}
.p-benefits__reason img {
  width: 100%;
  height: auto;
}

.p-benefits__arrow {
  margin-top: 1.25rem;
  width: 14.3125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-benefits__arrow {
    margin-top: 0.6875rem;
  }
}
.p-benefits__arrow img {
  width: 100%;
}

.p-option__title {
  font-size: 1.875rem;
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-option__title {
    font-size: 3.125rem;
    line-height: 1.2;
  }
}
.p-option__title span.-small {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-option__title span.-small {
    font-size: 2.5rem;
  }
}
.p-option__title span.-accent {
  color: var(--color-main-pink);
}
@media screen and (min-width: 768px) {
  .p-option__title br {
    display: none;
  }
}
.p-option__title-image {
  width: min(100%, 15.125rem);
}
@media screen and (min-width: 768px) {
  .p-option__title-image {
    width: min(100%, 56.6875rem);
  }
}

.p-option__grid {
  margin-top: 0.6875rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6875rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-option__grid {
    margin-top: 1.9375rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9375rem 1.5rem;
  }
}
.p-option__grid img {
  width: 100%;
  height: auto;
}

.p-option__grid-text {
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0909090909;
  font-size: 0.6875rem;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-option__grid-text {
    font-size: 1.125rem;
    margin-top: 0.5625rem;
  }
}

.p-contact__title {
  color: var(--color-main-pink);
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__title br.-sp {
    display: none;
  }
}

.p-contact__card {
  background-color: var(--color-bg-white);
  max-width: 38.375rem;
  width: 21.5rem;
  margin-inline: auto;
  margin-top: 1.625rem;
  padding-bottom: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__card {
    width: 100%;
    margin-top: 1.3125rem;
  }
}

.p-contact__card-headline {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2222222222;
  padding: 0.75rem;
  color: var(--color-text-white);
  background: var(--color-main-pink);
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .p-contact__card-headline {
    font-size: 1rem;
    line-height: 1.1875;
  }
}

.p-contact__card-table {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 0.625rem;
  margin-bottom: 0.875rem;
}
.p-contact__card-table * {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  line-height: 1.2222222222;
}
@media screen and (min-width: 768px) {
  .p-contact__card-table * {
    font-size: 1rem;
    line-height: 1.1875;
  }
}
.p-contact__card-table b {
  font-weight: 700;
}
.p-contact__card-table tr:nth-child(n+2) th, .p-contact__card-table tr:nth-child(n+2) td {
  padding-top: 0.9375rem;
}
.p-contact__card-table td {
  padding-left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__card-table td {
    padding-left: 1rem;
  }
}

.p-overview__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2222222222;
  padding: 0 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-overview__title {
    font-size: 1.375rem;
    margin-bottom: 0.8125rem;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-overview__title br {
    display: none;
  }
}

.p-overview__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-overview__table {
    font-size: 0.875rem;
    margin-bottom: 3.75rem;
  }
}
.p-overview__table:last-child {
  margin-bottom: 0;
}
.p-overview__table tr,
.p-overview__table th,
.p-overview__table td {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-overview__table tr,
  .p-overview__table th,
  .p-overview__table td {
    display: table-cell;
  }
}
.p-overview__table tr {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-overview__table tr {
    display: table-row;
  }
}
.p-overview__table th,
.p-overview__table td {
  vertical-align: top;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-overview__table th,
  .p-overview__table td {
    border: 1px solid var(--border-color);
  }
}
.p-overview__table th {
  background: var(--color-gray);
  font-weight: 700;
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  letter-spacing: -0.03em;
  padding: 1.25rem 1.125rem;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-overview__table th {
    width: 16rem;
    padding: 1.25rem 1.5625rem;
    border-bottom: 1px solid var(--border-color);
  }
}
.p-overview__table th p {
  margin: 0;
}
.p-overview__table td {
  background: var(--color-bg-white);
  padding: 0.75rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-overview__table td {
    padding: 1rem 1.25rem;
  }
}
.p-overview__table td p {
  font-size: 1rem;
  margin: 0 0 1em 0;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.p-overview__table td p:last-child {
  margin-bottom: 0;
}
.p-overview__table td p small {
  font-size: 0.875rem;
  font-weight: 400;
}
.p-overview__table td b,
.p-overview__table td strong {
  font-weight: 700;
}
.p-overview__table td strong {
  color: var(--color-main-pink);
}
.p-overview__table td > ul, .p-overview__table td ol {
  margin-bottom: 1em;
}
.p-overview__table td ul, .p-overview__table td ol {
  padding-left: 1.5em;
  font-size: 1rem;
  line-height: 1.2;
}
.p-overview__table td ul li, .p-overview__table td ol li {
  font-size: inherit;
}
.p-overview__table td ul.-no-disc, .p-overview__table td ol.-no-disc {
  list-style: none;
  padding-left: 1em;
}
.p-overview__table td ul.-alpha, .p-overview__table td ol.-alpha {
  list-style: none;
  padding-left: 1.5em;
  counter-reset: alpha-counter;
}
.p-overview__table td ul.-alpha > li, .p-overview__table td ol.-alpha > li {
  counter-increment: alpha-counter;
  position: relative;
  padding-left: 2em;
}
.p-overview__table td ul.-alpha > li::before, .p-overview__table td ol.-alpha > li::before {
  content: "(" counter(alpha-counter) ")";
  position: absolute;
  left: 0;
}
.p-overview__table a {
  color: #2151E2;
  text-decoration: underline;
}
.p-overview__table span {
  display: inline;
}
.p-overview__table span.-red {
  display: block;
  color: #E90101;
  font-weight: 400;
}
.p-overview__table span.-small {
  font-size: 0.8125rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-overview__table span.-small {
    font-size: 0.75rem;
  }
}
.p-overview__table span.-accent {
  color: var(--color-main-pink);
}

.is-en .p-overview__table td, .is-en .p-overview__table th {
  word-break: break-word;
  overflow-wrap: break-word;
}

.p-cta__text {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    margin-top: 0.5rem;
    font-size: 1.375rem;
  }
}

.l-fixed .p-cta__text {
  color: var(--color-text-white);
}

.p-cta__top {
  margin-inline: auto;
  width: 100%;
  max-width: 43.75rem;
}
@media screen and (min-width: 768px) {
  .p-cta__top {
    margin-bottom: 1.5625rem;
  }
}
.p-cta__top img {
  width: 100%;
  height: auto;
}

.is-en .p-cta__text {
  font-size: 0.5625rem;
  font-family: var(--font-mplus);
}
@media screen and (min-width: 768px) {
  .is-en .p-cta__text {
    font-size: 1.125rem;
  }
}/*# sourceMappingURL=style.css.map */