@charset "UTF-8";
/* ----------------------------------------------------
resetCSS
---------------------------------------------------- */
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

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

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

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 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: inherit; /* 2 */
}

address {
  font-style: inherit;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -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: inherit; /* 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;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * 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;
}

/**
 * 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;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * 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. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* 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;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* ----------------------------------------------------
settings
---------------------------------------------------- */
html {
  scroll-padding-top: 10.5rem;
  font-size: 10px;
}
@media screen and (max-width: 1160px) {
  html {
    font-size: 0.8620689655vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 7.6rem;
    font-size: 10px;
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", 遊ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  color: #333;
  line-height: 1;
  font-weight: 500;
  background-color: #fff;
}

main {
  margin-top: 10.5rem;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 7.6rem;
  }
}

ul {
  list-style: none;
}

a,
button {
  text-decoration: none;
  color: inherit;
}
a:not([class]),
button:not([class]) {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:not([class]):hover,
  button:not([class]):hover {
    opacity: 0.7;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
strong {
  font-weight: 700;
}

/* ----------------------------------------------------
layout
---------------------------------------------------- */
/* ---------- header ----------*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}

.l-header__container {
  max-width: 1320px;
  margin-inline: auto;
  padding: 3.1rem 2rem 2.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .l-header__container {
    padding: 3rem 2rem 1.3rem;
  }
}

.l-header__logo {
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 14rem;
  }
}

/* ---------- footer ----------*/
.l-footer {
  background-color: #333;
  color: #fff;
}

.l-footer__container {
  padding-block: 13.1rem 3.9rem;
  padding-block: 8rem 12rem;
}

.l-footer__item {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: -0.015em;
}
.l-footer__item + .l-footer__item {
  margin-top: 0.4rem;
}

/* ---------- container  ----------*/
.l-container {
  max-width: 1160px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
}

.l-container-sm {
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ----------------------------------------------------
component
---------------------------------------------------- */
/* ---------- button ----------*/
.c-btn-contact {
  width: 31.5rem;
  height: 4.8rem;
  background: -webkit-gradient(linear, right top, left top, color-stop(1%, #e85582), color-stop(26%, #e1568c), color-stop(50%, #d25697), color-stop(75%, #c556a4), to(#ba59af));
  background: linear-gradient(to left, #e85582 1%, #e1568c 26%, #d25697 50%, #c556a4 75%, #ba59af);
  color: #fff;
  border-radius: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.9rem;
  letter-spacing: -0.015em;
  font-weight: 600;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .c-btn-contact {
    font-size: 1.3rem;
    width: 18rem;
    height: 3.3rem;
  }
}
.c-btn-contact::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 1.1rem;
  background: url('data:image/svg+xml;charset=UTF-8,<svg width="8" height="12" viewBox="0 0 8 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.72336 11.1829L7.66993 5.65092L1.72336 0.118896L0.25 1.48954L4.72322 5.65092L0.25 9.81229L1.72336 11.1829Z" fill="%23fff"/></svg>') center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 1.3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn-contact span {
  width: 100%;
  display: inline-block;
  max-width: 16.2rem;
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-filter: drop-shadow(0.2rem 0.2rem 0.3rem rgba(125, 80, 47, 0.4));
          filter: drop-shadow(0.2rem 0.2rem 0.3rem rgba(125, 80, 47, 0.4));
}
@media screen and (max-width: 767px) {
  .c-btn-contact span {
    max-width: 13rem;
  }
}
@media (hover: hover) {
  .c-btn-contact:hover {
    -webkit-transform: translateY(-0.4rem);
            transform: translateY(-0.4rem);
    -webkit-box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
            box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
  }
}

.c-btn-primary {
  width: 100%;
  max-width: 60rem;
  height: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.6rem;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, color-stop(1%, #e85582), color-stop(26%, #e1568c), color-stop(50%, #d25697), color-stop(75%, #c556a4), to(#ba59af));
  background: linear-gradient(to left, #e85582 1%, #e1568c 26%, #d25697 50%, #c556a4 75%, #ba59af);
  border-radius: 4.9rem;
  -webkit-box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .c-btn-primary {
    height: 5rem;
    font-size: 1.8rem;
    -webkit-box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
            box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
  }
}
.c-btn-primary::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 2.1rem;
  background: url('data:image/svg+xml;charset=UTF-8,<svg width="8" height="12" viewBox="0 0 8 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.72336 11.1829L7.66993 5.65092L1.72336 0.118896L0.25 1.48954L4.72322 5.65092L0.25 9.81229L1.72336 11.1829Z" fill="%23fff"/></svg>') center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (hover: hover) {
  .c-btn-primary:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(0.4rem);
            transform: translateY(0.4rem);
  }
}

.c-btn-campaign {
  display: inline-block;
  padding: 3rem 7rem 2rem;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#4da84b), to(#398737));
  background: linear-gradient(to right, #4da84b, #398737);
  border-radius: 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn-campaign {
    padding: 2rem 4rem;
    font-size: 1.8rem;
  }
}
.c-btn-campaign::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 2rem;
  background: url(../img/icon_arrow.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .c-btn-campaign::before {
    width: 0.7rem;
    height: 1rem;
    right: 1.6rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (hover: hover) {
  .c-btn-campaign:hover::before {
    -webkit-transform: translate(0.5rem, -30%);
            transform: translate(0.5rem, -30%);
  }
}

.c-btn-submit {
  display: inline-block;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  background-color: #bb5ab0;
  border-radius: 3.6rem;
  padding: 1.4rem 3rem;
  border: 0.2rem solid #bb5ab0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (hover: hover) {
  .c-btn-submit:hover {
    color: #bb5ab0;
    background-color: #fff;
  }
}

/* ---------- head ----------*/
.c-head-primary {
  text-align: center;
}

.c-head-primary__en {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  line-height: 1.32;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-head-primary__en {
    font-size: 3rem;
  }
}

.c-head-primary__ja {
  display: block;
  margin-top: 0.5rem;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: -0.015em;
}
@media screen and (max-width: 767px) {
  .c-head-primary__ja {
    font-size: 1.5rem;
  }
}

/* ---------- text ----------*/
/* ----------------------------------------------------
project
---------------------------------------------------- */
/* ---------- fv ----------*/
.p-fv {
  background: url(../img/fv_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
}
.p-fv::before {
  content: "";
  display: inline-block;
  width: 8.2rem;
  height: 9.5rem;
  background: url(../img/fv_icon01.png) center/contain no-repeat;
  position: absolute;
  top: 4.8rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-fv::before {
    width: 5.5rem;
    height: 6.5rem;
    top: 18.9rem;
  }
}
.p-fv::after {
  content: "";
  display: inline-block;
  width: 9rem;
  height: 17.8rem;
  background: url(../img/fv_icon02.png) center/contain no-repeat;
  position: absolute;
  bottom: 23.2rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-fv::after {
    bottom: 0.2rem;
  }
}

.p-fv__container {
  max-width: 1354px;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-fv__container {
    padding-block: 1rem 1.7rem;
    position: relative;
  }
}

.p-fv__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .p-fv__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding-left: 0;
  }
}

.p-fv__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-fv__sub {
  max-width: 74.1rem;
}

.p-fv__ttl {
  margin-top: 0.7rem;
  max-width: 74.4rem;
}

.p-fv__txt {
  margin-top: 0.7rem;
  font-size: 4rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-fv__txt {
    font-size: 2rem;
  }
}
.p-fv__txt strong {
  font-size: 4.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-fv__txt strong {
    font-size: 2.4rem;
  }
}
.p-fv__txt span {
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1em 0.2em;
  background-image: radial-gradient(0.08em 0.08em at center center, #4a4a4a, #4a4a4a 100%, transparent, transparent);
  padding-top: 0.3em;
}

.p-fv__img {
  width: 100%;
  max-width: 45rem;
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    width: 73.4285714286%;
    margin-inline: auto -2rem;
  }
}

.p-fv__card {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.6rem;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .p-fv__card {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding-inline: 0.9rem 0;
    position: absolute;
    top: 62.8205128205vw;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__item img {
    width: auto;
    height: 15.3846153846vw;
  }
}

.p-fv__attention {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv__attention {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
}
.p-fv__attention::before, .p-fv__attention::after {
  content: "";
  display: inline-block;
  width: 4.5rem;
  height: 7.8rem;
  background: url(../img/icon_attention.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-fv__attention::before, .p-fv__attention::after {
    width: 2.2rem;
    min-width: 2.2rem;
    height: 2.8rem;
    min-height: 2.8rem;
    background: url(../img/icon_attention_sp.svg) center/contain no-repeat;
  }
}
.p-fv__attention::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-fv__attention span {
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: -0.015em;
  font-weight: 700;
  font-size: clamp(2rem, 2vw, 2.8rem);
}
@media screen and (max-width: 767px) {
  .p-fv__attention span {
    text-align: center;
    font-size: clamp(1rem, 3.3333333333vw, 1.4rem);
  }
}

/* ---------- cta ----------*/
.p-cta {
  background: url(../img/cta_bg.jpg) no-repeat center/cover;
}

.p-cta01 {
  background: #f2cddb;
}

.p-cta__container {
  padding-block: 3.5rem 3.2rem;
  text-align: center;
}

.p-cta__ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #bb5ab0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta__ttl {
    font-size: 1.6rem;
  }
}
.p-cta__ttl span {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-cta__ttl span {
    font-size: 1.8rem;
  }
}

.p-cta__txt {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-cta__txt {
    font-size: 1.4rem;
  }
}

.p-cta__btn {
  margin-top: 2.3rem;
}
.p-cta__btn a {
  margin-inline: auto;
}

/* ---------- trouble ----------*/
.p-trouble {
  background: -webkit-gradient(linear, left top, left bottom, from(#fcf3fc), to(#f7f7f7));
  background: linear-gradient(#fcf3fc, #f7f7f7);
  position: relative;
}
.p-trouble::before {
  content: "";
  display: inline-block;
  width: 10rem;
  height: 8rem;
  background: url(../img/icon_section01.svg) center/contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-trouble::before {
    width: 7rem;
    height: 6rem;
  }
}

.p-trouble__container {
  padding-block: 8rem 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-trouble__container {
    padding-block: 6rem;
  }
}

.p-trouble__ttl {
  text-align: center;
}
.p-trouble__ttl span {
  font-size: 2.8rem;
  line-height: 1.7142857143;
  letter-spacing: -0.015em;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #fde8ba));
  background: linear-gradient(transparent 80%, #fde8ba 80%);
}
@media screen and (max-width: 767px) {
  .p-trouble__ttl span {
    font-size: 1.8rem;
  }
}
.p-trouble__ttl strong {
  font-size: 3.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-trouble__ttl strong {
    font-size: 2.2rem;
  }
}

.p-trouble__wrap {
  margin-top: 5rem;
  background-color: #fff;
  border-radius: 3rem;
  padding: 3rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-trouble__wrap {
    margin-top: 4rem;
    border-radius: 1.5rem;
    padding: 2rem;
  }
}
.p-trouble__wrap::before {
  content: "";
  display: inline-block;
  width: 14.1rem;
  height: 17rem;
  background: url(../img/trouble_icon.svg) center/contain no-repeat;
  position: absolute;
  bottom: 1.2rem;
  right: 3rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-trouble__wrap::before {
    content: none;
  }
}

.p-trouble__list {
  max-width: 84rem;
  margin-inline: auto;
}

.p-trouble__item {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  padding-left: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-trouble__item {
    font-size: 1.4rem;
    padding-left: 2rem;
  }
}
.p-trouble__item::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2.1rem;
  background: url(../img/icon_check.svg) center/contain no-repeat;
  position: absolute;
  top: 1rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-trouble__item::before {
    width: 1.5rem;
    height: 1.6rem;
    top: 0.6rem;
  }
}
.p-trouble__item span {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-trouble__item span {
    font-size: 1.6rem;
  }
}
.p-trouble__item + .p-trouble__item {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-trouble__item + .p-trouble__item {
    margin-top: 1.6rem;
  }
}

.p-trouble__add {
  margin-top: 5.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-trouble__add {
    margin-top: 3rem;
  }
}
.p-trouble__add::before, .p-trouble__add::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 11.4rem;
  background: url(../img/icon_frame.png) no-repeat center/contain;
}
.p-trouble__add::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-trouble__add-txt {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: -0.015em;
}
@media screen and (max-width: 767px) {
  .p-trouble__add-txt {
    font-size: 1.8rem;
  }
}
.p-trouble__add-txt strong {
  margin-top: 1.1rem;
  display: inline-block;
  font-size: 3.6rem;
  line-height: 1.4444444444;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-trouble__add-txt strong {
    font-size: 2rem;
  }
}
.p-trouble__add-txt span {
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1em 0.2em;
  background-image: radial-gradient(0.1em 0.1em at center center, #b0b1b1, #b0b1b1 100%, transparent, transparent);
  padding-top: 0.1em;
}

/* ---------- about ----------*/
.p-about {
  background: url(../img/about_bg.png) no-repeat center/cover;
  position: relative;
  z-index: 1;
}
.p-about::before, .p-about::after {
  content: "";
  display: inline-block;
  width: 28.6rem;
  height: 25.9rem;
  background: linear-gradient(135deg, #f09ca7 1%, #e9a0b9 31%, #d480b5 61%, #cc6db4);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about::before, .p-about::after {
    width: 9.9rem;
    height: 8.9rem;
  }
}
.p-about::before {
  top: 0;
  left: 0;
}
.p-about::after {
  bottom: 0;
  right: 0;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.p-about__container {
  max-width: 1280px;
  padding-block: 10.8rem 14.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__container {
    padding-block: 4rem 7.4rem;
  }
}
.p-about__container::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 8.6rem;
  background: url(../img/icon_section02.svg) center/contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 2rem);
          transform: translate(-50%, 2rem);
}
@media screen and (max-width: 767px) {
  .p-about__container::before {
    width: 3rem;
    height: 5.6rem;
  }
}

.p-about__head {
  position: relative;
}
.p-about__head::before {
  width: 100%;
  content: "";
  display: inline-block;
  width: 109.5rem;
  height: 12.8rem;
  background: url(../img/about_decoration.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -28%);
          transform: translate(-50%, -28%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about__head::before {
    width: 100%;
    max-width: 35rem;
    height: 6rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.p-about__ttl {
  max-width: 76.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__ttl {
    max-width: 32.8rem;
  }
}

.p-about__txt {
  text-align: center;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about__txt {
    font-size: 1.9rem;
  }
}
.p-about__txt strong {
  font-size: 5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about__txt strong {
    font-size: 2.4rem;
  }
}

.p-about__wrap {
  margin-top: 5.1rem;
  position: relative;
}

.p-about__main {
  max-width: 45.2rem;
  width: 31.3888888889vw;
  aspect-ratio: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  border-radius: 50%;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, color-stop(1%, #e85582), color-stop(26%, #e1568c), color-stop(50%, #d25697), color-stop(75%, #c556a4), to(#ba59af));
  background: linear-gradient(to left, #e85582 1%, #e1568c 26%, #d25697 50%, #c556a4 75%, #ba59af);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-about__main {
    width: 36.9230769231vw;
    max-width: 17.5rem;
    gap: 0.2rem;
  }
}

.p-about__main-img {
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .p-about__main-img {
    width: 10rem;
  }
}

.p-about__main-txt {
  font-size: 3.7rem;
  line-height: 1.5945945946;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about__main-txt {
    font-size: 1.4rem;
  }
}

.p-about__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8rem 28rem;
}
@media screen and (max-width: 767px) {
  .p-about__list {
    gap: 11.8rem 0.2rem;
  }
}

.p-about__item {
  border: 0.3rem solid #d37384;
  position: relative;
  min-height: 27rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem 1rem 1.5rem;
  border-radius: 1.5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-about__item {
    min-height: 14rem;
    padding: 1rem 0.5rem;
  }
}
.p-about__item:nth-of-type(1) .p-about__item-ttl {
  background-color: #bd1da5;
}
@media screen and (max-width: 767px) {
  .p-about__item:nth-of-type(1) .p-about__item-img {
    width: 10rem;
  }
}
.p-about__item:nth-of-type(2) .p-about__item-ttl {
  background-color: #d37384;
}
@media screen and (max-width: 767px) {
  .p-about__item:nth-of-type(2) .p-about__item-img {
    width: 3.8rem;
  }
}
.p-about__item:nth-of-type(3) .p-about__item-ttl {
  background-color: #f26f9d;
}
@media screen and (max-width: 767px) {
  .p-about__item:nth-of-type(3) .p-about__item-img {
    width: 4.7rem;
  }
}
.p-about__item:nth-of-type(3) .p-about__item-txt {
  margin-top: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-about__item:nth-of-type(3) .p-about__item-txt {
    margin-top: 0.5rem;
  }
}
.p-about__item:nth-of-type(4) .p-about__item-ttl {
  background-color: #e348cc;
}
@media screen and (max-width: 767px) {
  .p-about__item:nth-of-type(4) .p-about__item-img {
    width: 3.6rem;
  }
}
.p-about__item:nth-of-type(4) .p-about__item-txt {
  margin-top: 3.1rem;
}
@media screen and (max-width: 767px) {
  .p-about__item:nth-of-type(4) .p-about__item-txt {
    margin-top: 0.5rem;
  }
}
.p-about__item:nth-of-type(odd) {
  border-radius: 1.5rem 1.5rem 1.5rem 0;
}
.p-about__item:nth-of-type(even) {
  border-radius: 1.5rem 1.5rem 0 1.5rem;
}

.p-about__item-ttl {
  width: 26rem;
  min-height: 6rem;
  font-size: 2.1rem;
  line-height: 1.1904761905;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
}
@media screen and (max-width: 767px) {
  .p-about__item-ttl {
    width: 13.4rem;
    min-height: 2.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 0.6rem 1rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.p-about__item-txt {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.4761904762;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about__item-txt {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* ---------- important ----------*/
.p-important {
  background-color: #f7f7f7;
}

.p-important__container {
  padding-block: 4.2rem;
}

.p-important__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-important__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
  }
}

.p-important__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-important__ttl {
  font-size: 3.8rem;
  line-height: 1.5789473684;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-important__ttl {
    font-size: 2.4rem;
  }
}
.p-important__ttl span {
  display: inline-block;
  color: #fff;
  background-color: #333;
  padding-inline: 1rem;
  margin-right: 1.2rem;
}

.p-important__txt {
  margin-top: 2.5rem;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: -0.015em;
}
@media screen and (max-width: 767px) {
  .p-important__txt {
    font-size: 1.4rem;
  }
}

.p-important__img {
  width: 100%;
  max-width: 55.8rem;
}

/* ---------- effect ----------*/
.p-effect__container {
  max-width: 1330px;
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .p-effect__container {
    padding-block: 4.6rem 3.6rem;
  }
}

.p-effect__ttl {
  text-align: center;
}
.p-effect__ttl span {
  min-height: 9.3rem;
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: #fff;
  padding: 1.2rem 0.6rem;
  background: url(../img/effect_ttl_bg.png) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .p-effect__ttl span {
    min-height: 4rem;
    font-size: 1.3rem;
    line-height: 1.2307692308;
    padding-block: 0.5rem 1.6rem;
  }
}

.p-effect__comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-effect__comment {
    margin-top: 1.4rem;
    gap: 3.4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-effect__txt {
  width: 100%;
  max-width: 41.3rem;
  min-height: 15.3rem;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 700;
  padding: 1rem 3rem 1rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-effect__txt {
    max-width: 16.2rem;
    min-height: 16.3rem;
    font-size: 1.2rem;
    padding: 1.5rem 1.1rem 1.2rem 1.8rem;
  }
}
.p-effect__txt::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../img/bubble01.png) center right/contain no-repeat;
  -webkit-filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.1));
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-effect__txt::before {
    background: url(../img/bubble01_sp.png) center right/contain no-repeat;
  }
}
.p-effect__txt strong {
  font-weight: 700;
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-effect__txt strong {
    font-size: 1.4rem;
  }
}
.p-effect__txt:nth-of-type(2)::before {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}

.p-effect__img {
  max-width: 82.9rem;
  margin: -11.4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-effect__img {
    margin-top: 2.9rem;
    max-width: 45rem;
  }
}

/* ---------- influencer ----------*/
.p-influencer__container {
  padding-block: 6.8rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-influencer__container {
    padding-block: 4.1rem;
  }
}

.p-influencer__ttl {
  text-align: center;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-influencer__ttl {
    font-size: 1.8rem;
  }
}
.p-influencer__ttl span {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .p-influencer__ttl span {
    font-size: 2rem;
  }
}

.p-influencer__wrap {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/influencer_bg.jpg) no-repeat center/cover;
  padding: 3.3rem 2rem 3.7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-influencer__wrap {
    margin-top: 3.3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.2rem;
    background: url(../img/influencer_bg_sp.jpg) no-repeat center/cover;
    padding: 6rem 1rem 5.2rem;
  }
}
.p-influencer__wrap::before, .p-influencer__wrap::after {
  content: "";
  display: inline-block;
  width: 6.1rem;
  height: 5.2rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-influencer__wrap::before, .p-influencer__wrap::after {
    width: 3.6rem;
    height: 2.5rem;
  }
}
.p-influencer__wrap::before {
  background-color: #b0b1b1;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.p-influencer__wrap::after {
  background-color: #fff;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 0 0);
          clip-path: polygon(100% 0, 0% 100%, 0 0);
}

.p-influencer__content {
  max-width: 51.3rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-influencer__content {
    max-width: 26.2rem;
  }
}

.p-influencer__txt {
  min-height: 20.5rem;
  background: url(../img/bubble02.png) no-repeat center/cover;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-influencer__txt {
    padding: 1rem;
    min-height: auto;
    padding: 2.2rem 2.6rem 2.4rem 2.3rem;
    background: url(../img/bubble02_sp.png) no-repeat center/cover;
    font-size: 1.4rem;
  }
}
.p-influencer__txt strong {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-influencer__txt strong {
    font-size: 1.4rem;
  }
}

.p-influencer__img {
  max-width: 59.1rem;
  width: 100%;
  margin-left: -5rem;
}
@media screen and (max-width: 767px) {
  .p-influencer__img {
    margin-left: 0;
  }
}

/* ---------- case ----------*/
.p-case {
  background-color: #f7eef2;
  position: relative;
  z-index: 1;
}
.p-case::before {
  content: "";
  display: inline-block;
  width: 32.8rem;
  height: 8.3rem;
  background: url(../img/case_icon.png) center/contain no-repeat;
  position: absolute;
  top: 11.1rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-case::before {
    content: none;
  }
}

.p-case__container {
  max-width: 1360px;
  padding-block: 10rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-case__container {
    padding-block: 4rem 7.5rem;
  }
}

.p-case__head {
  text-align: center;
}

.p-case__sub {
  display: block;
  font-size: 3rem;
  line-height: 1.7;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-case__sub {
    font-size: 1.4rem;
  }
}

.p-case__ttl {
  display: inline-block;
  font-size: 5rem;
  line-height: 1.7;
  letter-spacing: -0.015em;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-case__ttl {
    font-size: 2.5rem;
  }
}
.p-case__ttl::before {
  content: "→";
  font-size: 3.8rem;
  line-height: 1.7105263158;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: #b0b1b1;
  margin-right: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-case__ttl::before {
    font-size: 1.9rem;
    margin-right: 0.2rem;
  }
}
.p-case__ttl span {
  position: relative;
}
.p-case__ttl span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2.5rem;
  background-color: #fde8ba;
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-case__ttl span::after {
    height: 1rem;
    bottom: 0;
  }
}

.p-case__wrap {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-case__wrap {
    margin-top: 4.1rem;
  }
}

.p-case__col {
  padding: 5rem 4rem;
  background-color: #fff;
  border-radius: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-case__col {
    padding: 4.5rem 1.5rem 5.9rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
  }
}
.p-case__col + .p-case__col {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-case__col + .p-case__col {
    margin-top: 7rem;
  }
}

.p-case__dl {
  margin-top: 5.7rem;
  width: 100%;
  max-width: 32.4rem;
  background-color: #fcf4f6;
  border: 1px solid #daa4d4;
  border-radius: 1.5rem;
  min-height: 48.5rem;
  padding: 3.8rem 1.3rem 2rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-case__dl {
    margin-top: 0;
    max-width: 45rem;
    padding: 3.8rem 1.6rem 3.2rem;
  }
}

.p-case__dt {
  margin-top: 4.1rem;
  font-size: 1.8rem;
  letter-spacing: -0.015em;
}
.p-case__dt:first-of-type {
  margin-top: 0;
}

.p-case__dd {
  margin-top: 1.1rem;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.p-case__dd + .p-case__dd {
  margin-top: 0.8rem;
}

.p-case__img {
  width: 100%;
  max-width: 77rem;
}
@media screen and (max-width: 767px) {
  .p-case__img {
    max-width: 45rem;
  }
}

/* ---------- design ----------*/
.p-design__container {
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .p-design__container {
    padding-block: 6rem;
  }
}

.p-design__head {
  text-align: center;
}
.p-design__head strong {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .p-design__head strong {
    font-size: 2.4rem;
  }
}

.p-design__sub {
  display: block;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-design__sub {
    font-size: 1.4rem;
  }
}

.p-design__ttl {
  display: block;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-design__ttl {
    font-size: 1.8rem;
  }
}
.p-design__ttl strong {
  display: inline-block;
  margin-right: -2rem;
}
@media screen and (max-width: 767px) {
  .p-design__ttl strong {
    margin-right: -1rem;
  }
}

.p-design__table {
  margin-top: 3rem;
  background-color: #f7f7f7;
  padding: 2rem 1.6rem;
  overflow-x: scroll;
}
.p-design__table img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-design__table img {
    min-width: 60rem;
  }
}

/* ---------- sns ----------*/
.p-sns {
  background: -webkit-gradient(linear, left top, left bottom, from(#fcf8fc), color-stop(85%, #fcf8fc), to(#f4f3f3));
  background: linear-gradient(#fcf8fc, #fcf8fc 85%, #f4f3f3);
  padding-bottom: 4.5833333333vw;
}
@media screen and (max-width: 767px) {
  .p-sns {
    padding-bottom: 30.4vw;
  }
}

.p-sns__container {
  padding-block: 7.4rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-sns__container {
    padding-block: 6rem;
  }
}

.p-sns__ttl {
  text-align: center;
}
.p-sns__ttl span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.1rem;
  font-size: 5rem;
  line-height: 1.44;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-sns__ttl span {
    font-size: 3rem;
    gap: 1rem;
  }
}
.p-sns__ttl span::before, .p-sns__ttl span::after {
  content: "";
  display: inline-block;
  width: 10.7rem;
  height: 1px;
  background-color: #9c9c9c;
}
@media screen and (max-width: 767px) {
  .p-sns__ttl span::before, .p-sns__ttl span::after {
    width: 5rem;
  }
}

.p-sns__col {
  margin-top: 3.4rem;
}
.p-sns__col + .p-sns__col {
  margin-top: 6rem;
}

.p-sns__sub {
  text-align: center;
}
.p-sns__sub span {
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: -0.015em;
  font-weight: 700;
  display: inline-block;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, color-stop(1%, #e85582), color-stop(26%, #e1568c), color-stop(50%, #d25697), color-stop(75%, #c556a4), to(#ba59af));
  background: linear-gradient(to left, #e85582 1%, #e1568c 26%, #d25697 50%, #c556a4 75%, #ba59af);
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .p-sns__sub span {
    font-size: 1.8rem;
    padding: 1rem;
  }
}

.p-sns__list {
  margin-top: 2.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-sns__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2rem;
    gap: 3rem;
  }
}

.p-sns__item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-sns__item {
    width: 100%;
    max-width: 50rem;
  }
}
.p-sns__item:nth-of-type(1) {
  position: relative;
}
.p-sns__item:nth-of-type(1)::before {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 15rem;
  background-color: #bb5ab0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(80%, -50%);
          transform: translate(80%, -50%);
}
@media screen and (max-width: 767px) {
  .p-sns__item:nth-of-type(1)::before {
    width: 5rem;
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 60%) rotate(90deg);
            transform: translate(-50%, 60%) rotate(90deg);
  }
}

.p-sns__add {
  margin-top: 20.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sns__add {
    margin-top: 16rem;
  }
}
.p-sns__add::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 4.5rem;
  background: url(../img/sns_icon.svg) center/contain no-repeat;
  position: absolute;
  top: -9.4rem;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

.p-sns__head {
  text-align: center;
}

.p-sns__add-ttl {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 2.1428571429;
  letter-spacing: -0.015em;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sns__add-ttl {
    font-size: 1.8rem;
  }
}
.p-sns__add-ttl strong {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-sns__add-ttl strong {
    font-size: 2rem;
  }
}

.p-sns__add-sub {
  background-color: #fff;
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: -0.015em;
  font-weight: 700;
  padding: 0.7rem 0 0.7rem 0.7rem;
  border: 0.3rem solid #bb5ab0;
  position: absolute;
  top: -4rem;
  left: 3rem;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
@media screen and (max-width: 767px) {
  .p-sns__add-sub {
    font-size: 1.8rem;
    padding: 0.4rem 0 0.4rem 0.4rem;
    border-width: 1px;
  }
}

.p-sns__add-txt {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 2.8rem;
  line-height: 2.0714285714;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-sns__add-txt {
    font-size: 1.8rem;
  }
}
.p-sns__add-txt span {
  font-size: 3rem;
  line-height: 1.9333333333;
  display: inline-block;
  color: #fff;
  background-color: #333;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-sns__add-txt span {
    font-size: 2rem;
  }
}
.p-sns__add-txt span:nth-of-type(2) {
  margin-top: 1.9rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-sns__add-txt span:nth-of-type(2) {
    margin-top: 1rem;
  }
}

/* ---------- system ----------*/
.p-system {
  position: relative;
}
.p-system::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 7.5rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (max-width: 767px) {
  .p-system::before {
    height: 4rem;
  }
}

.p-system__head {
  margin-top: -4.5833333333vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-system__head {
    margin-top: -30.4vw;
  }
}

.p-system__ttl {
  max-width: 68.8rem;
  width: 47.7777777778vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
}
@media screen and (max-width: 767px) {
  .p-system__ttl {
    width: 80%;
  }
}

.p-system__container {
  padding-block: 3.5rem 7.3rem;
}

.p-system__list {
  margin-inline: auto;
  max-width: 80rem;
}

.p-system__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-system__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
.p-system__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-system__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-system__item + .p-system__item {
  margin-top: 5.6rem;
}
.p-system__item:nth-of-type(1) .p-system__item-number {
  color: #bb5ab0;
}
.p-system__item:nth-of-type(2) .p-system__item-number {
  color: #786ccf;
}
.p-system__item:nth-of-type(3) .p-system__item-number {
  color: #4a38ca;
}
.p-system__item:nth-of-type(4) .p-system__item-number {
  color: #027cd5;
}
.p-system__item:nth-of-type(5) .p-system__item-number {
  color: #01a5c6;
}

.p-system__item-img {
  max-width: 19.5rem;
}
@media screen and (max-width: 767px) {
  .p-system__item-img {
    max-width: 10rem;
  }
}

.p-system__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-system__item-number {
  font-family: "Montserrat", sans-serif;
  font-size: 4.5rem;
  line-height: 1.3555555556;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-system__item-number {
    font-size: 3rem;
  }
}

.p-system__item-ttl {
  margin-top: 1.6rem;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-system__item-ttl {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}

.p-system__item-txt {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
}
@media screen and (max-width: 767px) {
  .p-system__item-txt {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

/* ---------- structure ----------*/
.p-structure {
  background-color: #fbffd2;
}

.p-structure__container {
  max-width: 1360px;
  padding-block: 13.6rem 7.9rem;
}
@media screen and (max-width: 767px) {
  .p-structure__container {
    padding-block: 8rem 6rem;
  }
}

.p-structure__head {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.9rem;
}
.p-structure__head::before, .p-structure__head::after {
  content: "";
  display: inline-block;
  width: 4.5rem;
  height: 7.8rem;
  background: url(../img/icon_attention.svg) center/contain no-repeat;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-structure__head::before, .p-structure__head::after {
    width: 2.2rem;
    height: 4rem;
  }
}
.p-structure__head::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-structure__ttl {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.9285714286;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-structure__ttl {
    font-size: 1.8rem;
  }
}
.p-structure__ttl span {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-structure__ttl span {
    font-size: 2rem;
  }
}
.p-structure__ttl strong {
  display: inline-block;
  background-color: #e0558d;
  line-height: 1.6071428571;
  padding-inline: 0.3rem;
  margin-right: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-structure__ttl strong {
    margin-right: 0.5rem;
  }
}

.p-structure__txt {
  max-width: 85.7rem;
  margin: 0.9rem auto 0;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: -0.015em;
}
@media screen and (max-width: 767px) {
  .p-structure__txt {
    font-size: 1.4rem;
    margin-top: 3.6rem;
  }
}
.p-structure__txt strong {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-structure__txt strong {
    font-size: 1.4rem;
  }
}

.p-structure__col {
  margin-top: 11.7rem;
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 8.3rem 2rem 7.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-structure__col {
    margin-top: 4rem;
    padding: 4.7rem 1.5rem 5.1rem;
  }
}
.p-structure__col:nth-of-type(1) .p-structure__img {
  max-width: 100rem;
}
@media screen and (max-width: 767px) {
  .p-structure__col:nth-of-type(1) .p-structure__img {
    max-width: 45rem;
  }
}
.p-structure__col:nth-of-type(2) .p-structure__img {
  max-width: 127.3rem;
}
@media screen and (max-width: 767px) {
  .p-structure__col:nth-of-type(2) .p-structure__img {
    max-width: 45rem;
  }
}
.p-structure__col + .p-structure__col {
  margin-top: 8.3rem;
}

.p-structure__sub {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.p-structure__sub span {
  display: inline-block;
  font-size: 4.5rem;
  line-height: 1.5333333333;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: #fff;
  background-color: #333;
  padding-inline: 2.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-structure__sub span {
    padding-inline: 1rem;
    font-size: 2rem;
    line-height: 2.05;
  }
}
.p-structure__sub span::before, .p-structure__sub span::after {
  content: "";
  display: inline-block;
  width: 1.9rem;
  height: 100%;
  background-color: #333;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-structure__sub span::before, .p-structure__sub span::after {
    width: 1.3rem;
  }
}
.p-structure__sub span::before {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  left: 0;
}
.p-structure__sub span::after {
  -webkit-transform: translateX(100%) scale(-1, 1);
          transform: translateX(100%) scale(-1, 1);
  right: 0;
}

.p-structure__img {
  margin-inline: auto;
}
.p-structure__img img {
  width: 100%;
}

/* ---------- campaign ----------*/
.p-campaign {
  background: url(../img/campaign_bg.jpg) no-repeat center/cover;
}

.p-campaign__container {
  padding-block: 5.7rem 5.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-campaign__container {
    padding-block: 4rem;
  }
}

.p-campaign__cap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12.5rem;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  padding: 1.6rem 2rem;
  color: #fff;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-campaign__cap {
    font-size: 1.8rem;
    width: 8rem;
    padding: 1rem;
  }
}
.p-campaign__cap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.6rem;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-campaign__cap::before {
    height: 1rem;
  }
}

.p-campaign__ttl {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #fff;
  font-size: 4.8rem;
  line-height: 1.0416666667;
  letter-spacing: -0.015em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-campaign__ttl {
    font-size: 2.4rem;
  }
}
.p-campaign__ttl .icon {
  font-size: 4.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-campaign__ttl .icon {
    font-size: 2rem;
  }
}
.p-campaign__ttl .icon::before, .p-campaign__ttl .icon::after {
  content: "";
  display: inline-block;
  width: 4.5rem;
  height: 5.5rem;
  background: url(../img/icon_attention_white.svg) no-repeat center/contain;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-campaign__ttl .icon::before, .p-campaign__ttl .icon::after {
    width: 2.2rem;
    height: 2.7rem;
    margin-top: 0;
  }
}
.p-campaign__ttl .icon::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-campaign__ttl .price {
  display: inline-block;
  font-size: 5.7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-campaign__ttl .price {
    font-size: 2.8rem;
  }
}
.p-campaign__ttl .price::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.5rem;
  background-color: #d00505;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(10deg);
          transform: translate(-50%, -50%) rotate(10deg);
}
@media screen and (max-width: 767px) {
  .p-campaign__ttl .price::before {
    height: 0.3rem;
  }
}
.p-campaign__ttl .small {
  font-size: 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-campaign__ttl .small {
    font-size: 1.8rem;
  }
}
.p-campaign__ttl .big {
  font-size: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-campaign__ttl .big {
    font-size: 3rem;
  }
}

.p-campaign__body {
  margin-top: 3.1rem;
  background-color: #fff;
  border-radius: 12rem;
  padding: 1.9rem 4rem 1.5rem 9.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-campaign__body {
    border-radius: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 3rem;
  }
}

.p-campaign__txt {
  font-size: 2.5rem;
  line-height: 1.28;
  letter-spacing: -0.015em;
}
@media screen and (max-width: 767px) {
  .p-campaign__txt {
    font-size: 1.6rem;
  }
}

/* ---------- comparition ----------*/
.p-comparition {
  background: url(../img/comparition_bg.jpg) no-repeat center/cover;
}

.p-comparition__container {
  padding-block: 8.1rem;
}
@media screen and (max-width: 767px) {
  .p-comparition__container {
    padding-block: 6rem;
  }
}

.p-comparition__table {
  margin-top: 5.1rem;
}
@media screen and (max-width: 767px) {
  .p-comparition__table {
    margin-top: 4rem;
    overflow-x: scroll;
  }
}
.p-comparition__table img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-comparition__table img {
    min-width: 60rem;
  }
}

/* ---------- result ----------*/
.p-result {
  background-color: #fcf4fc;
}

.p-result__container {
  padding-block: 8rem 11.9rem;
}
@media screen and (max-width: 767px) {
  .p-result__container {
    padding-block: 6rem;
  }
}

.p-result__wrap {
  max-width: 112rem;
  margin: 5.3rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-result__wrap {
    margin-top: 2rem;
  }
}

.p-result__splide .p-result__list {
  padding-block: 2rem !important;
}
.p-result__splide .p-result__item {
  margin-inline: 2rem;
}
.p-result__splide .splide__arrow {
  background-color: #bb5ab0;
  border-radius: 50%;
  width: 5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-result__splide .splide__arrow::before {
  content: "";
  display: inline-block;
  width: 0.9rem;
  height: 1.4rem;
  background: url(../img/icon_slider_arrow.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-result__splide .splide__arrow--prev {
  left: -6.6rem;
}
@media screen and (max-width: 1280px) {
  .p-result__splide .splide__arrow--prev {
    left: -1rem;
  }
}
.p-result__splide .splide__arrow--next {
  right: -6.6rem;
}
@media screen and (max-width: 1280px) {
  .p-result__splide .splide__arrow--next {
    right: -1rem;
  }
}
.p-result__splide .splide__arrow--next::before {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}
.p-result__splide .splide__pagination {
  gap: 1.2rem;
  position: absolute;
  bottom: -3.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-result__splide .splide__pagination__page {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #989696;
}
.p-result__splide .splide__pagination__page.is-active {
  opacity: 0.7;
}

.p-result__item {
  min-height: 30rem;
  max-width: calc(100% - 4rem);
  margin-left: 1rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.4rem 1.4rem #cfa8b6;
          box-shadow: 0 0.4rem 1.4rem #cfa8b6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem 3rem 2.1rem 3.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-result__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3rem 2rem;
  }
}

.p-result__item-cat {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3.2rem;
  line-height: 1.59375;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, color-stop(1%, #e85582), color-stop(26%, #e1568c), color-stop(50%, #d25697), color-stop(75%, #c556a4), to(#ba59af));
  background: linear-gradient(to left, #e85582 1%, #e1568c 26%, #d25697 50%, #c556a4 75%, #ba59af);
  padding-inline: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-result__item-cat {
    font-size: 2rem;
    padding-inline: 1.6rem;
  }
}

.p-result__item-content {
  margin-top: 5.7rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-result__item-content {
    margin-top: 2rem;
  }
}

.p-result__item-txt {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-result__item-txt {
    font-size: 1.4rem;
  }
}

.p-result__item-img {
  width: 100%;
  max-width: 43.5rem;
}

/* ---------- plan ----------*/
.p-plan__container {
  padding-block: 8rem 6.4rem;
  padding-block: 6rem;
}

.p-plan__table {
  margin-top: 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-plan__table {
    overflow-x: scroll;
    margin-top: 4rem;
  }
}
.p-plan__table img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-plan__table img {
    min-width: 60rem;
  }
}

.p-plan__caution {
  margin-top: 3.3rem;
  font-size: 1.8rem;
  line-height: 1.2222222222;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: #9c9c9c;
}
@media screen and (max-width: 767px) {
  .p-plan__caution {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}

.p-plan__option {
  margin-top: 8.2rem;
}
@media screen and (max-width: 767px) {
  .p-plan__option {
    margin-top: 6rem;
  }
}

.p-plan__option-ttl {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.3125;
  letter-spacing: -0.015em;
  font-weight: 700;
  padding-bottom: 1.9rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-plan__option-ttl {
    font-size: 2rem;
    padding-bottom: 1.6rem;
  }
}
.p-plan__option-ttl::before {
  content: "";
  display: inline-block;
  width: 4.1rem;
  height: 0.3rem;
  background-color: #9c9c9c;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-plan__option-ttl::before {
    width: 3rem;
    height: 0.2rem;
  }
}

.p-plan__option-wrap {
  max-width: 94.4rem;
  margin: 4.1rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-plan__option-wrap {
    margin-top: 3rem;
    overflow-x: scroll;
  }
}

.p-plan__option-band {
  width: 100%;
  height: 3rem;
  background: -webkit-gradient(linear, right top, left top, color-stop(1%, #e85582), color-stop(26%, #e1568c), color-stop(50%, #d25697), color-stop(75%, #c556a4), to(#ba59af));
  background: linear-gradient(to left, #e85582 1%, #e1568c 26%, #d25697 50%, #c556a4 75%, #ba59af);
}
@media screen and (max-width: 767px) {
  .p-plan__option-band {
    min-width: 50rem;
  }
}

.p-plan__option-table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-plan__option-table {
    min-width: 50rem;
  }
}
.p-plan__option-table th,
.p-plan__option-table td {
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 700;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-plan__option-table th,
  .p-plan__option-table td {
    font-size: 1.4rem;
  }
}
.p-plan__option-table th {
  width: 69.8093220339%;
  padding: 1rem 3.1rem;
}
@media screen and (max-width: 767px) {
  .p-plan__option-table th {
    padding: 1rem 2rem;
  }
}
.p-plan__option-table td {
  width: 30.1906779661%;
  padding: 1rem 3rem 1rem 9.6rem;
  border-left: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .p-plan__option-table td {
    padding: 1rem 2rem;
  }
}
.p-plan__option-table tr:nth-of-type(odd) th,
.p-plan__option-table tr:nth-of-type(odd) td {
  background-color: #f7f7f7;
}
.p-plan__option-table tr:nth-of-type(even) th,
.p-plan__option-table tr:nth-of-type(even) td {
  background-color: #fff;
}

/* ---------- introduction ----------*/
.p-introduction {
  background: url(../img/introduction_bg.jpg) no-repeat center/cover;
  color: #fff;
}

.p-introduction__container {
  padding-block: 7.9rem 8.3rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__container {
    padding-block: 6rem;
  }
}

.p-introduction__ttl {
  font-size: 5rem;
  line-height: 1.7;
  letter-spacing: -0.015em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-introduction__ttl {
    font-size: 3rem;
  }
}

.p-introduction__list {
  max-width: 79rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-introduction__list {
    margin-top: 4rem;
  }
}

.p-introduction__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
}
.p-introduction__item + .p-introduction__item {
  margin-top: 8.2rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__item + .p-introduction__item {
    margin-top: 6rem;
  }
}
.p-introduction__item:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-introduction__item:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-introduction__item-img {
  width: 100%;
  max-width: 35.3rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__item-img {
    max-width: none;
  }
}

.p-introduction__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-introduction__position {
  font-size: 2.8rem;
  line-height: 1.7142857143;
  letter-spacing: -0.015em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-introduction__position {
    font-size: 1.8rem;
  }
}
.p-introduction__position strong {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__position strong {
    font-size: 2rem;
  }
}

.p-introduction__item-name {
  font-size: 3.2rem;
  line-height: 1.6875;
  letter-spacing: -0.015em;
  margin-top: 3.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__item-name {
    font-size: 2.2rem;
    margin-top: 2rem;
    gap: 1rem;
  }
}

.p-introduction__item-txt {
  font-size: 2.8rem;
  line-height: 1.7142857143;
  letter-spacing: -0.015em;
}
@media screen and (max-width: 767px) {
  .p-introduction__item-txt {
    font-size: 1.8rem;
  }
}

/* ---------- faq ----------*/
.p-faq__container {
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .p-faq__container {
    padding-block: 6rem;
  }
}

.p-faq__list {
  margin-top: 3.8rem;
}

.p-faq__item + .p-faq__item {
  margin-top: 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item + .p-faq__item {
    margin-top: 2rem;
  }
}

.p-faq__item-ttl {
  cursor: pointer;
  font-size: 2rem;
  line-height: 1.7;
  padding: 2.3rem 7.6rem 2.3rem 10rem;
  background-color: #f7f7f7;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__item-ttl {
    padding: 2rem 4rem 2rem 6rem;
    font-size: 1.6rem;
  }
}
.p-faq__item-ttl::before {
  content: "Q";
  color: #fff;
  width: 4.3rem;
  height: 4.3rem;
  background-color: #333;
  font-size: 1.9rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 1.9rem;
  left: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item-ttl::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    top: 2.4rem;
    left: 1.6rem;
  }
}
.p-faq__item-ttl.is-active .p-faq__btn::after {
  opacity: 0;
}

.p-faq__btn {
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  position: absolute;
  top: 50%;
  right: 2.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-faq__btn {
    right: 1.6rem;
  }
}
.p-faq__btn::before, .p-faq__btn::after {
  content: "";
  width: 100%;
  height: 0.2rem;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-faq__btn::after {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__item-txt {
  display: none;
  background-color: #fff;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 2.8rem 3.1rem 2.8rem 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__item-txt {
    padding: 2rem 3rem 2rem 6rem;
    font-size: 1.6rem;
  }
}
.p-faq__item-txt::before {
  content: "A";
  color: #fff;
  width: 4.3rem;
  height: 4.3rem;
  background-color: #e0558d;
  font-size: 1.9rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 2.8rem;
  left: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item-txt::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    top: 2.4rem;
    left: 1.6rem;
  }
}

/* ---------- contact ----------*/
.p-contact {
  background-color: #ecddec;
}

.p-contact__container {
  padding-block: 8rem 11rem;
}
@media screen and (max-width: 767px) {
  .p-contact__container {
    padding-block: 6rem;
  }
}

.p-contact__wrap {
  margin-top: 4.7rem;
  background-color: #f7f7f7;
  padding: 8rem 14rem;
}
@media screen and (max-width: 767px) {
  .p-contact__wrap {
    margin-top: 4rem;
    padding: 3rem 2rem;
  }
}

.p-contact__col + .p-contact__col {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__col + .p-contact__col {
    margin-top: 2.4rem;
  }
}

.p-contact__label {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact__label {
    font-size: 1.6rem;
  }
}
.p-contact__label span {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  background-color: #bb5ab0;
  padding-inline: 0.8rem;
  margin-bottom: 0.8rem;
}

.p-contact__input {
  margin-top: 0.8rem;
}
.p-contact__input input[type=text],
.p-contact__input input[type=email],
.p-contact__input input[type=tel],
.p-contact__input textarea {
  width: 100%;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.25;
  padding: 1.3rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input input[type=text],
  .p-contact__input input[type=email],
  .p-contact__input input[type=tel],
  .p-contact__input textarea {
    padding: 1rem 1.6rem;
  }
}
.p-contact__input textarea {
  resize: none;
  height: 24rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input textarea {
    height: 18rem;
  }
}

.p-contact__privacy {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy {
    margin-top: 2rem;
  }
}
.p-contact__privacy label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy label {
    font-size: 1.2rem;
  }
}
.p-contact__privacy input[type=checkbox] {
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.1rem solid #ddd;
  background-color: #fff;
  position: relative;
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy input[type=checkbox] {
    margin-right: 1rem;
  }
}
.p-contact__privacy input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%) rotate(50deg);
          transform: translate(-50%, -60%) rotate(50deg);
  width: 0.7rem;
  height: 1.2rem;
  border-right: 0.2rem solid #e0558d;
  border-bottom: 0.2rem solid #e0558d;
}

.p-contact__btn {
  margin-top: 5.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__btn {
    margin-top: 3rem;
  }
}

/* ----------------------------------------------------
Utility
---------------------------------------------------- */
/* ---------- sp/tab Show Hide ----------*/
@media screen and (min-width: 1024px) {
  .u-tab-show {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .u-tab-hide {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-show {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-hide {
    display: none;
  }
}

/* ---------- color ----------*/
.u-color-primary {
  color: #bb5ab0;
}

.u-color-secondary {
  color: #e0558d;
}

.u-color-white {
  color: #fff;
}

.u-color-black {
  color: #000;
}

.u-color-text {
  color: #333;
}

.u-color-primary-gradation {
  background: -webkit-gradient(linear, right top, left top, from(#f9f870), color-stop(14%, #ffa068), color-stop(34%, #ff7881), color-stop(67%, #ee5e9e), to(#b457b4));
  background: linear-gradient(to left, #f9f870, #ffa068 14%, #ff7881 34%, #ee5e9e 67%, #b457b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-color-secondary-gradation {
  background: -webkit-gradient(linear, right top, left top, color-stop(1%, #e85582), color-stop(26%, #e1568c), color-stop(50%, #d25697), color-stop(75%, #c556a4), to(#ba59af));
  background: linear-gradient(to left, #e85582 1%, #e1568c 26%, #d25697 50%, #c556a4 75%, #ba59af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- align ----------*/
.u-align-left {
  text-align: left;
}

.u-align-center {
  text-align: center;
}

.u-align-right {
  text-align: right;
}

.u-align-justify {
  text-align: justify;
}

/* ---------- font ----------*/
.u-font-sans {
  font-family: "Noto Sans JP", 遊ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
}

.u-font-serif {
  font-family: "", "游明朝", YuMincho, "ヒイラギ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
}

.u-font-english {
  font-family: "Montserrat", sans-serif;
}