@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

/*iosのフォームボタンリセット*/
input[type=submit],
input[type=button],
input[type=reset] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus,
input[type=reset]::focus {
  outline-offset: -2px;
}

/*変数設定用*/
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

@media screen and (max-width: 1500px) {
  html {
    font-size: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
img {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #666666;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
a:hover img:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.vsp {
  display: none;
}

.vpc {
  display: block;
}

body {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  overflow-x: hidden;
}

.l-main {
  background: #FF6CA7;
  overflow: hidden;
  line-height: normal;
}

.l-container {
  max-width: 120rem;
  margin: auto;
  position: relative;
  padding-top: 0;
}

.wrap {
  background: url("./../images/bg_wrap.png");
  background-size: cover;
}

#conversion {
  margin-top: 0;
}

.l-header {
  display: none;
}

.l-header2 {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  z-index: 1000;
  padding: 0;
  width: auto;
}
.l-header2__hamburger {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: #fff;
  border: 0.1rem solid #ff2f83;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding-top: 1.1rem;
  transition: opacity 0.2s;
  position: relative;
  z-index: 1001;
  display: none;
}
.l-header2__hamburger-bars {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}
.l-header2__hamburger-bar {
  display: block;
  width: 1.8rem;
  height: 0.2rem;
  background: #ff2f83;
  border-radius: 0.1rem;
  transition: transform 0.3s ease;
}
.l-header2__hamburger-label {
  display: block;
  color: #ff2f83;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.l-header2__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 34rem;
  height: 100dvh;
  background: #ff2f83;
  padding: 9.6rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  z-index: 999;
  box-shadow: -0.4rem 0 1.2rem rgba(0, 0, 0, 0.15);
}
.l-header2__nav.-is-open {
  transform: translateX(0);
}
.l-header2__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.l-header2__nav-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.4rem;
  background: #fff;
  border-radius: 0.8rem;
  color: #ff2f83;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  border: 0.2rem solid #ff2f83;
  box-shadow: 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}
.l-header2__nav-item a:hover {
  opacity: 0.8;
}
.l-header2__nav-item a img {
  width: 3.2rem;
  height: auto;
  flex-shrink: 0;
}
.l-header2__nav-item a span {
  flex: 1;
}
.l-header2__pagetop:link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 2rem;
  width: 100%;
  height: 5.4rem;
  border: 0.2rem solid #ffffff;
  border-radius: 5.6rem;
  transition: opacity 0.2s;
}
.l-header2__pagetop:link:hover {
  opacity: 0.8;
}
.l-header2__pagetop-text {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
}
.l-header2__pagetop-icon {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.l-header2__pagetop-icon img {
  width: 100%;
  height: 100%;
}

.l-header2__hamburger[aria-expanded=true] .l-header2__hamburger-bar:first-child {
  transform: translateY(0.3rem) rotate(45deg);
}
.l-header2__hamburger[aria-expanded=true] .l-header2__hamburger-bar:last-child {
  transform: translateY(-0.3rem) rotate(-45deg);
}

.hero {
  position: relative;
  margin: 0 auto;
  padding: 4rem 4rem 0.5rem;
  width: 142rem;
}
.hero__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 33.1rem;
  z-index: 2;
}
.hero__photo {
  position: relative;
  border-radius: 3.6rem;
  overflow: hidden;
  line-height: 0;
  margin: auto;
}
.hero__heart {
  position: absolute;
  top: 3.7rem;
  left: -6.9rem;
  width: 27.8rem;
  z-index: 1;
}
.hero__hearts-top {
  position: absolute;
  top: -0.6rem;
  left: 126.3rem;
  width: 18.2rem;
  z-index: 2;
}
.hero .-yellowline {
  position: absolute;
  top: 58rem;
  left: 50%;
  transform: translateX(-50%);
  width: 251.7rem;
  z-index: 1;
  pointer-events: none;
}
.hero .-whiteline {
  position: absolute;
  top: 130rem;
  left: 50%;
  transform: translateX(-50%);
  width: 251.7rem;
  z-index: 1;
  pointer-events: none;
}

.plan {
  position: relative;
  margin: -28.8rem auto 0;
  padding: 0 2rem 8rem;
}
.plan:before {
  width: 100%;
  height: 118.1rem;
  background: url("./../images/bg_plan_grade.png");
  background-size: cover;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
.plan__heading {
  position: relative;
  z-index: 2;
  max-width: 100rem;
  margin: 0 auto;
}
.plan__heading-image {
  width: 100%;
}
.plan__heart-outline {
  position: absolute;
  top: 11.4rem;
  left: -22.7rem;
  width: 24rem;
  z-index: 1;
  pointer-events: none;
}
.plan__heart-small {
  position: absolute;
  top: 6.5rem;
  left: 106.3rem;
  width: 12.9rem;
  z-index: 1;
  pointer-events: none;
}

.price-card {
  position: relative;
  z-index: 2;
  max-width: 100rem;
  margin: auto;
  display: flex;
  gap: 1rem;
}
.price-card__sparkle {
  position: absolute;
  top: 12.8rem;
  right: -25rem;
  width: 23.8rem;
  z-index: 1;
  pointer-events: none;
}
.price-card__panel {
  flex: 0 0 26rem;
  width: 21.2rem;
  min-height: 25.6rem;
  background-color: #fdc0ce;
  background-image: url(../images/bg-price-glitter.png);
  background-size: cover;
  background-position: center;
  border: 0.4rem solid #ff2f83;
  border-radius: 1rem;
  padding: 2rem 1.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.price-card__logo {
  width: 16.5rem;
  margin: 0 auto 0.6rem;
}
.price-card__main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.price-card__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.price-card__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: #ff2f83;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 1.2rem;
  padding: 1rem 0.6rem;
  flex-wrap: wrap;
  border: 0.2rem solid #fff;
  height: 8rem;
}
.price-card__pill img {
  width: 3rem;
  height: auto;
}
.price-card__pill--sub {
  line-height: 1.3;
}
.price-card__pill--wide {
  grid-column: span 3;
}
.price-card__pill-icon {
  flex-shrink: 0;
}
.price-card__pill-sub {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  margin-top: -0.2rem;
}
.price-card__pill-text {
  padding-bottom: 0.3rem;
}
.price-card__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #ffe557;
  border: 0.4rem solid #ff2f83;
  border-radius: 1.2rem;
  padding: 1.2rem;
  position: relative;
}
.price-card__banner:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 4.5rem;
  height: 1.7rem;
  background: #ff2f83;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.price-card__banner img {
  width: 6.1rem;
  height: auto;
}
.price-card__banner-text {
  color: #ff2f83;
  font-size: 2.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.price-card__banner-text strong {
  font-size: 4.5rem;
  margin: 0 0.3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.price-card__yen {
  font-size: 2.6rem;
  margin-left: 0.2rem;
}
.price-card__tax {
  font-size: 2.4rem;
  margin-left: 0.4rem;
}

.content-nav {
  position: relative;
  z-index: 2;
  margin: 7rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -moz-column-gap: 1.3rem;
       column-gap: 1.3rem;
  row-gap: 1.7rem;
}
.content-nav__item {
  position: relative;
}
.content-nav__item:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #FF2F83;
  border-radius: 1rem;
  top: 0.6rem;
  left: 0.6rem;
}
.content-nav__item a {
  display: block;
  height: 22.3rem;
  background-color: #fff;
  border: 0.4rem solid #ff2f83;
  border-radius: 1.2rem;
  padding: 1.5rem 1rem 2.6rem;
  text-align: center;
  background-image: url("./../images/content_nav_bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: relative;
  z-index: 10;
}
.content-nav__item a:after {
  position: absolute;
  width: 2.4rem;
  height: 2.3rem;
  content: "";
  background: url("./../images/nav-arrow.png") no-repeat;
  background-size: contain;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.content-nav__icon {
  width: auto;
  max-height: 9.5rem;
  height: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1.2rem;
}
.content-nav__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ff2f83;
  line-height: 1.4;
}
.content-nav__title--small {
  font-size: 1.8rem;
}

.c-label {
  text-align: center;
}
.c-label span {
  display: inline-block;
  background: #ff2f83;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 1.5rem;
  padding: 0.3rem 2.4rem;
  border: 0.2rem solid #000;
  box-shadow: 0.2rem 0.3rem 0 #000;
  letter-spacing: 0.1em;
}

.c-heading {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  -webkit-text-stroke: 0.2rem #000;
  text-shadow: 0.4rem 0.4rem 0.1rem #000;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 2.4rem;
  position: relative;
  z-index: 10;
}
.c-heading:before {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background: url("./../images/deco_star_l.png");
  background-size: cover;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-heading:after {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background: url("./../images/deco_star_r.png");
  background-size: cover;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-heading .-white {
  font-family: inherit;
  color: #fff;
}
.c-heading .-yellow {
  font-family: inherit;
  color: #FFF92A;
}

.c-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.78;
  text-align: center;
  margin-bottom: 3rem;
}

.-blk {
  position: relative;
  color: #fff;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
.-blk:after {
  content: attr(data-text);
  color: #000;
  position: absolute;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.-edge {
  position: relative;
  color: #000;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
}
.-edge:after {
  content: attr(data-text);
  color: #fff;
  position: absolute;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.tgc {
  position: relative;
  z-index: 10;
}
.tgc__btn {
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 4rem;
}
.tgc__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44rem;
  height: 8rem;
  border-radius: 4rem;
  background: linear-gradient(#ffadce 0%, #ff2f83 100%);
  border: 0.2rem solid #ff2f83;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  position: relative;
}
.tgc__btn a > span > span {
  display: block;
  font-size: 1.4rem;
}
.tgc__btn a:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  background: url(./../images/icon_arrow_whitepink.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.about {
  position: relative;
  margin: 0 auto;
  padding: 10rem 0;
  background: #FF6CA7;
}
.about .l-container {
  position: relative;
}
.about .c-heading:before {
  display: none;
}
.about .c-heading:after {
  left: 81%;
  top: 86%;
}
.about__heart-lg {
  position: absolute;
  left: -4rem;
  top: -3.8rem;
  width: 29.4rem;
  z-index: 1;
  pointer-events: none;
}
.about__badge {
  position: absolute;
  left: 29.8rem;
  top: -2.5rem;
  width: 13.8rem;
  z-index: 1;
}
.about__heart-sm {
  position: absolute;
  right: 5.6rem;
  top: 10rem;
  width: 15.8rem;
  z-index: 1;
  pointer-events: none;
}
.about__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 70rem;
  margin: 0 auto;
}
.about__slider-wrap {
  position: relative;
  margin-top: 4rem;
  z-index: 10;
}
.about__slider .slick-slide {
  padding: 0 1rem;
}
.about__slider .slick-dots {
  list-style: none;
  text-align: center;
  margin-top: 4rem;
  padding: 0;
  position: static;
}
.about__slider .slick-dots li {
  display: inline-block;
  margin: 0 0.5rem;
  border: none;
}
.about__slider .slick-dots li button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0;
  border: 0.1rem solid #ff2f83;
}
.about__slider .slick-dots li button::before {
  display: none;
}
.about__slider .slick-dots li.slick-active {
  background-color: transparent;
}
.about__slider .slick-dots li.slick-active button {
  background-color: #fff92a;
}
.about__card {
  padding: 2rem;
  background: #F25A97;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 380/498;
}
.about .about__prev,
.about .about__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.about .about__prev img,
.about .about__next img {
  width: 100%;
}
.about .about__prev {
  left: -4rem;
}
.about .about__next {
  right: -4rem;
}

.pack {
  position: relative;
  margin: 0 auto;
  padding: 10rem 0;
  background-image: url(../images/bg-glitter.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.pack .-yellowline {
  position: absolute;
  top: -60rem;
  left: 50%;
  transform: translateX(-50%) rotate(60deg);
  width: 251.7rem;
  z-index: 1;
  pointer-events: none;
}
.pack .-whiteline {
  position: absolute;
  top: 22rem;
  left: 50%;
  transform: translateX(-50%) rotate(-60deg);
  width: 251.7rem;
  pointer-events: none;
}
.pack__girl {
  position: absolute;
  right: -11rem;
  top: -9.9rem;
  width: 21.6rem;
  z-index: 3;
  pointer-events: none;
}
.pack .c-label {
  position: relative;
  z-index: 10;
}
.pack .c-heading:before {
  left: 23%;
  top: 12%;
}
.pack .c-heading:after {
  left: 75%;
  top: 86%;
  z-index: -1;
}
.pack__block {
  position: relative;
  z-index: 10;
  margin: 0 auto 5rem;
  background: #fe6ca7;
  border-radius: 2rem;
  padding: 4rem;
}
.pack__description {
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.65;
  text-align: center;
  margin-bottom: 3rem;
}
.pack__price-area {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pack__detail-card {
  flex: 0 0 26rem;
  width: 26rem;
  min-height: 31.4rem;
  background-color: #fdc0ce;
  background-image: url(../images/bg-price-glitter.png);
  background-size: cover;
  background-position: center;
  border: 0.4rem solid #ff2f83;
  border-radius: 1rem;
  padding: 2rem 1.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pack__detail-logo {
  width: 19.2rem;
  height: auto;
  margin-bottom: 0.4rem;
}
.pack__price-detail {
  flex: 1;
  min-width: 0;
}
.pack__pills-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.pack__pills-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pack__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #ff2f83;
  color: #fff;
  border: 0.2rem solid #fff;
  border-radius: 1rem;
  padding: 0.8rem 0.4rem;
  min-height: 9.8rem;
  text-align: center;
  flex-wrap: wrap;
}
.pack__pill--sub {
  font-size: 1.3rem;
  gap: 0.2rem;
}
.pack__pill-icon {
  flex-shrink: 0;
}
.pack__pill-icon img {
  height: 3.9rem;
  width: auto;
}
.pack__pill-text {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
}
.pack__pill-sub {
  display: block;
  font-weight: 500;
}
.pack__banner {
  background: #ffe557;
  border: 0.4rem solid #ff2f83;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 1.2rem 2rem;
  position: relative;
}
.pack__banner:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 4.5rem;
  height: 1.7rem;
  background: #ff2f83;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.pack__banner img {
  height: 5.4rem;
  width: auto;
  flex-shrink: 0;
}
.pack__banner-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.4rem;
  color: #ff2f83;
  font-size: 2.4rem;
  font-weight: 700;
  align-items: center;
}
.pack__banner-text strong {
  font-size: 5rem;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
}
.pack__yen {
  font-size: 3rem;
  font-weight: 700;
  font-family: inherit;
}
.pack__tax {
  font-size: 1.8rem;
  font-weight: 400;
}
.pack__list.vsp {
  display: none;
}
.pack__list.vpc {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: auto;
}
.pack__list.vpc .pack__item {
  width: 38rem;
  position: relative;
  border: 0.4rem solid #ffe557;
  border-radius: 1rem;
  background: #fff;
}
.pack__list.vpc .pack__item .-icon {
  position: absolute;
  width: 11.6rem;
  top: 0.2rem;
  left: 0.2rem;
}
.pack__list.vpc .pack__item:nth-child(3) .-phone {
  position: absolute;
  width: 10.1rem;
  bottom: 1.8rem;
  right: 1.1rem;
}
.pack__list.vpc .pack__item:nth-child(4) .pack__item-detail-ttl {
  margin-bottom: 1.5rem;
}
.pack__list.vpc .pack__item:nth-child(5) {
  width: 79rem;
}
.pack__list.vpc .pack__item:nth-child(5) .-star {
  position: absolute;
  width: 81.9rem;
  top: -1.2rem;
  left: -1.1rem;
  pointer-events: none;
}
.pack__list.vpc .pack__item:nth-child(5) .pack__item-detail {
  padding-top: 5rem;
}
.pack__list.vpc .pack__item:nth-child(5) .pack__item-detail-txt {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.pack__list.vpc .pack__item-detail {
  padding: 3rem 2rem;
}
.pack__list.vpc .pack__item-detail-ttl {
  text-align: center;
  font-size: 2.4rem;
  color: #ff2f83;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.pack__list.vpc .pack__item-detail-ttl span {
  display: inline-block;
  font-size: 2rem;
  white-space: nowrap;
}
.pack__list.vpc .pack__item-detail-ttl span .ttlbefore {
  width: 1.9rem;
  margin-right: 1rem;
}
.pack__list.vpc .pack__item-detail-ttl span .ttlafter {
  width: 1.9rem;
  margin-left: 1rem;
}
.pack__list.vpc .pack__item-detail-date {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.pack__list.vpc .pack__item-detail-date .-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 4.4rem;
  background: #ff2f83;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 5rem;
  margin-right: 1.8rem;
}
.pack__list.vpc .pack__item-detail-date .-year {
  font-size: 2.8rem;
  margin-right: 1.5rem;
}
.pack__list.vpc .pack__item-detail-date .-year span {
  font-size: 3.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.pack__list.vpc .pack__item-detail-date .-arrow {
  position: relative;
  width: 1.8rem;
  height: 3.2rem;
  margin: 0 2.5rem;
}
.pack__list.vpc .pack__item-detail-date .-arrow:before {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 1.8rem;
  height: 3.2rem;
  background: #ff2f83;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.pack__list.vpc .pack__item-detail-date .-day {
  font-size: 2.8rem;
  font-weight: 700;
}
.pack__list.vpc .pack__item-detail-date .-day .-pink {
  color: #ff2f83;
  font-size: 6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin: 0 0.5rem;
  transform: translateY(0.5rem);
  display: inline-block;
}
.pack__list.vpc .pack__item-detail-txt {
  font-size: 1.4rem;
  line-height: 2rem;
}
.pack__list.vpc .pack__item-detail-txt span {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.pack__list.vpc .pack__item-detail-label {
  text-align: center;
  margin-bottom: 1rem;
}
.pack__list.vpc .pack__item-detail-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17.4rem;
  height: 4rem;
  background: #ff2f83;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 5rem;
}

.flow {
  padding: 10rem 0;
  position: relative;
}
.flow .-yellowline {
  position: absolute;
  top: -58rem;
  left: 50%;
  transform: translateX(-50%);
  width: 251.7rem;
  pointer-events: none;
}
.flow .-whiteline {
  position: absolute;
  top: 12rem;
  left: 50%;
  transform: translateX(-50%);
  width: 251.7rem;
  pointer-events: none;
}
.flow .l-container:before {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 133.7rem;
  height: 23.3rem;
  content: "";
  background: url("./../images/flow_bg_star.png");
  background-size: cover;
}
.flow .c-heading {
  z-index: 20;
  position: relative;
}
.flow .c-heading:before {
  left: 40%;
  top: 6%;
}
.flow .c-heading:after {
  left: 60%;
  top: 86%;
}
.flow__cards {
  margin-top: 5.5rem;
}
.flow .slick-dots {
  list-style: none;
  text-align: center;
  margin-top: 4rem;
  padding: 0;
  position: static;
}
.flow .slick-dots li {
  display: inline-block;
  margin: 0 0.5rem;
  border: none;
}
.flow .slick-dots li button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
  border: 0.1rem solid #ff2f83;
  cursor: pointer;
  padding: 0;
  font-size: 0;
}
.flow .slick-dots li button::before {
  display: none;
}
.flow .slick-dots li.slick-active {
  background-color: transparent;
}
.flow .slick-dots li.slick-active button {
  background-color: #fff92a;
}
.flow .slick-slide {
  width: 40rem !important;
  margin: 0 1rem;
  min-height: 55rem;
  position: relative;
}
.flow .slick-list {
  padding: 0 !important;
  overflow: visible;
}
.flow__card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 0.4rem solid #ffe557;
  border-radius: 1rem;
  position: relative;
  padding: 5rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
}
.flow__card-flex {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  gap: 2rem;
}
.flow__step {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  width: 10rem;
  height: 8.6rem;
  background: url("./../images/icon_flwo_heaert.png");
  background-size: cover;
  font-family: "Roboto", sans-serif;
}
.flow__step-tag {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fd35b4;
  line-height: 1.1;
  letter-spacing: 0.08em;
  font-family: "Roboto", sans-serif;
}
.flow__step-num {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #fd35b4;
  line-height: 1;
}
.flow__card-photo {
  margin-bottom: 2rem;
  text-align: center;
}
.flow__card-photo img {
  display: inline-block !important;
  width: auto;
  height: 19.1rem;
}
.flow__card-photo--placeholder {
  background: #ddd;
}
.flow__card-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff2f83;
  text-align: center;
  margin-bottom: 2rem;
}
.flow__card-body {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  line-height: 2.4rem;
  flex: 1;
}
.flow__card-body small {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.flow .flow__prev,
.flow .flow__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.flow .flow__prev img,
.flow .flow__next img {
  width: 100%;
}
.flow .flow__prev {
  left: -4rem;
}
.flow .flow__next {
  right: -4rem;
}

.gallery {
  padding: 10rem 0;
  margin: 0 auto;
  position: relative;
}
.gallery::before, .gallery::after {
  display: none;
}
.gallery .c-heading {
  z-index: 20;
  position: relative;
}
.gallery .c-heading:before {
  left: 24%;
  top: 61%;
}
.gallery .c-heading:after {
  left: 76%;
  top: 95%;
}
.gallery__girl {
  position: absolute;
  left: -15rem;
  top: -6rem;
  width: 18.1rem;
  pointer-events: none;
}
.gallery__heart {
  position: absolute;
  right: -11.8rem;
  top: 0;
  width: 23.7rem;
  pointer-events: none;
}
.gallery .slick-dots {
  list-style: none;
  text-align: center;
  margin-top: 4rem;
  padding: 0;
  position: static;
}
.gallery .slick-dots li {
  display: inline-block;
  margin: 0 0.5rem;
  border: none;
}
.gallery .slick-dots li button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0;
}
.gallery .slick-dots li button::before {
  display: none;
}
.gallery .slick-dots li.slick-active {
  background-color: transparent;
}
.gallery .slick-dots li.slick-active button {
  background-color: #fff92a;
}
.gallery .slick-slide {
  width: 40rem !important;
  margin: 0 1rem;
  position: relative;
}
.gallery .slick-slide .tapbtn {
  position: absolute;
  width: 8.4rem;
  bottom: 1rem;
  right: 1rem;
}
.gallery .slick-list {
  padding: 0 !important;
  overflow: visible;
}
.gallery .gallery__prev,
.gallery .gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.gallery .gallery__prev img,
.gallery .gallery__next img {
  width: 100%;
}
.gallery .gallery__prev {
  left: -4rem;
}
.gallery .gallery__next {
  right: -4rem;
}

.none {
  display: none;
}

.modaal-overlay {
  background: linear-gradient(to right, #9C72F2, #FFAEB2) !important;
  opacity: 0.8 !important;
}

.modaal-container {
  max-width: 87.1rem !important;
  width: 90% !important;
  background: none !important;
}

.modaal-content-container {
  padding: 0 !important;
}

.modaal-wrapper .modaal-close {
  position: absolute;
  right: 0;
  top: -6rem;
}
.modaal-wrapper .modaal-close:before, .modaal-wrapper .modaal-close:after {
  width: 1px;
}

.modal-card {
  background: #fff url("./../images/bg_modal.png") center/cover repeat;
  border: 0.6rem solid #ff2f83;
  border-radius: 1rem;
  width: 87.1rem;
  padding: 2rem 1.8rem 2.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-card__deco-mag {
  position: absolute;
  bottom: -3.2rem;
  left: 3.1rem;
  width: 10.1rem;
  pointer-events: none;
  z-index: 2;
}
.modal-card__deco-bow {
  position: absolute;
  top: -6rem;
  left: -5rem;
  width: 16.5rem;
  pointer-events: none;
  z-index: 2;
}
.modal-card__deco-heart {
  position: absolute;
  top: 9.5rem;
  right: -4rem;
  width: 11.5rem;
  pointer-events: none;
  z-index: 2;
}
.modal-card__photos {
  width: 101.3rem;
  display: flex;
  gap: 1rem;
}
.modal-card__main-photo {
  width: 40.6rem;
  position: relative;
}
.modal-card__main-photo img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50.6rem;
}
.modal-card__sub-photos {
  width: 59.6rem;
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.modal-card__sub-photo {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  /*
  img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  */
}
.modal-card__sub-photo--large {
  width: 21rem;
  margin-bottom: 1rem;
}
.modal-card__sub-photo--sm {
  width: 10rem;
}
.modal-card__sub-row {
  display: flex;
  gap: 2rem;
  position: relative;
}
.modal-card__wrap {
  width: 56rem;
}
.modal-card__video-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: #0000ff;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  height: 4.8rem;
  padding: 0 1rem;
  pointer-events: none;
  white-space: nowrap;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
.modal-card__video-tag--row {
  bottom: 2rem;
  z-index: 3;
}
.modal-card__comment-box {
  display: flex;
  align-items: center;
  background: #ff2f83;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  gap: 2.5rem;
  margin-bottom: 1rem;
}
.modal-card__avatar {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.modal-card__avatar-img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.modal-card__avatar-img img {
  width: 100%;
}
.modal-card__avatar-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.modal-card__comment-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.modal-card__comment-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  position: relative;
}
.modal-card__comment-head:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  bottom: 0;
  left: 0;
  background: url(./../images/icon_dot.png);
}
.modal-card__comment-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.8rem;
}
.modal-card__points {
  display: flex;
  gap: 1rem;
}
.modal-card__point-box {
  flex: 1;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.modal-card__point-box--hair {
  background: #dd10c5;
}
.modal-card__point-box--coord {
  background: #a800d0;
}
.modal-card__point-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  position: relative;
}
.modal-card__point-head:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  bottom: 0;
  left: 0;
  background: url(./../images/icon_dot.png);
}
.modal-card__point-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.8rem;
}
.modal-card__heart-icon {
  color: #fff92a;
  font-size: 2.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.modal-card__dots {
  width: 100%;
  height: 0.4rem;
  background-image: radial-gradient(circle, #fff 0.2rem, transparent 0.2rem);
  background-size: 1.4rem 0.4rem;
  background-repeat: repeat-x;
  margin-bottom: 1.5rem;
}
.modal-card__gallery-bar {
  position: absolute;
  top: -2.8rem;
  left: 26.1rem;
  width: 30.95rem;
  height: 5.03rem;
  background: #ff2f83;
  border-radius: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-card__gallery-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFF92A;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.modal-card__main {
  width: 40.9rem;
  position: relative;
}
.modal-card__main img {
  width: 50.6rem;
  position: absolute;
  top: 0;
  right: 0;
}
.modal-card__hair-badge {
  position: absolute;
  bottom: 8rem;
  right: 0;
  width: 11.8rem;
  background: #FE6CA7;
  border-radius: 50% 55% 55% 45%/45% 45% 55% 55%;
  padding: 1.5rem 1rem;
  text-align: center;
}
.modal-card__hair-badge p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFF92A;
  line-height: 1.6rem;
}
.modal-card__side {
  width: 43rem;
  display: flex;
  flex-direction: column;
  padding-top: 3.5rem;
  position: relative;
}
.modal-card__side:before {
  position: absolute;
  width: 3.5rem;
  height: 3rem;
  content: "";
  top: 0;
  right: 0;
  background: url("./../images/modal_deco_01.png");
  background-size: cover;
}
.modal-card__side:after {
  position: absolute;
  width: 3.5rem;
  height: 3rem;
  content: "";
  bottom: -2rem;
  left: -4rem;
  background: url("./../images/modal_deco_02.png");
  background-size: cover;
}
.modal-card__model-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #473730;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.modal-card__model-title span {
  color: #ff2f83;
}
.modal-card__model-sub {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #473730;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.modal-card__photo-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-card__photo-row {
  display: flex;
  gap: 1rem;
  position: relative;
}
.modal-card__photo-row .-fuki {
  position: absolute;
  top: 0;
  left: -10rem;
  width: 11.8rem;
  height: 10.6rem;
  background: url("./../images/icon_fuki.png");
  background-size: cover;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 900;
  color: #ffe557;
  font-family: "Zen Maru Gothic", sans-serif;
}
.modal-card__photo-row .-fuki span {
  display: inline-block;
  transform: rotate(-6deg);
}
.modal-card__photo-cell {
  border-radius: 0.6rem;
  overflow: hidden;
  margin: 0;
  position: relative;
}
.modal-card__photo-cell img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.modal-card__photo-cell--md {
  width: 21.2rem;
  height: 27.6rem;
}
.modal-card__photo-cell--sm {
  flex: 1;
  height: 19.8rem;
}

.youtube {
  padding: 10rem 0 12rem;
  margin: 0 auto;
  position: relative;
  background-image: url("../images/leopard-bg.png");
  background-size: cover;
  background-position: center;
}
.youtube .-yellowline {
  position: absolute;
  top: -26rem;
  left: 50%;
  transform: translateX(-50%) rotate(60deg);
  width: 251.7rem;
  z-index: 1;
  pointer-events: none;
}
.youtube .-whiteline {
  position: absolute;
  top: 43rem;
  left: 50%;
  transform: translateX(-50%) rotate(-60deg);
  width: 251.7rem;
  pointer-events: none;
}
.youtube__heart-lg {
  position: absolute;
  left: -8.4rem;
  top: -2.2rem;
  width: 22.4rem;
  z-index: 1;
  pointer-events: none;
}
.youtube__heart-sm {
  position: absolute;
  right: -13.3rem;
  top: 80rem;
  width: 19.3rem;
  z-index: 1;
  pointer-events: none;
}
.youtube__badge {
  position: absolute;
  left: -0.5rem;
  top: 59.6rem;
  width: 24rem;
  z-index: 200;
  pointer-events: none;
}
.youtube .c-heading {
  z-index: 20;
  position: relative;
}
.youtube .c-heading:before {
  left: 22%;
  top: 2%;
}
.youtube .c-heading:after {
  left: 76%;
  top: 81%;
}
.youtube__inner {
  position: relative;
  z-index: 3;
  text-align: center;
}
.youtube__header {
  margin-bottom: 2.8rem;
}
.youtube__frame {
  width: 116rem;
  height: 80rem;
  background: url("./../images/youtube_frame.png");
  background-size: cover;
  margin: -10rem auto 0;
  position: relative;
}
.youtube__frame-icon {
  position: absolute;
  width: 19.4rem;
  top: 16.3rem;
  right: 7rem;
  z-index: 10;
}
.youtube__frame-inner {
  position: absolute;
  top: 14rem;
  left: 5.5rem;
  width: 105rem;
  height: 59rem;
  overflow: hidden;
  border-radius: 2rem;
}
.youtube__frame-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  border: 1.5rem solid #BEB800;
  z-index: 100;
  box-sizing: border-box;
  border-radius: 2rem;
}
.youtube__frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.kogyaru {
  margin: 0 auto;
  background-image: url("../images/kogyaru-bg.jpg");
  background-size: cover;
  background-position: center top;
  padding: 10rem 0;
}
.kogyaru__girl {
  position: absolute;
  right: -8.3rem;
  top: 4rem;
  width: 20rem;
  z-index: 2;
  pointer-events: none;
}
.kogyaru__heart {
  position: absolute;
  left: 0;
  top: 15rem;
  width: 13.6rem;
  z-index: 3;
  pointer-events: none;
}
.kogyaru__inner {
  position: relative;
  max-width: 128rem;
  margin: auto;
}
.kogyaru .c-heading {
  z-index: 20;
  position: relative;
}
.kogyaru .c-heading:before {
  left: 35%;
  top: 15%;
}
.kogyaru .c-heading:after {
  left: 65.5%;
  top: 98%;
}
.kogyaru__info {
  width: 123rem;
  max-width: 100%;
}

.parents {
  margin: 0 auto;
  background: linear-gradient(to bottom, #fe6ba6 0%, #fe3f8e 100%);
  position: relative;
  padding: 10rem 0;
  overflow: visible;
}
.parents .l-container {
  padding-top: 0;
}
.parents .-yellowline {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 251.7rem;
  pointer-events: none;
}
.parents .-whiteline {
  position: absolute;
  top: 65rem;
  left: 50%;
  transform: translateX(-50%);
  width: 251.7rem;
  pointer-events: none;
}
.parents__photo {
  position: absolute;
  width: 148.7rem;
  top: 3rem;
  left: -15rem;
}
.parents__box {
  margin: auto;
  border: 0.4rem solid #fff;
  width: 82rem;
  height: 76rem;
  background: #ff6ca7;
  border-radius: 1rem;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  padding: 8rem 4rem 5rem 12rem;
  gap: 2rem;
}
.parents__box-text {
  flex: 1;
  min-width: 0;
}
.parents .c-heading {
  z-index: 20;
  position: relative;
}
.parents .c-heading:before {
  left: 29%;
  top: 15%;
}
.parents .c-heading:after {
  left: 71.5%;
  top: 98%;
}
.parents__cards {
  margin: -27rem auto 0;
  z-index: 3;
}
.parents__point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-top: 2.5rem;
  list-style: none;
}
.parents__point-card {
  position: relative;
  background: #fffed1;
  border: 0.4rem solid #ff2f83;
  border-radius: 1rem;
  min-height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.7rem 1rem 1.5rem;
  text-align: center;
}
.parents__point-label {
  position: absolute;
  top: -2.65rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff2f83;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  border-radius: 2.7rem;
  padding: 0.6rem 3rem;
  white-space: nowrap;
  min-width: 22.2rem;
}
.parents__point-label::after {
  content: "";
  position: absolute;
  bottom: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.85rem solid transparent;
  border-right: 0.85rem solid transparent;
  border-top: 0.9rem solid #ff2f83;
}
.parents__point-text {
  font-size: 2rem;
  font-weight: 700;
  color: #ff2f83;
  line-height: 1.5;
}

.photo-item {
  margin: 0 auto;
  background: linear-gradient(to bottom, #fe3f8e 0%, #ff0c6e 60%, #fe5090 100%);
  padding-bottom: 10rem;
  overflow: visible;
}
.photo-item__girl {
  position: absolute;
  left: -11rem;
  top: -4.2rem;
  width: 18.3rem;
  pointer-events: none;
}
.photo-item__heart-balloon {
  position: absolute;
  left: 1.6rem;
  top: 6.7rem;
  width: 12.6rem;
  pointer-events: none;
}
.photo-item .c-heading {
  z-index: 20;
  position: relative;
}
.photo-item .c-heading:before {
  left: 32%;
  top: 15%;
}
.photo-item .c-heading:after {
  left: 68.5%;
  top: 98%;
}
.photo-item__deco-art {
  position: absolute;
  right: -15rem;
  top: 2.2rem;
  width: 33.5rem;
  pointer-events: none;
}
.photo-item__header {
  text-align: center;
  padding-top: 5.9rem;
  position: relative;
  z-index: 3;
}
.photo-item__box {
  margin-top: 4rem;
  border-radius: 2rem;
  border: 0.2rem solid #ffe557;
  padding: 1rem;
  position: relative;
  z-index: 1;
}
.photo-item__box-inner {
  border-radius: 2rem;
  background: #fff;
  padding: 2rem 5rem 10rem;
}
.photo-item__flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.photo-item__flex-left {
  width: 54rem;
}
.photo-item__flex-left figure {
  margin-bottom: 2.5rem;
}
.photo-item__flex-left dl dt {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 2.4rem;
  color: #FF2F83;
  border-bottom: 0.2rem solid #FF2F83;
}
.photo-item__flex-left dl dd {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.photo-item__flex-right {
  width: 42.1rem;
}
.photo-item__productflex {
  display: flex;
  justify-content: space-between;
}
.photo-item__productflex-child {
  width: 51rem;
}
.photo-item__productflex-child h3 {
  text-align: center;
  color: #fff;
  background: #FF2F83;
  border-radius: 5rem;
  font-size: 2rem;
  font-weight: bold;
  padding: 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.photo-item__productflex-child h3:before {
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 1.7rem;
  height: 0.9rem;
  background: #ff2f83;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.photo-item__productflex-child:nth-child(1) picture {
  text-align: center;
  display: block;
}
.photo-item__productflex-child:nth-child(1) picture img {
  width: 37.8rem;
}
.photo-item__productflex-child:nth-child(2) picture {
  text-align: center;
  display: block;
}
.photo-item__productflex-child:nth-child(2) picture img {
  width: 51rem;
}
.photo-item__rec {
  margin-top: 6rem;
}
.photo-item__rec-line {
  height: 0.2rem;
  background: #ff2f83;
  margin-bottom: 2rem;
}
.photo-item__rec-heading {
  font-size: 3.6rem;
  font-weight: 700;
  color: #ff2f83;
  text-align: center;
  margin-bottom: 3rem;
}
.photo-item__rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 33rem);
  gap: 3.5rem;
  justify-content: center;
}
.photo-item__rec-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.photo-item__rec-photo {
  background: #fcfacd;
  border-radius: 1rem;
  aspect-ratio: 330/320;
}
.photo-item__rec-info {
  background: #ff6ca7;
  border-radius: 1rem;
  padding: 2rem;
  min-height: 14rem;
}
.photo-item__rec-name {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.photo-item__rec-price {
  font-size: 1.4rem;
  color: #fff;
  line-height: 2rem;
}
.photo-item__rec-attention {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.photo-item__rec-attention p {
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.campaign {
  padding: 10rem 0;
  background-image: url(../images/campaign-bg.png);
  background-size: cover;
  background-position: center top;
  position: relative;
}
.campaign .-yellowline {
  position: absolute;
  top: -81rem;
  left: 50%;
  transform: translateX(-50%) rotate(60deg);
  width: 251.7rem;
  pointer-events: none;
}
.campaign .-whiteline {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%) rotate(-60deg);
  width: 251.7rem;
  pointer-events: none;
}
.campaign__decostar {
  position: absolute;
  width: 17.2rem;
  top: 48rem;
  left: -11rem;
  z-index: 10;
}
.campaign .c-heading {
  z-index: 20;
  position: relative;
}
.campaign .c-heading:before {
  left: 30%;
  top: 15%;
  z-index: -1;
}
.campaign .c-heading:after {
  left: 70%;
  top: 85%;
  z-index: -1;
}
.campaign .c-heading span:after {
  position: absolute;
  top: -3rem;
  left: 23%;
  transform: translateX(-50%);
  width: 13.9rem;
  height: 9.1rem;
  content: "";
  background: url(./../images/campaign-speech-bubble.png);
  background-size: cover;
}
.campaign__girl {
  position: absolute;
  width: 28.6rem;
  top: -0.5rem;
  right: -11.5rem;
  z-index: 10;
}
.campaign__section {
  margin-bottom: 4.3rem;
}
.campaign__section:last-of-type {
  margin-bottom: 0;
}
.campaign__ribbon {
  position: absolute;
  top: -3.3rem;
  left: 4.7rem;
  width: 20rem;
}
.campaign__ribbon img {
  height: 6.5rem;
  width: auto;
}
.campaign__box {
  border-radius: 1.5rem;
  padding: 6rem;
  position: relative;
}
.campaign__box--pink {
  background: #fffde8;
  border: 0.6rem solid #ff2f83;
}
.campaign__box--magenta {
  background: #fffde8;
  border: 0.6rem solid #cc00cc;
}
.campaign__box--purple {
  background: #fffde8;
  border: 0.6rem solid #7700bb;
  margin-bottom: 0;
}
.campaign__box-flex {
  display: flex;
  justify-content: space-between;
}
.campaign__box-flex figure {
  width: 54.4rem;
  position: relative;
}
.campaign__box-flex figure .btn {
  position: absolute;
  bottom: 6.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFB6A;
  border: 0.1rem solid #000;
  color: #000;
  border-radius: 0.6rem;
  width: 24.8rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  gap: 0.5rem;
  font-size: 1.4rem;
}
.campaign__box-flex figure .btn img {
  width: 2rem;
}
.campaign__box-hashtag {
  display: flex;
  gap: 3rem;
  align-items: center;
  z-index: 10;
  position: relative;
}
.campaign__box-hashtag .-label {
  width: 18.4rem;
  height: 5.4rem;
  color: #ffe557;
  background: #ff2f83;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  position: relative;
}
.campaign__box-hashtag .-label:before {
  position: absolute;
  top: 50%;
  right: -1.2rem;
  transform: translateY(-50%) rotate(-90deg);
  content: "";
  width: 1.9rem;
  height: 1.1rem;
  background: #ff2f83;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.campaign__box-hashtag .-tag {
  font-size: 3.6rem;
  color: #ff2f83;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.campaign__box-hashtag .-comment {
  font-size: 1.4rem;
  font-weight: 700;
}
.campaign__flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.campaign__prize-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.campaign__prize-title-img {
  width: 31.3rem;
}
.campaign__prize-model-img {
  width: 78rem;
}
.campaign__prize-present {
  width: 78.9rem;
  margin: 7.2rem auto 0;
}
.campaign__prize-sample {
  width: 35.2rem;
  position: absolute;
  bottom: -5rem;
  right: 1rem;
}
.campaign__model-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  width: 78rem;
}
.campaign__model-item {
  width: 18rem;
  display: block;
  border: 0.6rem solid #FAD4E3;
  box-shadow: 0.6rem 0.6rem 1rem rgba(0, 0, 0, 0.1);
  aspect-ratio: 1;
  background: #fff;
  position: relative;
}
.campaign__model-item span {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #FF2F83;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.35rem 0.5rem;
  border-radius: 2.7rem;
  white-space: nowrap;
  width: 13.6rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
.campaign__model-item-instagram:link {
  position: absolute;
  bottom: -5.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFB6A;
  border: 0.1rem solid #000;
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 0.6rem;
  white-space: nowrap;
  width: 13.6rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  gap: 0.5rem;
}
.campaign__model-item-instagram:link img {
  width: 1.5rem;
}
.campaign__model-item:nth-child(1) {
  background: #F8175B;
}
.campaign__model-item:nth-child(2) {
  background: #FA97BB;
}
.campaign__model-item:nth-child(3) {
  background: #DCD6DE;
}
.campaign__model-item:nth-child(4) {
  background: #4F2C24;
}
.campaign__prize-count, .campaign__prize-note {
  display: none;
}
.campaign__heart-pink {
  position: absolute;
  right: -8.8rem;
  top: -5rem;
  width: 13.9rem;
  height: auto;
  pointer-events: none;
}
.campaign__heart-sm {
  position: absolute;
  left: -8.5rem;
  bottom: -5.5rem;
  width: 11.3rem;
  height: auto;
  pointer-events: none;
}
.campaign__entry-date {
  width: 80rem;
  max-width: 100%;
  margin: 0 auto 2rem;
}
.campaign__entry-inner {
  padding: 0 1rem;
}
.campaign__entry-box {
  background: #fff;
  border: 0.3rem solid #a800d0;
  border-radius: 1rem;
  height: 25.4rem;
  overflow-y: scroll;
  padding: 2.5rem 3rem;
  scrollbar-width: thin;
  scrollbar-color: #bd40db transparent;
}
.campaign__entry-box::-webkit-scrollbar {
  width: 1rem;
}
.campaign__entry-box::-webkit-scrollbar-thumb {
  background: #bd40db;
  border-radius: 0.5rem;
}
.campaign__entry-box::-webkit-scrollbar-track {
  background: transparent;
}
.campaign__entry-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 1.6rem;
}
.campaign__entry-section {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
}
.campaign__entry-section:first-child {
  margin-top: 0;
}
.campaign__entry-text {
  font-size: 1.4rem;
  color: #000;
  line-height: 1.7;
}
.campaign__heart-sm {
  display: block;
  margin: 2rem auto 0;
  width: 11.4rem;
  height: auto;
}

.price-plan {
  margin: 0 auto;
  padding: 8rem 0 10rem;
  position: relative;
}
.price-plan .-yellowline {
  position: absolute;
  top: -29rem;
  left: 50%;
  transform: translateX(-50%);
  width: 251.7rem;
  pointer-events: none;
}
.price-plan .-whiteline {
  position: absolute;
  top: 37rem;
  left: 50%;
  transform: translateX(-50%);
  width: 251.7rem;
  pointer-events: none;
}
.price-plan__heart-deco {
  position: absolute;
  right: -11.7rem;
  top: 1rem;
  width: 19.9rem;
  pointer-events: none;
  z-index: 20;
}
.price-plan .c-label span {
  width: 23.3rem;
}
.price-plan .c-heading {
  z-index: 20;
  position: relative;
}
.price-plan .c-heading:before {
  left: 38.5%;
  top: 15%;
  z-index: -1;
}
.price-plan .c-heading:after {
  left: 60%;
  top: 85%;
  z-index: -1;
}
.price-plan__box {
  margin: 0 auto;
  background: #fff;
  border-radius: 2rem;
  border: 0.2rem solid #ff2f83;
  box-shadow: 0.8rem 0.8rem 0 #ff2f83;
  padding: 4rem 5rem;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}
.price-plan__box-left {
  flex: 1;
  min-width: 0;
}
.price-plan__logo-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}
.price-plan__logo {
  height: 3.6rem;
  width: auto;
}
.price-plan__pack-name {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ff2f83;
}
.price-plan__divider {
  border: none;
  border-top: 0.2rem solid #ff2f83;
  margin: 1.5rem 0;
}
.price-plan__txt {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.price-plan__age-img {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.price-plan__age-img .-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9.1rem;
  height: 2.6rem;
  background: #ff2f83;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 5rem;
  flex-shrink: 0;
}
.price-plan__age-img .-text {
  display: flex;
  align-items: baseline;
  font-size: 1.3rem;
  font-weight: bold;
}
.price-plan__age-img .-text .-num {
  font-size: 2.7rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.price-plan__plan-flex {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}
.price-plan__plan-img {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.price-plan__plan-img .-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9.1rem;
  height: 2.6rem;
  background: #ff2f83;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 5rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.price-plan__plan-img .-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-plan__plan-img .-list li {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2rem;
  white-space: nowrap;
}
.price-plan__plan-img .-list li .-sub {
  font-size: 1rem;
}
.price-plan__plan-img .-list li.-special {
  padding-left: 2rem;
  position: relative;
}
.price-plan__plan-img .-list li.-special .-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2rem;
  padding-left: 1.8rem;
}
.price-plan__plan-img .-list li.-special .-bullet {
  color: #ff2f83;
  margin-right: 0.2rem;
  position: absolute;
  left: 0;
}
.price-plan__amount-img {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.price-plan__amount-img .-price {
  font-size: 5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #ff2f83;
  line-height: 1;
  word-break: normal;
}
.price-plan__amount-img .-unit {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.3rem;
  justify-content: center;
  align-items: center;
}
.price-plan__amount-img .-unit .-tax {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
}
.price-plan__amount-img .-unit .-yen {
  font-size: 2.4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.price-plan__box-right {
  flex-shrink: 0;
  width: 51.8rem;
}
.price-plan__box-right img {
  width: 100%;
  border-radius: 1.5rem;
}
.price-plan__heart-diamond {
  position: absolute;
  left: -8rem;
  bottom: -10rem;
  width: 23.6rem;
  pointer-events: none;
}
.price-plan__logo-sp {
  display: none;
}

.cta-banner {
  margin: 0 auto;
  position: relative;
  background: url("./../images/cta-banner.png");
  background-size: cover;
  padding: 6rem 0;
  z-index: 10;
}
.cta-banner .l-container {
  background: url("./../images/cta-banner-inner.png");
  background-size: cover;
  padding: 5rem 6rem;
  border-radius: 2rem;
}
.cta-banner__box {
  width: 71.4rem;
}
.cta-banner__logo {
  width: 56.8rem;
  margin: 0 auto 1.2rem;
}
.cta-banner__txt {
  font-size: 2.4rem;
  color: #ff2f83;
  text-align: center;
  line-height: 3.7rem;
  margin: 0 auto 1.2rem;
}
.cta-banner__btns {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.cta-banner__btn:link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35rem;
  height: 8rem;
  border-radius: 5.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #ff2f83;
  background: #fff;
  border: 0.2rem solid #ff2f83;
  box-shadow: 0.6rem 0.6rem 0 #CC0053;
  position: relative;
}
.cta-banner__btn:link:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  background: url(./../images/icon_arrow_pink.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cta-banner__btn:link.cta-banner__btn--primary {
  color: #fff;
  background: linear-gradient(#ffc19a 0%, #ff6200 100%);
  border: 0.2rem solid #ff6200;
  box-shadow: 0.6rem 0.6rem 0 #AD4300;
}
.cta-banner__btn:link.cta-banner__btn--primary:after {
  background-image: url(./../images/icon_arrow_orange.png);
}
.cta-banner__gals {
  position: absolute;
  width: 56.6rem;
  bottom: 0;
  right: -7rem;
}

.js-fade {
  opacity: 0;
  transition-delay: 0.6s;
  transition-duration: 1.1s;
}
.js-fade.js-fade-delay {
  transition-delay: 1s;
}
.js-fade.js-fade-top {
  transform: translate(0px, -40px);
}
.js-fade.js-fade-bottom {
  transform: translateY(50px);
}
.js-fade.js-fade-left {
  transform: translate(-20px, 0px);
}
.js-fade.js-fade-right {
  transform: translate(20px, 0px);
}
.js-fade.is-active {
  transform: translate(0, 0);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .vpc {
    display: none;
  }
  .vsp {
    display: block;
  }
  .l-container {
    max-width: 31.5rem;
    padding-top: 0;
  }
  .l-header-nav {
    bottom: 0;
  }
  .l-header2 {
    padding: 1.2rem;
    left: auto;
    width: auto !important;
    height: auto !important;
    background-color: transparent;
  }
  .l-header2__hamburger {
    gap: 0.4rem;
    display: flex;
  }
  .l-header2__nav {
    width: 100%;
    padding: 8rem 1.6rem 3rem;
  }
  .l-header2__nav-item a {
    font-size: 1.2rem;
    padding: 0.9rem 1rem;
  }
  .l-header2__nav-item a img {
    width: 2.8rem;
  }
  .hero {
    position: relative;
    margin: 0 auto;
    padding: 2rem 1.6rem 0;
    width: auto;
  }
  .hero__logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 18.8rem;
    z-index: 2;
  }
  .hero__heart {
    top: 3.7rem;
    left: -1rem;
    width: 6.7rem;
    z-index: 1;
  }
  .hero__hearts-top {
    position: absolute;
    top: 2.4rem;
    left: auto;
    width: 6.2rem;
    right: 2rem;
    z-index: 2;
  }
  .hero .-yellowline {
    top: 8rem;
    width: 100rem;
  }
  .hero .-whiteline {
    top: 26.5rem;
    width: 100rem;
  }
  .plan {
    position: relative;
    margin: -5.7rem auto 0;
    padding: 0 2rem 4rem;
    overflow: visible;
  }
  .plan:before {
    height: 43.5rem;
  }
  .plan__heading {
    position: relative;
    z-index: 2;
    max-width: 100rem;
    margin: 0 auto;
  }
  .plan__heading-image {
    z-index: 20;
    width: 100%;
    position: relative;
  }
  .plan__heart-outline {
    position: absolute;
    top: 6.4rem;
    left: -4rem;
    width: 8.4rem;
    z-index: 1;
    pointer-events: none;
  }
  .plan__heart-small {
    position: absolute;
    top: 3.5rem;
    left: auto;
    right: -3rem;
    width: 5rem;
    z-index: 1;
    pointer-events: none;
  }
  .plan__mark {
    position: absolute;
    top: -6rem;
    left: auto;
    right: -3rem;
    width: 7.9rem;
    z-index: 10;
    pointer-events: none;
  }
  .price-card {
    flex-flow: column;
  }
  .price-card__sparkle {
    position: absolute;
    top: 12.8rem;
    right: -25rem;
    width: 23.8rem;
    z-index: 1;
    pointer-events: none;
  }
  .price-card__panel {
    flex: initial;
    width: 100%;
    height: 6.4rem;
    min-height: auto;
    background-color: transparent;
    background-image: url(../images/bg-price-glitter_sp.png);
    background-size: cover;
    background-position: center;
    border: 0.2rem solid #ff2f83;
    border-radius: 1rem;
    padding: 0.8rem;
    display: flex;
    flex-direction: initial;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .price-card__logo {
    margin: auto;
    width: 22.1rem;
  }
  .price-card__main {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .price-card__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 0;
  }
  .price-card__pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    background-color: #ff2f83;
    color: #fff;
    border-radius: 0.6rem;
    padding: 0;
    border: 0.2rem solid #fff;
    height: 4rem;
    width: 15.5rem;
  }
  .price-card__pill--sub {
    line-height: 1.3;
  }
  .price-card__pill--wide .price-card__pill-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    font-size: 1.2rem;
  }
  .price-card__pill-sub {
    display: block;
    width: 100%;
    font-size: 1rem;
    margin-top: -0.2rem;
  }
  .price-card__pill-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    aspect-ratio: 5/6;
  }
  .price-card__pill-icon img {
    width: auto;
    height: 2.8rem;
  }
  .price-card__pill-text {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
  }
  .price-card__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #ffe557;
    border: 0.4rem solid #ff2f83;
    border-radius: 0.6rem;
    padding: 0.8rem;
    position: relative;
  }
  .price-card__banner:before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 1.8rem;
    height: 0.7rem;
    background: #ff2f83;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .price-card__banner img {
    width: 2.5rem;
    height: auto;
  }
  .price-card__banner-text {
    color: #ff2f83;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
  }
  .price-card__banner-text strong {
    font-size: 2.4rem;
    margin: 0 0.3rem;
    font-family: "Roboto", sans-serif;
  }
  .price-card__yen {
    font-size: 1.6rem;
    margin-left: 0;
  }
  .price-card__tax {
    font-size: 1.4rem;
    margin-left: 0;
  }
  .content-nav {
    display: none;
  }
  .c-label {
    line-height: normal;
  }
  .c-label span {
    font-size: 1.2rem;
    padding: 0.3rem 2rem;
    border: 0.1rem solid #000;
    box-shadow: 0.1rem 0.2rem 0 #000;
    vertical-align: baseline;
  }
  .c-heading {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    -webkit-text-stroke: 0.1rem #000;
    text-shadow: 0.2rem 0.2rem 0.1rem #000;
    line-height: 2.9rem;
  }
  .c-heading:before {
    width: 2.2rem;
    height: 2.2rem;
  }
  .c-heading:after {
    width: 2.2rem;
    height: 2.2rem;
  }
  .c-text {
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-bottom: 2rem;
  }
  .-blk {
    position: relative;
    color: #000;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  }
  .-blk:after {
    display: none;
  }
  .-edge {
    position: relative;
    color: #000;
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
  }
  .-edge:after {
    content: attr(data-text);
    color: #fff;
    position: absolute;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
  .tgc__btn {
    bottom: 2rem;
  }
  .tgc__btn a {
    width: 33.5rem;
    height: 6.4rem;
    font-size: 1.6rem;
  }
  .tgc__btn a > span > span {
    font-size: 1.1rem;
  }
  .tgc__btn a:after {
    width: 2rem;
    height: 2rem;
  }
  .about {
    padding: 4rem 0;
  }
  .about .-yellowline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    z-index: 1;
    pointer-events: none;
    width: 100rem;
    top: -11rem;
  }
  .about .-whiteline {
    position: absolute;
    top: -23rem;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 100rem;
    pointer-events: none;
  }
  .about__heart-lg {
    left: -5rem;
    top: 4.4rem;
    width: 9.4rem;
  }
  .about__badge {
    left: -2.5rem;
    top: -4rem;
    width: 9.58rem;
  }
  .about__heart-sm {
    right: -2.4rem;
    top: 1rem;
    width: 7.2rem;
  }
  .about .c-text {
    text-align: left;
  }
  .about .c-text .-edge {
    display: block;
  }
  .about .c-text .-edge:after {
    top: 0;
  }
  .about__slider-wrap {
    position: relative;
    margin-top: 2rem;
    z-index: 10;
  }
  .about__slider {
    margin-bottom: 0 !important;
  }
  .about__slider .slick-slide {
    padding: 0;
  }
  .about__slider .slick-dots {
    list-style: none;
    text-align: center;
    margin-top: 2rem;
    padding: 0;
    position: static;
  }
  .about__slider .slick-dots li {
    display: inline-block;
    margin: 0 1rem;
    width: 0.8rem !important;
    height: 0.8rem !important;
  }
  .about__slider .slick-dots li button {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    border: 0.1rem solid #ff2f83;
  }
  .about__slider .slick-dots li button::before {
    display: none;
  }
  .about__slider .slick-dots li.slick-active button {
    background: #FFF92A;
  }
  .about__card {
    padding: 1rem;
  }
  .about .about__prev,
  .about .about__next {
    width: 4rem;
  }
  .about .about__prev {
    left: -2rem;
  }
  .about .about__next {
    right: -2rem;
  }
  .pack {
    padding: 4rem 0;
  }
  .pack .c-heading:before {
    left: 0%;
    top: 27%;
    z-index: -1;
  }
  .pack .c-heading:after {
    left: 100%;
    top: 86%;
    z-index: -1;
  }
  .pack .-yellowline {
    width: 100rem;
  }
  .pack .-yellowline.-l01 {
    top: -29rem;
    transform: translateX(-50%) rotate(0deg);
  }
  .pack .-yellowline.-l02 {
    top: 61rem;
    transform: translateX(-50%) rotate(0deg);
  }
  .pack .-yellowline.-l03 {
    top: 110rem;
    transform: translateX(-50%) rotate(0deg);
  }
  .pack .-whiteline {
    width: 100rem;
  }
  .pack .-whiteline.-l01 {
    transform: translateX(-50%) rotate(0deg);
    top: -13rem;
  }
  .pack .-whiteline.-l02 {
    top: 49rem;
    transform: translateX(-50%) rotate(0deg);
  }
  .pack .-whiteline.-l03 {
    top: 127rem;
    transform: translateX(-50%) rotate(0deg);
  }
  .pack__girl {
    position: absolute;
    right: -3rem;
    top: -13.5rem;
    width: 15rem;
    z-index: 11;
    pointer-events: none;
  }
  .pack__block {
    margin: 0 auto 2rem;
    padding: 2rem 1.3rem;
    z-index: 12;
  }
  .pack__description {
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  .pack__price-area {
    flex-direction: column;
    max-width: 32rem;
    gap: 0.5rem;
  }
  .pack__detail-card {
    flex: none;
    width: 100%;
    min-height: 6.4rem;
    padding: 1rem 1.2rem;
    flex-direction: row;
    flex: initial;
    width: 100%;
    height: 6.4rem;
    min-height: auto;
    background-color: transparent;
    background-image: url(../images/bg-price-glitter_sp.png);
    background-size: cover;
    background-position: center;
    border: 0.2rem solid #ff2f83;
    border-radius: 1rem;
    padding: 0.8rem;
    display: flex;
    flex-direction: initial;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .pack__detail-logo {
    width: 22.1rem;
    height: auto;
    margin: 0;
  }
  .pack__price-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .pack__pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 0;
    margin-bottom: 0;
  }
  .pack__pills-row--two {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pack__pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    border-radius: 0.6rem;
    padding: 0;
    min-height: auto;
    height: 4rem;
    width: 13.5rem;
    position: relative;
    text-align: center;
  }
  .pack__pill.-spfs .pack__pill-text {
    font-size: 1.2rem;
  }
  .pack__pill--sub {
    font-size: 1.3rem;
    gap: 0.2rem;
  }
  .pack__pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3.6rem;
  }
  .pack__pill-icon img {
    height: 2.8rem;
    width: auto;
  }
  .pack__pill-text {
    flex: 1;
    text-align: center;
    font-size: 1.4rem;
  }
  .pack__pill-sub {
    display: block;
    font-size: 1rem;
    font-weight: 500;
  }
  .pack__banner {
    border-radius: 0.6rem;
    gap: 0.8rem;
    padding: 0.8rem 0;
  }
  .pack__banner:before {
    width: 1.8rem;
    height: 0.7rem;
  }
  .pack__banner img {
    height: 1.5rem;
    width: auto;
    flex-shrink: 0;
  }
  .pack__banner-text {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
  }
  .pack__banner-text strong {
    font-size: 2.4rem;
  }
  .pack__yen {
    font-size: 1.6rem;
  }
  .pack__tax {
    font-size: 1.4rem;
  }
  .pack__wrap {
    position: relative;
    overflow: visible;
    padding: 0 2.5rem;
  }
  .pack__list.vpc {
    display: none;
  }
  .pack__list.vsp {
    display: block;
    margin: auto auto 30px;
    z-index: 10;
  }
  .pack__list.vsp .pack__item {
    position: relative;
    border: 0.4rem solid #ffe557;
    border-radius: 1rem;
    background: #fff;
  }
  .pack__list.vsp .pack__item .-icon {
    position: absolute;
    width: 12.8rem;
    top: 0.5rem;
    left: 0;
  }
  .pack__list.vsp .pack__item .-phone {
    position: absolute;
    width: 10rem;
    bottom: 0;
    right: 0;
  }
  .pack__list.vsp .pack__item:nth-child(4) .pack__item-detail-ttl {
    margin-bottom: 1.5rem;
  }
  .pack__list.vsp .pack__item:nth-child(5) {
    width: 79rem;
  }
  .pack__list.vsp .pack__item:nth-child(5) .-star {
    position: absolute;
    width: 81.9rem;
    top: -1.2rem;
    left: -1.1rem;
    pointer-events: none;
  }
  .pack__list.vsp .pack__item:nth-child(5) .pack__item-detail {
    padding-top: 5rem;
  }
  .pack__list.vsp .pack__item:nth-child(5) .pack__item-detail-txt {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .pack__list.vsp .pack__item-detail {
    padding: 2rem 1rem;
  }
  .pack__list.vsp .pack__item-detail-ttl {
    text-align: center;
    color: #ff2f83;
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  .pack__list.vsp .pack__item-detail-ttl span {
    display: inline-block;
    font-size: 1.6rem;
  }
  .pack__list.vsp .pack__item-detail-ttl span .ttlbefore {
    width: 1rem;
    margin-right: 0.5rem;
    display: inline-block;
  }
  .pack__list.vsp .pack__item-detail-ttl span .ttlafter {
    width: 1rem;
    margin-left: 0.5rem;
    display: inline-block;
  }
  .pack__list.vsp .pack__item-detail-date {
    display: flex;
    align-items: flex-end;
    margin-bottom: 2rem;
  }
  .pack__list.vsp .pack__item-detail-date .-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12rem;
    height: 4.4rem;
    background: #ff2f83;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    border-radius: 5rem;
    margin-right: 1.8rem;
  }
  .pack__list.vsp .pack__item-detail-date .-year {
    font-size: 2.8rem;
    margin-right: 1.5rem;
  }
  .pack__list.vsp .pack__item-detail-date .-year span {
    font-size: 3.6rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
  }
  .pack__list.vsp .pack__item-detail-date .-arrow {
    position: relative;
    width: 1.8rem;
    height: 3.2rem;
    margin: 0 2.5rem;
  }
  .pack__list.vsp .pack__item-detail-date .-arrow:before {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 1.8rem;
    height: 3.2rem;
    background: #ff2f83;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  .pack__list.vsp .pack__item-detail-date .-day {
    font-size: 2.8rem;
    font-weight: 700;
  }
  .pack__list.vsp .pack__item-detail-date .-day .-pink {
    color: #ff2f83;
    font-size: 6rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    line-height: 1;
    margin: 0 0.5rem;
    transform: translateY(0.5rem);
    display: inline-block;
  }
  .pack__list.vsp .pack__item-detail-txt {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .pack__list.vsp .pack__item-detail-txt span {
    font-size: 1rem;
  }
  .pack__list.vsp .pack__item-detail-label {
    text-align: center;
    margin-bottom: 1rem;
  }
  .pack__list.vsp .pack__item-detail-label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17.4rem;
    height: 4rem;
    background: #ff2f83;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 5rem;
  }
  .pack__list.vsp .slick-dots {
    list-style: none;
    text-align: center;
    margin-top: 0;
    padding: 0;
    position: static;
  }
  .pack__list.vsp .slick-dots li {
    display: inline-block;
    margin: 0 1rem;
    width: 0.8rem !important;
    height: 0.8rem !important;
  }
  .pack__list.vsp .slick-dots li button {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    border: 0.1rem solid #ff2f83;
  }
  .pack__list.vsp .slick-dots li button::before {
    display: none;
  }
  .pack__list.vsp .slick-dots li.slick-active button {
    background: #FFF92A;
  }
  .pack__list.vsp .pack__slider-prev,
  .pack__list.vsp .pack__slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .pack__list.vsp .pack__slider-prev img,
  .pack__list.vsp .pack__slider-next img {
    width: 100%;
  }
  .pack__list.vsp .pack__slider-prev {
    left: -2rem;
  }
  .pack__list.vsp .pack__slider-next {
    right: -2rem;
  }
  .pack__list02.vsp {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: auto;
    z-index: 10;
    position: relative;
  }
  .pack__list02.vsp .pack__item {
    position: relative;
    border: 0.4rem solid #ffe557;
    border-radius: 1rem;
    background: #fff;
  }
  .pack__list02.vsp .pack__item:nth-child(1) .pack__item-detail-ttl {
    margin-bottom: 1.5rem;
  }
  .pack__list02.vsp .pack__item:nth-child(2) .-star {
    position: absolute;
    width: 35.5rem;
    top: 1.5rem;
    left: -2.5rem;
    pointer-events: none;
  }
  .pack__list02.vsp .pack__item:nth-child(2) .pack__item-detail-ttl {
    margin-bottom: 1.5rem;
  }
  .pack__list02.vsp .pack__item:nth-child(2) .pack__item-detail-date {
    display: flex;
    align-items: baseline;
    justify-content: center;
  }
  .pack__list02.vsp .pack__item:nth-child(2) .pack__item-detail-date .-year {
    font-size: 1.4rem;
    font-weight: 700;
    margin-right: 0.5rem;
  }
  .pack__list02.vsp .pack__item:nth-child(2) .pack__item-detail-date .-year span {
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    font-weight: 700;
  }
  .pack__list02.vsp .pack__item:nth-child(2) .pack__item-detail-date .-day {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0.5rem;
  }
  .pack__list02.vsp .pack__item:nth-child(2) .pack__item-detail-date .-day .-pink {
    font-family: "Roboto", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff2f83;
    margin: 0;
    transform: translateY(0.2rem);
    margin: 0 0.1rem;
  }
  .pack__list02.vsp .pack__item:nth-child(2) .pack__item-detail-date .-arrow {
    position: relative;
    width: 0.9rem;
    height: 1.6rem;
    margin: 0 0.3rem;
  }
  .pack__list02.vsp .pack__item:nth-child(2) .pack__item-detail-date .-arrow::before {
    position: absolute;
    top: 62%;
    left: 73%;
    transform: translate(-50%, -50%);
    content: "";
    width: 0.9rem;
    height: 1.6rem;
    background: #ff2f83;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  .pack__list02.vsp .pack__item:nth-child(2) .pack__item-detail-txt {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .pack__list02.vsp .pack__item-detail {
    padding: 2rem 1rem;
  }
  .pack__list02.vsp .pack__item-detail-ttl {
    text-align: center;
    color: #ff2f83;
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  .pack__list02.vsp .pack__item-detail-ttl span {
    display: inline-block;
    font-size: 1.6rem;
  }
  .pack__list02.vsp .pack__item-detail-ttl span .ttlbefore {
    width: 1rem;
    margin-right: 0.5rem;
    display: inline-block;
  }
  .pack__list02.vsp .pack__item-detail-ttl span .ttlafter {
    width: 1rem;
    margin-left: 0.5rem;
    display: inline-block;
  }
  .pack__list02.vsp .pack__item-detail-date {
    display: flex;
    align-items: flex-end;
    margin-bottom: 2rem;
  }
  .pack__list02.vsp .pack__item-detail-date .-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12rem;
    height: 4.4rem;
    background: #ff2f83;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    border-radius: 5rem;
    margin-right: 1.8rem;
  }
  .pack__list02.vsp .pack__item-detail-date .-year {
    font-size: 2.8rem;
    margin-right: 1.5rem;
  }
  .pack__list02.vsp .pack__item-detail-date .-year span {
    font-size: 3.6rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
  }
  .pack__list02.vsp .pack__item-detail-date .-arrow {
    position: relative;
    width: 1.8rem;
    height: 3.2rem;
    margin: 0 2.5rem;
  }
  .pack__list02.vsp .pack__item-detail-date .-arrow:before {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 1.8rem;
    height: 3.2rem;
    background: #ff2f83;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  .pack__list02.vsp .pack__item-detail-date .-day {
    font-size: 2.8rem;
    font-weight: 700;
  }
  .pack__list02.vsp .pack__item-detail-date .-day .-pink {
    color: #ff2f83;
    font-size: 6rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    line-height: 1;
    margin: 0 0.5rem;
    transform: translateY(0.5rem);
    display: inline-block;
  }
  .pack__list02.vsp .pack__item-detail-txt {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .pack__list02.vsp .pack__item-detail-label {
    text-align: center;
    margin-bottom: 1rem;
  }
  .pack__list02.vsp .pack__item-detail-label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13.3rem;
    height: 2.9rem;
    background: #ff2f83;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 5rem;
  }
  .pack__item-thum {
    padding: 10px;
    background-color: #fe6ca7;
  }
  .pack__item-thum img {
    width: auto;
    height: 290px;
    margin: 0 auto;
  }
  .flow {
    padding: 4rem 0;
    position: relative;
  }
  .flow .-yellowline {
    width: 100rem;
    top: -2rem;
  }
  .flow .-whiteline {
    width: 100rem;
    top: -13rem;
  }
  .flow .l-container:before {
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 38.1rem;
    height: 16.6rem;
    content: "";
    background: url("./../images/flow_bg_star_sp.png");
    background-size: cover;
  }
  .flow .c-heading:before {
    left: 32%;
    top: 27%;
    z-index: -1;
  }
  .flow .c-heading:after {
    left: 68%;
    top: 86%;
    z-index: -1;
  }
  .flow__cards {
    margin-top: 4rem;
  }
  .flow .slick-slider {
    margin-bottom: 0 !important;
  }
  .flow .slick-dots {
    list-style: none;
    text-align: center;
    margin-top: 2rem;
    padding: 0;
    position: static;
  }
  .flow .slick-dots li {
    display: inline-block;
    margin: 0 1rem;
    width: 0.8rem !important;
    height: 0.8rem !important;
  }
  .flow .slick-dots li button {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    border: 0.1rem solid #ff2f83;
  }
  .flow .slick-dots li button::before {
    display: none;
  }
  .flow .slick-dots li.slick-active button {
    background: #FFF92A;
  }
  .flow .slick-slide {
    width: 31.5rem !important;
    margin: 0 1rem;
    min-height: 41rem;
    position: relative;
  }
  .flow .slick-list {
    padding: 0 !important;
    overflow: visible;
  }
  .flow__card {
    padding: 4rem 1.6rem 2rem;
  }
  .flow__card-flex {
    flex-flow: column;
    gap: 1rem;
  }
  .flow__card-flex p {
    width: 100%;
  }
  .flow__card-flex p br {
    display: none;
  }
  .flow__card-flex img {
    width: 100%;
  }
  .flow__step {
    top: -3rem;
    width: 8rem;
    height: 7rem;
  }
  .flow__step-tag {
    font-size: 1.9rem;
  }
  .flow__step-num {
    font-size: 2.5rem;
  }
  .flow__card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff2f83;
    text-align: center;
    margin-bottom: 1rem;
  }
  .flow__card-photo img {
    height: 16.4rem;
  }
  .flow__card-body {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .flow__card-body small {
    font-size: 1.2rem;
  }
  .flow .flow__prev,
  .flow .flow__next {
    width: 4rem;
  }
  .flow .flow__prev {
    left: -2rem;
  }
  .flow .flow__next {
    right: -2rem;
  }
  .gallery {
    padding: 0 0 4rem;
  }
  .gallery .-yellowline {
    position: absolute;
    top: -10rem;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 100rem;
    z-index: 1;
    pointer-events: none;
  }
  .gallery .-whiteline {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 100rem;
    pointer-events: none;
    z-index: 10;
  }
  .gallery .c-heading:before {
    left: 4%;
    top: 78%;
    z-index: -1;
  }
  .gallery .c-heading:after {
    left: 99%;
    top: 94%;
    z-index: -1;
  }
  .gallery .l-container {
    position: relative;
    z-index: 20;
  }
  .gallery__girl {
    left: -4rem;
    top: -1rem;
    width: 10.2rem;
  }
  .gallery__heart {
    right: -4.5rem;
    top: 1rem;
    width: 8.2rem;
  }
  .gallery .slick-dots {
    list-style: none;
    text-align: center;
    margin-top: 2rem;
    padding: 0;
    position: static;
  }
  .gallery .slick-dots li {
    display: inline-block;
    margin: 0 1rem;
    width: 0.8rem !important;
    height: 0.8rem !important;
  }
  .gallery .slick-dots li button {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    border: 0.1rem solid #ff2f83;
  }
  .gallery .slick-dots li button::before {
    display: none;
  }
  .gallery .slick-dots li.slick-active button {
    background: #FFF92A;
  }
  .gallery .slick-slide {
    width: 31.5rem !important;
    margin: 0 0.5rem;
    position: relative;
  }
  .gallery .slick-slide .tapbtn {
    position: absolute;
    width: 6.5rem;
    bottom: 1rem;
    right: 1rem;
  }
  .gallery .slick-list {
    padding: 0 !important;
    overflow: visible;
  }
  .gallery .gallery__prev,
  .gallery .gallery__next {
    width: 4rem;
  }
  .gallery .gallery__prev {
    left: -2rem;
  }
  .gallery .gallery__next {
    right: -2rem;
  }
  .modaal-container {
    width: 96% !important;
  }
  .modaal-wrapper .modaal-close {
    right: 0;
    top: -5rem;
  }
  .modal-card {
    width: 31.5rem;
    padding: 3rem 1rem 2.5rem;
    border-radius: 1.5rem;
    border-width: 0.4rem;
    flex-direction: column;
  }
  .modal-card__deco-mag {
    width: 7rem;
  }
  .modal-card__deco-bow {
    width: 9.6rem;
    left: -4rem;
    top: -2rem;
  }
  .modal-card__deco-heart {
    top: 37rem;
    right: -3rem;
    bottom: auto;
    width: 8rem;
  }
  .modal-card__photos {
    flex-direction: column;
    width: 100%;
  }
  .modal-card__main-photo {
    flex: none;
    width: 100%;
    height: auto;
  }
  .modal-card__sub-photos {
    width: 100%;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .modal-card__sub-photo {
    display: flex;
  }
  .modal-card__sub-photo--large {
    height: auto;
    width: 40%;
    margin: 0;
  }
  .modal-card__sub-photo--sm {
    height: auto;
    width: 50%;
  }
  .modal-card__video-tag {
    font-size: 1.2rem;
    height: 3rem;
    bottom: 1.5rem;
  }
  .modal-card__wrap {
    width: 100%;
  }
  .modal-card__comment-box {
    padding: 1.5rem;
    gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-card__avatar {
    display: flex;
    align-items: center;
    flex-direction: initial;
  }
  .modal-card__avatar-img {
    width: 7rem;
    height: 7rem;
  }
  .modal-card__avatar-name {
    font-size: 1.4rem;
  }
  .modal-card__comment-head {
    font-size: 1.4rem;
  }
  .modal-card__comment-text {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .modal-card__points {
    flex-direction: column;
  }
  .modal-card__point-head {
    font-size: 1.4rem;
  }
  .modal-card__point-text {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .modal-card__heart-icon {
    font-size: 1.4rem;
  }
  .modal-card__gallery-bar {
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 22rem;
    height: 3.5rem;
  }
  .modal-card__gallery-text {
    font-size: 1.6rem;
  }
  .modal-card__main {
    flex: none;
    width: 100%;
  }
  .modal-card__main img {
    position: static;
    width: 110%;
    margin-left: -5%;
  }
  .modal-card__hair-badge {
    width: 8rem;
    bottom: 4rem;
    right: 0.5rem;
  }
  .modal-card__hair-badge p {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  .modal-card__side {
    flex: none;
    width: 100%;
    padding-top: 0;
  }
  .modal-card__side:before, .modal-card__side:after {
    display: none;
  }
  .modal-card__model-title {
    font-size: 2rem;
  }
  .modal-card__model-sub {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .modal-card__photo-grid {
    gap: 0.8rem;
  }
  .modal-card__photo-row {
    gap: 0.8rem;
  }
  .modal-card__photo-row .-fuki {
    position: absolute;
    top: -4rem;
    left: -5.5rem;
    width: 9.4rem;
    height: 8.4rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .modal-card__photo-cell--md {
    flex: 1;
    width: auto;
    height: auto;
    aspect-ratio: 212/276;
  }
  .modal-card__photo-cell--sm {
    height: auto;
    aspect-ratio: 137/198;
  }
  .youtube {
    padding: 4rem 0;
    margin: 0 auto;
    position: relative;
  }
  .youtube .-yellowline {
    position: absolute;
    top: 13rem;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 100rem;
    z-index: 1;
    pointer-events: none;
  }
  .youtube .-whiteline {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 100rem;
    pointer-events: none;
    z-index: 1;
  }
  .youtube__heart-lg {
    left: -5.4rem;
    top: -5.2rem;
    width: 12.6rem;
  }
  .youtube__heart-sm {
    position: absolute;
    right: -5.2rem;
    top: auto;
    bottom: -2rem;
    width: 8.8rem;
    z-index: 1;
    pointer-events: none;
  }
  .youtube__badge {
    position: absolute;
    left: -0.5rem;
    top: 16.8rem;
    width: 8.7rem;
    pointer-events: none;
  }
  .youtube .c-heading:before {
    left: 10%;
    top: 10%;
    z-index: -1;
  }
  .youtube .c-heading:after {
    left: 90%;
    top: 40%;
    z-index: -1;
  }
  .youtube__inner {
    position: relative;
    z-index: 3;
    text-align: center;
  }
  .youtube__header {
    margin-bottom: 2.8rem;
  }
  .youtube__frame {
    width: 31.5rem;
    height: 23.1rem;
    background: url("./../images/youtube_frame_sp.png");
    background-size: cover;
    margin: -4rem auto 0;
  }
  .youtube__frame-icon {
    position: absolute;
    width: 5.6rem;
    top: 5.3rem;
    right: 2rem;
  }
  .youtube__frame-inner {
    position: absolute;
    top: 4.5rem;
    left: 0.9rem;
    width: 29.5rem;
    height: 16.6rem;
    overflow: hidden;
    border-radius: 0.6rem;
  }
  .youtube__frame-inner:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    pointer-events: none;
    border: 0.2rem solid #BEB800;
    z-index: 100;
    box-sizing: border-box;
    border-radius: 0.6rem;
  }
  .kogyaru {
    margin: 0 auto;
    position: relative;
    padding: 4rem 0;
  }
  .kogyaru .-yellowline {
    position: absolute;
    top: 25rem;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 100rem;
    pointer-events: none;
  }
  .kogyaru .-whiteline {
    position: absolute;
    top: 42rem;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 100rem;
    pointer-events: none;
    z-index: 1;
  }
  .kogyaru .c-text {
    position: relative;
    z-index: 10;
    text-align: left;
  }
  .kogyaru .c-text .-edge {
    display: block;
  }
  .kogyaru .c-text .-edge:after {
    top: 0;
  }
  .kogyaru__girl {
    position: absolute;
    right: -4rem;
    top: -1rem;
    width: 12rem;
    pointer-events: none;
  }
  .kogyaru__heart {
    position: absolute;
    left: -4.5rem;
    top: 9rem;
    width: 7.8rem;
    z-index: 3;
    pointer-events: none;
  }
  .kogyaru .c-label {
    position: relative;
    z-index: 10;
  }
  .kogyaru .c-heading:before {
    left: 22%;
    top: 20%;
    z-index: -1;
  }
  .kogyaru .c-heading:after {
    left: 79%;
    top: 81%;
    z-index: -1;
  }
  .kogyaru__info {
    width: 31.5rem;
    max-width: 100%;
    position: relative;
    z-index: 10;
  }
  .parents {
    padding: 4rem 0 7rem;
  }
  .parents .l-container {
    border: 0.2rem solid #fff;
    background: #ff6ca7;
    padding-bottom: 24rem;
    border-radius: 1rem;
    position: relative;
    z-index: 10;
  }
  .parents .-yellowline {
    top: -3rem;
    width: 100rem;
  }
  .parents .-whiteline {
    display: none;
  }
  .parents__photo {
    width: 39rem;
    top: auto;
    bottom: -7rem;
    left: -3rem;
    z-index: 20;
  }
  .parents__box {
    width: auto;
    height: auto;
    margin: 0px auto -5.5rem;
    padding: 3rem 0 4rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
    position: relative;
    border: none;
    background: none;
  }
  .parents__box-text {
    width: 100%;
  }
  .parents .c-text {
    text-align: left;
    width: 28.5rem;
    margin: 0 auto 2rem;
  }
  .parents .c-heading:before {
    left: 22%;
    top: 29%;
  }
  .parents .c-heading:after {
    left: 77.5%;
    top: 81%;
  }
  .parents__cards {
    position: relative;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible;
    z-index: 20;
  }
  .parents__point-grid {
    display: block;
    grid-template-columns: none;
    gap: 0;
    padding-top: 0;
    list-style: none;
    overflow: visible;
  }
  .parents__point-grid.slick-slider {
    margin-bottom: 0 !important;
  }
  .parents__point-grid.slick-slider .slick-list {
    overflow: hidden;
    padding-top: 2rem;
  }
  .parents__point-grid .slick-dots {
    list-style: none;
    text-align: center;
    margin-top: 2rem;
    padding: 0;
    position: static;
    bottom: auto;
  }
  .parents__point-grid .slick-dots li {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 1rem;
  }
  .parents__point-grid .slick-dots li button {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    border: 0.1rem solid #ff2f83;
  }
  .parents__point-grid .slick-dots li button::before {
    display: none;
  }
  .parents__point-grid .slick-dots li.slick-active button {
    background: #FFF92A;
  }
  .parents__point-grid .parents__slider-prev,
  .parents__point-grid .parents__slider-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .parents__point-grid .parents__slider-prev img,
  .parents__point-grid .parents__slider-next img {
    width: 100%;
  }
  .parents__point-grid .parents__slider-prev {
    left: -3rem;
  }
  .parents__point-grid .parents__slider-next {
    right: -3rem;
  }
  .parents__point-card {
    min-height: 8.4rem;
    border: 0.2rem solid #ff2f83;
    border-radius: 1rem;
    padding: 2.2rem 0.6rem 1.5rem;
  }
  .parents__point-label {
    top: -1.4rem;
    font-size: 1.2rem;
    min-width: 14.2rem;
    padding: 0.6rem 1.5rem;
    border-radius: 2.7rem;
  }
  .parents__point-label::after {
    border-left: 0.6rem solid transparent;
    border-right: 0.6rem solid transparent;
    border-top: 0.6rem solid #ff2f83;
    bottom: -0.6rem;
  }
  .parents__point-text {
    font-size: 1.4rem;
  }
  .photo-item {
    margin: 0 auto;
    background: linear-gradient(to bottom, #fe3f8e 0%, #ff0c6e 60%, #fe5090 100%);
    padding-bottom: 4rem;
    overflow: visible;
    position: relative;
  }
  .photo-item__header {
    padding-top: 4.9rem;
  }
  .photo-item .-yellowline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 100rem;
    pointer-events: none;
  }
  .photo-item .-yellowline.-l01 {
    top: -32rem;
  }
  .photo-item .-yellowline.-l02 {
    top: 28rem;
  }
  .photo-item .-whiteline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 100rem;
    pointer-events: none;
    z-index: 1;
  }
  .photo-item .-whiteline.-l01 {
    top: -43rem;
  }
  .photo-item .-whiteline.-l02 {
    top: 44rem;
  }
  .photo-item__girl {
    position: absolute;
    left: -5rem;
    top: -3.2rem;
    width: 13.1rem;
    pointer-events: none;
    z-index: 1;
  }
  .photo-item .c-heading:before {
    left: 9%;
    top: 29%;
    z-index: -1;
  }
  .photo-item .c-heading:after {
    left: 91.5%;
    top: 88%;
    z-index: -1;
  }
  .photo-item__deco-art {
    position: absolute;
    right: -7rem;
    top: 0.2rem;
    width: 12.6rem;
    pointer-events: none;
  }
  .photo-item__box {
    margin-top: 3rem;
    border-radius: 0.6rem;
    border: 0.2rem solid #ffe557;
    padding: 0.6rem;
    position: relative;
    z-index: 1;
  }
  .photo-item__box-inner {
    border-radius: 0.6rem;
    background: #fff;
    padding: 0rem 2rem 3rem;
  }
  .photo-item__flex {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .photo-item__flex-left {
    display: contents;
  }
  .photo-item__flex-left picture {
    order: 1;
    margin-bottom: 0;
    width: calc(100% + 6rem);
    transform: translate(-3rem, -2rem);
  }
  .photo-item__flex-left dl {
    order: 3;
  }
  .photo-item__flex-left dl dt {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    font-size: 1.6rem;
    color: #FF2F83;
    border-bottom: 0.2rem solid #FF2F83;
  }
  .photo-item__flex-left dl dd {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .photo-item__flex-right {
    order: 2;
    width: 21.7rem;
    margin: -2rem auto 0;
  }
  .photo-item__productflex {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  .photo-item__productflex-child {
    width: 100%;
  }
  .photo-item__productflex-child h3 {
    border-radius: 2.7rem;
    font-size: 1.4rem;
    padding: 0.6rem 1rem;
    margin-bottom: 1.5rem;
  }
  .photo-item__productflex-child h3:before {
    bottom: -0.7rem;
    width: 1.2rem;
    height: 0.7rem;
  }
  .photo-item__productflex-child:nth-child(1) picture img {
    width: 25.9rem;
  }
  .photo-item__productflex-child:nth-child(2) picture img {
    width: 26.9rem;
  }
  .photo-item__rec {
    margin-top: 2rem;
    position: relative;
    padding: 0;
  }
  .photo-item__rec-line {
    margin-bottom: 1.5rem;
  }
  .photo-item__rec-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff2f83;
    text-align: center;
    margin-bottom: 0;
  }
  .photo-item__rec-grid {
    display: block;
    overflow: visible;
  }
  .photo-item__rec-grid.slick-slider {
    margin-bottom: 0 !important;
  }
  .photo-item__rec-grid.slick-slider .slick-list {
    overflow: hidden;
  }
  .photo-item__rec-grid .slick-dots {
    list-style: none;
    text-align: center;
    margin-top: 0;
    padding: 0;
    position: static;
    bottom: auto;
  }
  .photo-item__rec-grid .slick-dots li {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 1rem;
    border: none;
  }
  .photo-item__rec-grid .slick-dots li button {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #CCCCCC;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    border: 0.1rem solid #ff2f83;
  }
  .photo-item__rec-grid .slick-dots li button::before {
    display: none;
  }
  .photo-item__rec-grid .slick-dots li.slick-active button {
    background: #FF2F83;
  }
  .photo-item__rec-grid .photo-item__slider-prev,
  .photo-item__rec-grid .photo-item__slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .photo-item__rec-grid .photo-item__slider-prev img,
  .photo-item__rec-grid .photo-item__slider-next img {
    width: 100%;
  }
  .photo-item__rec-grid .photo-item__slider-prev {
    left: -2rem;
  }
  .photo-item__rec-grid .photo-item__slider-next {
    right: -2rem;
  }
  .photo-item__rec-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .photo-item__rec-photo {
    background: #fcfacd;
    border-radius: 0.6rem;
    aspect-ratio: 263/255;
  }
  .photo-item__rec-info {
    background: #ff6ca7;
    border-radius: 0.6rem;
    padding: 1rem 1.5rem;
    min-height: 9.3rem;
  }
  .photo-item__rec-name {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .photo-item__rec-price {
    font-size: 1.2rem;
    color: #fff;
    line-height: 2rem;
  }
  .photo-item__rec-attention {
    margin-top: 2rem;
    justify-content: flex-start;
  }
  .photo-item__rec-attention p {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  .campaign {
    padding: 4rem 0;
    background-image: url(../images/campaign-bg.png);
    background-size: cover;
    background-position: center top;
    position: relative;
  }
  .campaign .-yellowline {
    width: 100rem;
  }
  .campaign .-yellowline.-l01 {
    top: -36rem;
    transform: translateX(-50%) rotate(0deg);
  }
  .campaign .-yellowline.-l02 {
    top: 13rem;
    transform: translateX(-50%) rotate(0deg);
  }
  .campaign .-yellowline.-l03 {
    top: 107rem;
    transform: translateX(-50%) rotate(0deg);
  }
  .campaign .-whiteline {
    width: 100rem;
  }
  .campaign .-whiteline.-l01 {
    transform: translateX(-50%) rotate(0deg);
    top: -49rem;
  }
  .campaign .-whiteline.-l02 {
    top: 29rem;
    transform: translateX(-50%) rotate(0deg);
  }
  .campaign .-whiteline.-l03 {
    top: 94rem;
    transform: translateX(-50%) rotate(0deg);
  }
  .campaign__decostar {
    position: absolute;
    width: 9.4rem;
    top: 74rem;
    left: -5rem;
    z-index: 10;
  }
  .campaign .c-heading:before {
    left: 8%;
    top: 29%;
  }
  .campaign .c-heading:after {
    left: 91.5%;
    top: 81%;
  }
  .campaign .c-heading span:after {
    position: absolute;
    top: -5rem;
    left: 8%;
    transform: translateX(-50%);
    width: 7.2rem;
    height: 4.7rem;
    content: "";
    background: url(./../images/campaign-speech-bubble.png);
    background-size: cover;
  }
  .campaign .c-text {
    z-index: 10;
    position: relative;
  }
  .campaign__girl.sp01 {
    width: 13.2rem;
    top: -20rem;
    right: -6rem;
  }
  .campaign__girl.sp02 {
    width: 14rem;
    top: -9rem;
    left: -6rem;
    z-index: 0;
  }
  .campaign__section {
    margin-bottom: 3rem;
  }
  .campaign__section:last-of-type {
    margin-bottom: 0;
  }
  .campaign__ribbon {
    position: absolute;
    top: -1.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 13.8rem;
  }
  .campaign__ribbon img {
    height: auto;
    width: 100%;
  }
  .campaign__box {
    border-radius: 1rem;
    padding: 2.5rem 0.5rem 3rem;
    position: relative;
  }
  .campaign__box--pink {
    background: #fffee6;
    border: 0.3rem solid #ff2f83;
  }
  .campaign__box--magenta {
    background: #fffde8;
    border: 0.3rem solid #cc00cc;
  }
  .campaign__box--purple {
    background: #fffde8;
    border: 0.3rem solid #7700bb;
    margin-bottom: 0;
    padding: 4rem 1rem 2rem;
    z-index: 2;
  }
  .campaign__box-flex {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .campaign__box-flex figure {
    width: 100%;
  }
  .campaign__box-flex figure .btn {
    bottom: 4rem;
  }
  .campaign__box-hashtag {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 0;
  }
  .campaign__box-hashtag .-label {
    width: 11.3rem;
    height: 2.8rem;
    color: #ffe557;
    background: #ff2f83;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.3rem;
    position: relative;
  }
  .campaign__box-hashtag .-label:before {
    position: absolute;
    top: 50%;
    right: -0.8rem;
    transform: translateY(-50%) rotate(-90deg);
    content: "";
    width: 1.1rem;
    height: 0.6rem;
    background: #ff2f83;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .campaign__box-hashtag .-tag {
    font-size: 1.8rem;
    color: #ff2f83;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 2.6rem;
  }
  .campaign__box-hashtag .-comment {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
  }
  .campaign__box--magenta {
    display: flex;
    flex-direction: column;
    background: #fffee6;
    border: 0.3rem solid #DD10C5;
  }
  .campaign__flex {
    flex-flow: column;
  }
  .campaign__prize-info {
    display: block;
    order: 1;
    margin-bottom: 2rem;
  }
  .campaign__prize-title-img {
    width: 25rem;
    margin: 0 auto;
  }
  .campaign__prize-model-img {
    display: none;
  }
  .campaign__model-grid {
    order: 2;
    width: 27.5rem;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 5.5rem 0;
  }
  .campaign__model-item {
    position: relative;
    padding-bottom: 1.4rem;
    width: 13rem;
    /*
    img {
        width: 100%;
        display: block;
        border: 0.3rem solid #FAD4E3;
        box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
        aspect-ratio: 1;
        object-fit: cover;
    }
    */
  }
  .campaign__model-item span {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #FF2F83;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.35rem 0.5rem;
    border-radius: 2.7rem;
    white-space: nowrap;
    width: 11rem;
    text-align: center;
    line-height: 1;
  }
  .campaign__model-item-instagram {
    bottom: -5.3rem;
  }
  .campaign__model-item:nth-child(4) span {
    font-size: 1rem;
  }
  .campaign__prize-sample {
    position: static;
    width: 29.7rem;
    order: 3;
    margin-bottom: 0;
  }
  .campaign__prize-sample img {
    width: 100%;
  }
  .campaign__prize-present {
    width: 27.8rem;
    order: 4;
  }
  .campaign__heart-pink {
    position: absolute;
    right: -4rem;
    top: -8rem;
    width: 8rem;
    height: auto;
    pointer-events: none;
  }
  .campaign__heart-sm {
    position: absolute;
    left: -3rem;
    bottom: -2.5rem;
    width: 7rem;
    height: auto;
    pointer-events: none;
  }
  .campaign__entry-inner {
    position: relative;
    padding: 0;
  }
  .campaign__scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13.5rem;
    height: 14.3rem;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  .campaign__scroll-hint.is-visible {
    opacity: 1;
  }
  .campaign__scroll-hint__icon {
    width: 3rem;
    height: auto;
  }
  .campaign__scroll-hint__text {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  .campaign__entry-box {
    padding: 2rem 1rem;
  }
  .campaign__entry-date {
    margin: 0 auto 1rem;
  }
  .campaign__entry-title {
    font-size: 1.8rem;
  }
  .campaign__entry-section {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .campaign__entry-text {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .price-plan {
    margin: 0 auto;
    padding: 4rem 0;
    position: relative;
  }
  .price-plan .-yellowline {
    width: 100rem;
  }
  .price-plan .-yellowline.-l01 {
    top: -53rem;
  }
  .price-plan .-yellowline.-l02 {
    top: 36rem;
  }
  .price-plan .-whiteline {
    width: 100rem;
  }
  .price-plan .-whiteline.-l01 {
    top: -33rem;
  }
  .price-plan .-whiteline.-l02 {
    top: 22rem;
  }
  .price-plan__heart-deco {
    right: -5.7rem;
    width: 9.9rem;
  }
  .price-plan .c-label span {
    width: 9.3rem;
  }
  .price-plan .c-heading:before {
    left: 30%;
    top: 29%;
  }
  .price-plan .c-heading:after {
    left: 68.5%;
    top: 81%;
  }
  .price-plan__box {
    border-radius: 0.6rem;
    box-shadow: 1rem 1rem 0 #ff2f83;
    padding: 3rem 2rem 2rem;
    display: block;
  }
  .price-plan__box-left {
    flex: none;
    min-width: 0;
  }
  .price-plan__box-left > p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    color: #333;
    margin-top: 0.5rem;
  }
  .price-plan__logo-sp {
    display: block;
    width: 24.7rem;
    height: auto;
    margin: 0 auto;
  }
  .price-plan__logo-row {
    display: none;
  }
  .price-plan__pack-name {
    display: none;
  }
  .price-plan__age-img {
    display: flex;
    margin-bottom: 1rem;
  }
  .price-plan__age-img .-label {
    width: 7.7rem;
    height: 2.1rem;
    border-radius: 1.3rem;
    font-size: 1.2rem;
  }
  .price-plan__age-img .-text {
    font-size: 1.2rem;
  }
  .price-plan__age-img .-text .-num {
    font-size: 2.4rem;
  }
  .price-plan__divider {
    margin: 1.2rem 0;
  }
  .price-plan__plan-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .price-plan__plan-img {
    margin-bottom: 0;
  }
  .price-plan__plan-img .-label {
    width: 7rem;
    font-size: 1.1rem;
  }
  .price-plan__plan-img .-list li {
    font-size: 1.2rem;
  }
  .price-plan__amount-img {
    align-self: flex-end;
    margin-bottom: 0;
  }
  .price-plan__amount-img .-unit {
    flex-direction: row-reverse;
  }
  .price-plan__amount-img .-price {
    font-size: 3.2rem;
  }
  .price-plan__amount-img .-yen {
    font-size: 1.6rem;
  }
  .price-plan__box-right {
    flex-shrink: 0;
    width: 100%;
    margin-top: 2rem;
  }
  .price-plan__box-right img {
    width: 100%;
    border-radius: 0.6rem;
  }
  .price-plan__heart-diamond {
    position: absolute;
    left: -2rem;
    bottom: -3.5rem;
    width: 12rem;
    pointer-events: none;
  }
  .cta-banner {
    padding: 2rem 3rem;
    background: url("./../images/cta-banner_sp.png");
  }
  .cta-banner .l-container {
    border-radius: 0.6rem;
    padding: 2rem 2rem 2.4rem;
    position: relative;
    overflow: hidden;
  }
  .cta-banner__box {
    width: 100%;
  }
  .cta-banner__logo {
    width: 100%;
    margin: 0 0 1rem;
  }
  .cta-banner__txt {
    font-size: 1.2rem;
    color: #ff2f83;
    text-align: left;
    line-height: 2rem;
    max-width: 16.2rem;
    margin: 0 0 0.9rem;
  }
  .cta-banner__btns {
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
    position: static;
    z-index: auto;
  }
  .cta-banner__btn:link {
    width: 26.6rem;
    height: 5rem;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0.4rem 0.4rem 0 #CC0053;
  }
  .cta-banner__btn:link:after {
    width: 2rem;
    height: 2rem;
    right: 1.5rem;
  }
  .cta-banner__btn:link.cta-banner__btn--primary {
    box-shadow: 0.4rem 0.4rem 0 #AD4300;
  }
  .cta-banner__gals {
    position: absolute;
    width: 15rem;
    top: 4.7rem;
    bottom: auto;
    right: -1.3rem;
  }
}