@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
/* mixins */
/* functions */
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

.l-main {
  width: 100%;
  font-family: YakuHanMP, var(--font-zen-maru);
  color: #222;
  font-weight: 400;
  font-size: 4.2666666667vw;
  font-feature-settings: "palt";
  line-height: 1.8em;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  .l-main {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

.arvo {
  font-family: var(--font-arvo);
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.smp-tab-block {
  display: block;
}
@media screen and (min-width: 1000px) {
  .smp-tab-block {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-block {
    display: block;
  }
}
@media screen and (min-width: 1000px) {
  .tab-block {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
}

.pc-middle-block {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

.pc-large-block {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-block {
    display: block;
  }
}

.smp-inline {
  display: inline;
}
@media screen and (min-width: 768px) {
  .smp-inline {
    display: none;
  }
}

.pc-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-inline {
    display: inline;
  }
}

.tab-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-inline {
    display: inline;
  }
}
@media screen and (min-width: 1000px) {
  .tab-inline {
    display: none;
  }
}

.pc-middle-inline {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-inline {
    display: inline;
  }
}

.pc-middle02-inline {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-inline {
    display: inline;
  }
}

.pc-large-inline {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-inline {
    display: inline;
  }
}

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

a, button {
  color: var(--base-text-color);
  text-decoration: none;
  transition: all var(--base-transition-time);
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

:root {
  --base-width: 1000px;
  --base-width-sp: 86%;
  --max-width: 1100px;
  --max-width-large: 1200px;
  --base-inline-sp: 7%;
  --base-color: #000000;
  --base-text-color: #000000;
  --c-gray: #e3e3e3;
  --c-gray-middle: #c9c9c9;
  --c-red: #e60014;
  --c-pink: #e96382;
  --c-pink-light: #f5cfce;
  --c-pink-light-over: #fce5e7;
  --c-pink-pale: #fadbe2;
  --c-orange: #ed7100;
  --c-yellow: #ffff00;
  --c-yellow-light: #fff689;
  --c-yellow-pale: #ffffe4;
  --c-ivory: #f5f5e6;
  --c-green: #3aa37a;
  --c-mint: #deefea;
  --c-mint-light: #e5f2ef;
  --base-font-size: 17px;
  --base-font-size-sp: vw(17);
  --font-zen-maru: "Zen Maru Gothic", sans-serif;
  --font-arvo: "Arvo", serif;
}

@keyframes heroObj01 {
  0% {
    transform: translate(-10em, -10em);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes heroObj02 {
  0% {
    transform: translate(10em, -10em);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes heroObj03 {
  0% {
    transform: translate(-10em, -10em);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes heroObj04 {
  0% {
    transform: translate(10em, 0em);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes heroObj05 {
  0% {
    transform: translate(-10em, 10em);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes heroObj06 {
  0% {
    transform: translate(10em, 10em);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes anima_airy {
  0% {
    transform: translate(0, 0em);
  }
  50% {
    transform: translate(0, -1em);
  }
  to {
    transform: translate(0, 0em);
  }
}
@keyframes human_shake01 {
  80% {
    transform: rotate(0deg);
  }
  85% {
    transform: rotate(-3deg);
  }
  90% {
    transform: rotate(0deg);
  }
  95% {
    transform: rotate(3deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes human_shake02 {
  48% {
    transform: rotate(0deg);
  }
  51% {
    transform: rotate(-4deg);
  }
  54% {
    transform: rotate(0deg);
  }
  57% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.kerning-point {
  letter-spacing: -0.15em;
  text-indent: -0.05em;
}

/*======================================================================================*/
.js-fix {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease all;
}
.js-fix.is-active {
  opacity: 1;
  pointer-events: all;
}
.js-fix.is-stop {
  position: absolute;
}

.l-main {
  position: relative;
  background: transparent;
  padding: 0;
  padding-bottom: 37.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-bottom: 100px;
  }
}

.hero {
  position: relative;
  background-color: #f5f5e6;
  padding-block: 17.3333333333vw 52vw;
}
@media screen and (min-width: 768px) {
  .hero {
    padding-block: 60px 44%;
    margin-bottom: -100px;
  }
}
@media screen and (min-width: 1100px) {
  .hero {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .hero {
    padding-bottom: 200px;
  }
}
.hero .hero-objects {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .hero .hero-objects {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    width: 100%;
    max-width: 1360px;
    height: 100%;
  }
}
.hero .obj-01, .hero .obj-02, .hero .obj-03, .hero .obj-04, .hero .obj-05, .hero .obj-06 {
  position: absolute;
  top: 80vw;
}
.hero .obj-01 {
  width: 52vw;
  top: -25vw;
  left: -20vw;
  transform: translate(-10em, -10em);
  animation: heroObj01 1.2s ease 0.2s forwards !important;
}
@media screen and (min-width: 768px) {
  .hero .obj-01 {
    width: 28%;
    top: -7%;
    left: -4%;
  }
}
@media screen and (min-width: 1000px) {
  .hero .obj-01 {
    width: min(378px, 33%);
    left: -6%;
  }
}
.hero .obj-01.animated {
  animation: heroObj01 1.2s ease 0.2s forwards !important;
}
.hero .obj-02 {
  width: 48vw;
  top: -15vw;
  right: -20vw;
  transform: translate(10em, -10em);
  animation: anima_airy 3.5s ease 0s infinite !important;
}
@media screen and (min-width: 768px) {
  .hero .obj-02 {
    width: 26%;
    top: -3%;
    right: -5%;
  }
}
@media screen and (min-width: 1000px) {
  .hero .obj-02 {
    width: min(361px, 30%);
    top: -6%;
    right: 3%;
  }
}
.hero .obj-02.animated {
  animation: heroObj02 1.2s ease 0.4s forwards !important;
}
.hero .obj-03 {
  width: 22vw;
  top: 35vw;
  left: -10vw;
  transform: translate(-10em, -10em);
  animation: heroObj03 1.2s ease 0.6s forwards !important;
}
@media screen and (min-width: 768px) {
  .hero .obj-03 {
    width: 12%;
    top: 20%;
    left: -7%;
  }
}
@media screen and (min-width: 1000px) {
  .hero .obj-03 {
    width: min(163px, 19%);
    top: 28%;
    left: -8%;
  }
}
@media screen and (min-width: 1280px) {
  .hero .obj-03 {
    left: -4%;
  }
}
.hero .obj-03.animated {
  animation: heroObj03 1.2s ease 0.6s forwards !important;
}
.hero .obj-04 {
  width: 27vw;
  top: 43vw;
  right: -13vw;
  transform: translate(10em, 0em);
  animation: heroObj04 1.2s ease 0.5s forwards !important;
}
@media screen and (min-width: 768px) {
  .hero .obj-04 {
    width: 10%;
    top: 13%;
    right: -5%;
  }
}
@media screen and (min-width: 1000px) {
  .hero .obj-04 {
    width: min(139px, 13%);
    top: 20%;
    right: -7%;
  }
}
@media screen and (min-width: 1280px) {
  .hero .obj-04 {
    right: -5%;
  }
}
.hero .obj-04.animated {
  animation: heroObj04 1.2s ease 0.5s forwards !important;
}
.hero .obj-05 {
  width: 43vw;
  top: 150vw;
  left: -22vw;
  transform: translate(-10em, 10em);
  animation: anima_airy 3.5s ease 0s infinite !important;
}
@media screen and (min-width: 768px) {
  .hero .obj-05 {
    width: 20%;
    top: 42%;
    left: -11%;
  }
}
@media screen and (min-width: 1000px) {
  .hero .obj-05 {
    width: min(279px, 26%);
    top: 50%;
    left: -13%;
  }
}
@media screen and (min-width: 1100px) {
  .hero .obj-05 {
    left: -9%;
  }
}
@media screen and (min-width: 1280px) {
  .hero .obj-05 {
    left: -5%;
  }
}
.hero .obj-05.animated {
  animation: heroObj05 1.2s ease 0.5s forwards !important;
}
.hero .obj-06 {
  width: 25vw;
  top: 137vw;
  right: -6vw;
  transform: translate(10em, 10em);
  animation: heroObj06 1.2s ease 0.5s forwards !important;
}
@media screen and (min-width: 768px) {
  .hero .obj-06 {
    width: 19%;
    top: 71%;
    right: -6%;
  }
}
@media screen and (min-width: 1000px) {
  .hero .obj-06 {
    width: min(259px, 25%);
    top: 50%;
    right: -8%;
  }
}
@media screen and (min-width: 1280px) {
  .hero .obj-06 {
    right: -5%;
    top: 40%;
  }
}
.hero .obj-06.animated {
  animation: heroObj06 1.2s ease 0.5s forwards !important;
}
@media screen and (min-width: 1100px) {
  .hero .illust-objects {
    position: relative;
    top: 190px;
    margin-inline: auto;
    width: 100%;
    max-width: 1360px;
    height: 100%;
  }
}
.hero .illust-01, .hero .illust-02, .hero .illust-03, .hero .illust-04, .hero .illust-05, .hero .illust-06,
.hero .illust-07, .hero .illust-08, .hero .illust-09, .hero .illust-10, .hero .illust-11, .hero .illust-12,
.hero .illust-13 {
  position: absolute;
  left: 50%;
  width: 10%;
  z-index: 1;
}
@media screen and (min-width: 1100px) {
  .hero .illust-objects01 {
    position: absolute;
    bottom: 100px;
    left: 0%;
    width: 24%;
    max-width: 390px;
    height: 18.2vw;
    max-height: 288px;
  }
}
@media screen and (min-width: 1280px) {
  .hero .illust-objects01 {
    bottom: 70px;
    width: 29%;
    height: 21.2vw;
  }
}
.hero .illust-01 {
  margin: 7.5%;
  left: 3.5%;
  bottom: 7.5%;
}
@media screen and (min-width: 768px) {
  .hero .illust-01 {
    bottom: 11%;
    left: 0;
  }
}
@media screen and (min-width: 1100px) {
  .hero .illust-01 {
    width: 16%;
    bottom: 200%;
    left: 30%;
  }
}
.hero .illust-02 {
  width: 23%;
  left: 8%;
  bottom: 3%;
  animation: human_shake01 2.4s ease 0s infinite;
}
@media screen and (min-width: 768px) {
  .hero .illust-02 {
    left: 4.5%;
  }
}
@media screen and (min-width: 1100px) {
  .hero .illust-02 {
    width: 56%;
    left: 28%;
    bottom: 124%;
  }
}
.hero .illust-03 {
  width: 5%;
  left: 17.8%;
  bottom: 2.2%;
}
@media screen and (min-width: 768px) {
  .hero .illust-03 {
    left: 14.3%;
  }
}
@media screen and (min-width: 1100px) {
  .hero .illust-03 {
    width: 12%;
    left: 12%;
    bottom: 18%;
  }
}
.hero .illust-04 {
  width: 16%;
  left: 24%;
  bottom: 3%;
  animation: human_shake01 2.1s ease 0.8s infinite;
}
@media screen and (min-width: 768px) {
  .hero .illust-04 {
    left: 20.5%;
  }
}
@media screen and (min-width: 1100px) {
  .hero .illust-04 {
    width: 35.5%;
    left: 5%;
    bottom: 31%;
  }
}
.hero .illust-05 {
  width: 18.4%;
  bottom: 3%;
  left: 34%;
  animation: human_shake01 2.1s ease 0.5s infinite;
}
@media screen and (min-width: 768px) {
  .hero .illust-05 {
    left: 30.5%;
  }
}
@media screen and (min-width: 1100px) {
  .hero .illust-05 {
    width: 40%;
    left: 42%;
    bottom: 25%;
  }
}
.hero .illust-06 {
  width: 3.5%;
  bottom: 9.5%;
  left: 45%;
}
@media screen and (min-width: 768px) {
  .hero .illust-06 {
    bottom: 15%;
    left: 43%;
  }
}
@media screen and (min-width: 1100px) {
  .hero .illust-06 {
    width: 8.5%;
    left: 83%;
    bottom: 82%;
  }
}
.hero .illust-07 {
  width: 5.5%;
  bottom: 2.6%;
  left: 34%;
}
@media screen and (min-width: 768px) {
  .hero .illust-07 {
    left: 30.5%;
  }
}
@media screen and (min-width: 1100px) {
  .hero .illust-07 {
    width: 12.5%;
    left: 77%;
    bottom: 22%;
  }
}
@media screen and (min-width: 1100px) {
  .hero .illust-objects02 {
    position: absolute;
    bottom: 100px;
    right: -1%;
    width: 24%;
    max-width: 404px;
    height: 17vw;
    max-height: 275px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1280px) {
  .hero .illust-objects02 {
    bottom: 70px;
    width: 54%;
    height: 21vw;
  }
}
.hero .illust-08 {
  width: 15%;
  bottom: 3%;
  left: 50.3%;
  animation: human_shake01 2.1s ease 1.1s infinite;
}
@media screen and (min-width: 1100px) {
  .hero .illust-08 {
    width: 32%;
    left: 19%;
    bottom: 18%;
  }
}
.hero .illust-09 {
  width: 8%;
  bottom: 2.1%;
  left: 56%;
}
@media screen and (min-width: 1100px) {
  .hero .illust-09 {
    width: 17%;
    left: 8%;
    bottom: 150%;
  }
}
.hero .illust-10 {
  width: 22.5%;
  bottom: 2.3%;
  left: 60%;
  z-index: 1;
  animation: human_shake01 2.6s ease 0.2s infinite;
}
@media screen and (min-width: 1100px) {
  .hero .illust-10 {
    width: 47%;
    left: 25%;
    bottom: 145%;
    z-index: 1;
  }
}
.hero .illust-11 {
  width: 23%;
  bottom: 3%;
  left: 74.5%;
  animation: human_shake01 2.2s ease 0.5s infinite;
}
@media screen and (min-width: 1100px) {
  .hero .illust-11 {
    width: 48.5%;
    left: 50%;
    bottom: 29%;
  }
}
.hero .illust-12 {
  width: 7%;
  bottom: 2.3%;
  left: 83.5%;
}
@media screen and (min-width: 1100px) {
  .hero .illust-12 {
    width: 15%;
    left: 1%;
    bottom: 22%;
  }
}
.hero .illust-13 {
  width: 4%;
  bottom: 8.9%;
  left: 59.5%;
}
@media screen and (min-width: 768px) {
  .hero .illust-13 {
    bottom: 14.5%;
  }
}
@media screen and (min-width: 1100px) {
  .hero .illust-13 {
    width: 9%;
    left: -8%;
    bottom: 82%;
  }
}

.hero-wrap {
  width: var(--base-width-sp);
  margin-inline: auto;
}

.hero-campaign-logo img {
  width: 63%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .hero-campaign-logo img {
    max-width: 355px;
  }
}

.hero-heading {
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .hero-heading {
    margin-top: 35px;
  }
}

.hero__title {
  font-size: 9.0666666667vw;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 1000px) {
  .hero__title {
    font-size: 60px;
  }
}
.hero__title .small {
  font-size: 0.7em;
  vertical-align: top;
  letter-spacing: 0.03em;
}
.hero__title .txt {
  display: inline-block;
  max-width: 800px;
  margin-top: 13.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .hero__title .txt {
    margin-top: 25px;
  }
}

.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26.6666666667vw;
  max-width: 780px;
  margin-inline: auto;
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .hero-image {
    flex-direction: row;
    gap: 35px;
    margin-top: 40px;
  }
}
.hero-image .card {
  width: 77%;
}
.hero-image .txt {
  width: 67%;
}
@media screen and (min-width: 768px) {
  .hero-image .txt {
    animation-name: anima_airy !important;
    animation-duration: 3s !important;
    animation-delay: 0s !important;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
}
.hero-image .txt.animated {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .hero-image .txt.animated {
    animation-name: fadeInUp !important;
    animation-duration: 0.8s !important;
    animation-delay: 0.2s !important;
    animation-iteration-count: 1;
  }
}
.hero-image .txt_sub {
  position: absolute;
  right: 2.6666666667vw;
  bottom: 30.6666666667vw;
  width: 45%;
}
@media screen and (min-width: 768px) {
  .hero-image .txt_sub {
    right: -45px;
    bottom: 150px;
    width: 20%;
    max-width: 160px;
    animation-name: anima_airy !important;
    animation-duration: 3s !important;
    animation-delay: 0s !important;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
}
@media screen and (min-width: 1000px) {
  .hero-image .txt_sub {
    right: -120px;
    bottom: 105px;
    max-width: 160px;
  }
}
.hero-image .txt_sub.animated {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .hero-image .txt_sub.animated {
    animation-name: fadeInUp !important;
    animation-duration: 0.8s !important;
    animation-delay: 0.2s !important;
    animation-iteration-count: 1;
  }
}

.hero-content {
  margin-top: 12vw;
}
@media screen and (min-width: 768px) {
  .hero-content {
    position: relative;
    z-index: 1;
    margin-top: 45px;
  }
}
.hero-content .hero-content__read {
  font-size: 6.4vw;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero-content .hero-content__read {
    font-size: 36px;
  }
}
.hero-content .hero-content__read .em {
  color: var(--c-red);
}
@media screen and (min-width: 768px) {
  .hero-content .hero-content__read .em {
    font-size: 40px;
  }
}
.hero-content .hero-content__read .num {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin-top: 4vw;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .hero-content .hero-content__read .num {
    margin-top: 15px;
    max-width: 700px;
  }
}
.hero-content .hero-content__read .strong {
  font-size: 13.3333333333vw;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .hero-content .hero-content__read .strong {
    font-size: 73px;
  }
}
.hero-content .hero-content__period {
  font-size: 6.6666666667vw;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .hero-content .hero-content__period {
    position: relative;
    bottom: -50px;
    margin-top: -50px;
    font-size: 30px;
  }
}
.hero-content .hero-content__period .year {
  font-family: var(--font-arvo);
  font-size: 7.4666666667vw;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .hero-content .hero-content__period .year {
    font-size: 37px;
  }
}
.hero-content .hero-content__period .year > span {
  font-family: var(--font-zen-maru);
  font-size: 5.6vw;
}
@media screen and (min-width: 768px) {
  .hero-content .hero-content__period .year > span {
    font-size: 21px;
  }
}
.hero-content .hero-content__period .day {
  font-size: 7.7333333333vw;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .hero-content .hero-content__period .day {
    font-size: 38px;
  }
}
.hero-content .hero-content__period .day .num {
  font-family: var(--font-arvo);
  font-size: 12.8vw;
}
@media screen and (min-width: 768px) {
  .hero-content .hero-content__period .day .num {
    font-size: 65px;
  }
}
.hero-content .hero-content__period .day .weekday {
  position: relative;
  bottom: 0.2em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.8em;
  height: 1.8em;
  background-color: #000;
  border-radius: 50%;
  font-size: 4.2666666667vw;
  color: #fff;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .hero-content .hero-content__period .day .weekday {
    font-size: 22px;
  }
}

.sec-point {
  position: relative;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(254, 255, 254) 25.07%, rgb(222, 239, 234) 120%);
}
@media screen and (min-width: 768px) {
  .sec-point {
    background-image: linear-gradient(-45deg, rgb(255, 255, 255) 0%, rgb(254, 255, 254) 25.07%, rgb(222, 239, 234) 103%);
  }
}
@media screen and (min-width: 1000px) {
  .sec-point {
    margin-top: -30px;
    background-image: linear-gradient(-20deg, rgb(255, 255, 255) 0%, rgb(254, 255, 254) 25.07%, rgb(222, 239, 234) 100%);
  }
}
@media screen and (min-width: 1280px) {
  .sec-point {
    margin-top: -210px;
  }
}
.sec-point::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 20%;
  background-color: #f5f5e6;
  background-image: url(../myimg/bg-point_sp.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .sec-point::before {
    padding-top: 12%;
    background-image: url(../myimg/bg-point.webp);
    background-size: cover;
  }
}

.point-wrapper {
  max-width: var(--max-width-large);
  width: var(--base-width-sp);
  margin-inline: auto;
  padding-top: 16vw;
}
@media screen and (min-width: 768px) {
  .point-wrapper {
    padding-top: 0;
  }
}

.point__title {
  color: var(--c-green);
  font-size: 6.4vw;
  letter-spacing: 0.04em;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point__title {
    font-size: 34px;
    letter-spacing: 0.05em;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .point__title {
    line-height: 0.7;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .point__title {
    font-size: 37px;
  }
}
.point__title img {
  max-width: 360px;
  margin-inline: auto;
  margin-bottom: 6.6666666667vw;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .point__title img {
    margin-bottom: 30px;
  }
}

.point-example .point-example__read {
  margin-top: 16vw;
  color: var(--c-green);
  font-size: 6.6666666667vw;
  letter-spacing: 0em;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point-example .point-example__read {
    margin-top: 40px;
    font-size: 28px;
  }
}
@media screen and (min-width: 1000px) {
  .point-example .point-example__read {
    margin-top: 55px;
  }
}
.point-example .point-example__txt {
  position: relative;
  margin-top: 13.3333333333vw;
  padding-block: 4vw;
  border-radius: 30px;
  background-image: linear-gradient(90deg, rgb(129, 201, 107), rgb(123, 191, 173) 99%);
  color: #fff;
  font-size: 6.6666666667vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point-example .point-example__txt {
    max-width: 630px;
    margin-inline: auto;
    margin-top: 70px;
    padding-block: 15px;
    border-radius: 100px;
    font-size: 28px;
  }
}
.point-example .point-example__txt::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 11.5px 0px 11.5px;
  border-color: #7EC48C transparent transparent transparent;
}
.point-example .point-example-image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9%;
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  .point-example .point-example-image {
    max-width: 460px;
    margin-top: 60px;
    margin-inline: auto;
    gap: 6%;
  }
}
.point-example .point-example-image .image {
  width: 44%;
}
@media screen and (min-width: 768px) {
  .point-example .point-example-image .image {
    width: 44%;
  }
}
.point-example .point-example-amigo {
  width: 50%;
  text-align: center;
  background-image: url(../myimg/point-example_bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .point-example .point-example-amigo {
    padding-block: 30px;
  }
}
.point-example .point-example-amigo .point-example-amigo__txt {
  font-size: 6.4vw;
  font-weight: 700;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .point-example .point-example-amigo .point-example-amigo__txt {
    font-size: 32px;
    line-height: 0.9;
  }
}
.point-example .point-example-amigo .point-example-amigo__txt > span {
  font-size: 4vw;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .point-example .point-example-amigo .point-example-amigo__txt > span {
    font-size: 18px;
  }
}
.point-example .point-example-amigo .point-example-amigo__point {
  font-size: 11.2vw;
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .point-example .point-example-amigo .point-example-amigo__point {
    font-size: 56px;
    margin-top: 10px;
    margin-bottom: -10px;
  }
}
.point-example .point-example-amigo .point-example-amigo__point > span {
  color: var(--c-orange);
  font-family: var(--font-arvo);
  font-size: 19.2vw;
  letter-spacing: -0.03em;
  margin-right: 0.1em;
}
@media screen and (min-width: 768px) {
  .point-example .point-example-amigo .point-example-amigo__point > span {
    font-size: 97px;
  }
}

.point-slide {
  position: relative;
  margin-top: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .point-slide {
    margin-top: 55px;
  }
}
@media screen and (min-width: 1000px) {
  .point-slide {
    margin-top: 75px;
  }
}
.point-slide .point-slide-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 72vw;
  padding-inline: 16vw;
  box-sizing: content-box;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .point-slide .point-slide-item {
    width: auto;
    padding-inline: 10px;
  }
}
.point-slide .point-slide__read {
  font-size: 5.3333333333vw;
  letter-spacing: 0;
  line-height: 1.1;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point-slide .point-slide__read {
    font-size: 20px;
  }
}
.point-slide .point-slide__read .num {
  font-size: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .point-slide .point-slide__read .num {
    font-size: 25px;
  }
}
.point-slide .point-slide__read .em {
  color: var(--c-red);
}
.point-slide .point-slide-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 53.3333333333vw;
  margin-inline: auto;
  margin-top: 2.6666666667vw;
  padding-inline: 8vw;
  border-radius: 50%;
  background-color: var(--c-mint-light);
}
@media screen and (min-width: 768px) {
  .point-slide .point-slide-logo {
    width: 195px;
    height: 190px;
    margin-top: 10px;
    padding-inline: 30px;
  }
}
.point-slide .point-slide__name {
  margin-top: 4.8vw;
  font-size: 5.3333333333vw;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .point-slide .point-slide__name {
    margin-top: 18px;
    font-size: 21px;
  }
}
.point-slide .point-slide-point {
  margin-top: 5.3333333333vw;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point-slide .point-slide-point {
    margin-top: 15px;
  }
}
.point-slide .point-slide-point__txt {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .point-slide .point-slide-point__txt {
    font-size: 14px;
  }
}
.point-slide .point-slide-point__txt .sup {
  font-size: 0.65em;
  vertical-align: 0.4em;
}
.point-slide .point-slide-point__txt.note {
  min-height: 2.5em;
}
.point-slide .point-slide-point__percent {
  font-size: 10.1333333333vw;
  font-weight: 900;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .point-slide .point-slide-point__percent {
    font-size: 38px;
  }
}
.point-slide .point-slide-point__percent .num {
  color: var(--c-pink);
  font-family: var(--font-arvo);
  font-size: 17.3333333333vw;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin-right: 0.1em;
}
@media screen and (min-width: 768px) {
  .point-slide .point-slide-point__percent .num {
    font-size: 65px;
  }
}
.point-slide .slick-track {
  display: flex;
}
.point-slide .slick-slide {
  height: auto !important;
}
.point-slide .slick-prev,
.point-slide .slick-next {
  position: absolute;
  top: 38%;
  translate: 0 -50%;
  width: 7.2vw;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .point-slide .slick-prev,
  .point-slide .slick-next {
    top: 40%;
    width: 27px;
  }
}
.point-slide .slick-prev {
  right: 93%;
}
@media screen and (min-width: 768px) {
  .point-slide .slick-prev {
    right: 100%;
  }
}
.point-slide .slick-next {
  left: 93%;
}
@media screen and (min-width: 768px) {
  .point-slide .slick-next {
    left: 100%;
  }
}

.point__note {
  margin-top: 5.3333333333vw;
  font-size: 4vw;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point__note {
    margin-top: 30px;
    font-size: 15px;
  }
}

.point-common {
  display: flex;
  flex-direction: column;
  gap: 12vw;
  margin-top: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .point-common {
    justify-content: center;
    flex-direction: row;
    gap: 25px;
    margin-top: 80px;
  }
}
.point-common .point-common-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .point-common .point-common-item {
    padding-inline: 0;
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
}
.point-common .point-common-item::before, .point-common .point-common-item::after {
  content: "";
  width: 10.6666666667vw;
  height: 37.3333333333vw;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .point-common .point-common-item::before, .point-common .point-common-item::after {
    width: 40px;
    height: 140px;
  }
}
.point-common .point-common-item::before {
  background-image: url(../myimg/parentheses-left.svg);
}
.point-common .point-common-item::after {
  background-image: url(../myimg/parentheses-right.svg);
}
.point-common .point-common-point {
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point-common .point-common-point {
    margin-top: 15px;
  }
}
.point-common .point-common-point__name {
  font-size: 6.1333333333vw;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point-common .point-common-point__name {
    font-size: 28px;
  }
}
.point-common .point-common-point__txt {
  margin-top: 2.6666666667vw;
  font-size: 4.8vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .point-common .point-common-point__txt {
    margin-top: 10px;
    font-size: 18px;
  }
}
.point-common .point-common-point__percent {
  font-size: 10.1333333333vw;
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .point-common .point-common-point__percent {
    font-size: 38px;
  }
}
.point-common .point-common-point__percent .num {
  color: var(--c-pink);
  font-family: var(--font-arvo);
  font-size: 17.3333333333vw;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin-right: 0.1em;
}
@media screen and (min-width: 768px) {
  .point-common .point-common-point__percent .num {
    font-size: 65px;
  }
}

.point-accumulate {
  margin-top: 9.3333333333vw;
  padding-block: 8vw;
  border-radius: 35px;
  background-color: var(--c-yellow-light);
  color: var(--c-pink);
  font-size: 8vw;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point-accumulate {
    max-width: 750px;
    margin-top: 55px;
    margin-inline: auto;
    padding-block: 15px;
    border-radius: 100px;
    font-size: 31px;
  }
}
.point-accumulate .em {
  color: #000;
  font-size: 9.3333333333vw;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .point-accumulate .em {
    font-size: 42px;
    line-height: 1;
  }
}
.point-accumulate .num {
  color: var(--c-pink);
  font-family: var(--font-arvo);
  font-size: 19.4666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .point-accumulate .num {
    font-size: 73px;
  }
}
.point-accumulate .large {
  font-size: 11.2vw;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .point-accumulate .large {
    font-size: 42px;
  }
}

.point-accumulate__note {
  margin-top: 3.4666666667vw;
  font-size: 3.7333333333vw;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point-accumulate__note {
    font-size: 14px;
    margin-top: 15px;
  }
}

.sec-campaign {
  position: relative;
  margin-top: 12vw;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(245, 245, 230) 100%);
}
@media screen and (min-width: 768px) {
  .sec-campaign {
    margin-top: 100px;
    background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(245, 245, 230) 100%);
  }
}
@media screen and (min-width: 1000px) {
  .sec-campaign {
    margin-top: 140px;
    background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(245, 245, 230) 100%);
  }
}
.sec-campaign::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 26%;
  background-color: #fff;
  background-image: url(../myimg/bg-campaign_sp.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .sec-campaign::before {
    padding-top: 12%;
    background-image: url(../myimg/bg-campaign.webp);
    background-size: cover;
  }
}
.sec-campaign .campaign-obj01 {
  position: absolute;
  top: 5%;
  left: 7%;
  width: 48vw;
}
@media screen and (min-width: 768px) {
  .sec-campaign .campaign-obj01 {
    width: 26%;
    top: -1%;
    left: auto;
    right: 56%;
    max-width: 300px;
  }
}
@media screen and (min-width: 1000px) {
  .sec-campaign .campaign-obj01 {
    top: 1%;
  }
}
.sec-campaign .campaign-obj02 {
  position: absolute;
  top: 1.9%;
  left: 44%;
  width: 48vw;
}
@media screen and (min-width: 768px) {
  .sec-campaign .campaign-obj02 {
    top: -1.5%;
    left: 50%;
    width: 40%;
    max-width: 395px;
  }
}
@media screen and (min-width: 768px) {
  .sec-campaign .campaign-obj02 {
    top: 0.5%;
    left: 51%;
  }
}

.campaign-wrapper {
  position: relative;
}
.campaign-wrapper .campaign-obj03 {
  position: absolute;
  top: 14%;
  left: 4%;
  width: 22.4vw;
  animation: human_shake01 2.4s ease 0s infinite;
}
@media screen and (min-width: 768px) {
  .campaign-wrapper .campaign-obj03 {
    width: 15%;
    top: 20%;
    left: 0%;
  }
}
@media screen and (min-width: 1000px) {
  .campaign-wrapper .campaign-obj03 {
    top: 15%;
    max-width: 131px;
  }
}
@media screen and (min-width: 1280px) {
  .campaign-wrapper .campaign-obj03 {
    left: 50%;
    translate: -520px 0;
  }
}

.campaign__title {
  width: var(--base-width-sp);
  margin-inline: auto;
  margin-top: 64vw;
}
@media screen and (min-width: 768px) {
  .campaign__title {
    max-width: 535px;
    margin-top: 150px;
  }
}

.campaign-step {
  width: var(--base-width-sp);
  margin-top: 26.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .campaign-step {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
  }
}
@media screen and (min-width: 1000px) {
  .campaign-step {
    gap: 50px;
  }
}

.campaign-step-item .campaign-step-num {
  width: 19.4666666667vw;
  margin-inline: auto;
  margin-bottom: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .campaign-step-item .campaign-step-num {
    width: 73px;
    margin-bottom: 20px;
  }
}
.campaign-step-item .campaign-step-phone {
  width: 28.2666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .campaign-step-item .campaign-step-phone {
    width: 106px;
  }
}
.campaign-step-item .campaign-step-card {
  width: 48.8vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .campaign-step-item .campaign-step-card {
    width: 183px;
    height: 153px;
    aspect-ratio: 183/115;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.campaign-step-item .campaign-step__read {
  margin-top: 5.3333333333vw;
  font-size: 4.2666666667vw;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .campaign-step-item .campaign-step__read {
    margin-top: 20px;
    font-size: 18px;
  }
}

.campaign-arrow {
  width: 10.4vw;
  margin: 10.6666666667vw auto 8vw;
}
@media screen and (min-width: 768px) {
  .campaign-arrow {
    width: 45px;
    margin: 0;
    margin-bottom: -25px;
  }
}

.campaign-step-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .campaign-step-inner {
    flex-direction: column;
  }
}
.campaign-step-inner::before, .campaign-step-inner::after {
  content: "";
  width: 14.6666666667vw;
  height: 61.3333333333vw;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .campaign-step-inner::before, .campaign-step-inner::after {
    width: 205px;
    height: 55px;
  }
}
.campaign-step-inner::before {
  background-image: url(../myimg/parentheses-pink-left.svg);
}
@media screen and (min-width: 768px) {
  .campaign-step-inner::before {
    background-image: url(../myimg/parentheses-pink-top.svg);
  }
}
.campaign-step-inner::after {
  background-image: url(../myimg/parentheses-pink-right.svg);
}
@media screen and (min-width: 768px) {
  .campaign-step-inner::after {
    background-image: url(../myimg/parentheses-pink-bottom.svg);
  }
}

.campaign-banner {
  width: var(--base-width-sp);
  margin-top: 10.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .campaign-banner {
    max-width: 390px;
    margin-top: 65px;
  }
}

.application {
  margin-top: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .application {
    margin-top: 100px;
  }
}
.application + .application {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .application + .application {
    margin-top: 25px;
  }
}

.application__read {
  position: relative;
  color: var(--c-pink);
  font-size: 5.3333333333vw;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .application__read {
    font-size: 20px;
  }
}
.application__read::before, .application__read::after {
  content: "";
  position: absolute;
  bottom: -0.1em;
  left: 50%;
  display: block;
  width: 2px;
  height: 27px;
  background-color: var(--c-pink);
  border-radius: 999px;
}
.application__read::before {
  translate: -5.7em 0;
  rotate: -30deg;
}
.application__read::after {
  translate: 5.5em 0;
  rotate: 30deg;
}

.application-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  margin-top: 2.6666666667vw;
  margin-inline: auto;
  background-color: var(--c-pink-pale);
  border: 2px solid var(--c-pink);
  border-radius: 100px;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .application-link {
    max-width: 355px;
    margin-top: 10px;
  }
}
.application-link.--normal {
  background-color: var(--c-yellow-pale);
}
.application-link .txt {
  padding: 4vw 4vw;
  border-right: 2px solid var(--c-pink);
  font-size: 6.1333333333vw;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
  width: 11.5em;
}
@media screen and (min-width: 768px) {
  .application-link .txt {
    width: 295px;
    padding: 15px 30px;
    font-size: 23px;
  }
}
.application-link .arrow {
  width: 6.1333333333vw;
  margin-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .application-link .arrow {
    width: 23px;
    margin-left: 20px;
  }
}
.application-link:hover {
  opacity: 0.7;
}

.application__text {
  margin-top: 4vw;
  font-size: 5.0666666667vw;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .application__text {
    margin-top: 15px;
    font-size: 19px;
  }
}

.application-caution {
  width: var(--base-width-sp);
  margin-top: 10.6666666667vw;
  margin-inline: auto;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .application-caution {
    max-width: 565px;
    margin-top: 40px;
    text-align: center;
  }
}
.application-caution .application-caution__read {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .application-caution .application-caution__read {
    font-size: 14px;
  }
}
.application-caution .application-caution__note {
  margin-top: 6.6666666667vw;
  padding-top: 6.6666666667vw;
  border-top: 1px solid #000;
  font-size: 3.7333333333vw;
  letter-spacing: -0.075em;
}
@media screen and (min-width: 768px) {
  .application-caution .application-caution__note {
    margin-top: 25px;
    padding-top: 25px;
    font-size: 14px;
    letter-spacing: 0;
  }
}

.campaign-illust {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .campaign-illust {
    position: absolute;
    top: 41%;
    left: 50%;
    translate: -50% 0;
    width: 100%;
    max-width: 1360px;
    margin-top: 0;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1000px) {
  .campaign-illust {
    top: 26%;
  }
}
.campaign-illust .obj01 {
  width: 28vw;
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .campaign-illust .obj01 {
    position: absolute;
    width: 19%;
    top: 60%;
    left: 3%;
    margin-top: 100px;
  }
}
@media screen and (min-width: 1000px) {
  .campaign-illust .obj01 {
    max-width: 156px;
    top: 45%;
    left: 1%;
    margin-top: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .campaign-illust .obj01 {
    left: 5%;
  }
}
.campaign-illust .obj02 {
  width: 20vw;
  animation: human_shake02 2.1s ease 0.5s infinite;
}
@media screen and (min-width: 768px) {
  .campaign-illust .obj02 {
    position: absolute;
    width: 15%;
    top: 56%;
    right: 2%;
  }
}
@media screen and (min-width: 1000px) {
  .campaign-illust .obj02 {
    max-width: 114px;
    top: 30%;
  }
}
@media screen and (min-width: 1280px) {
  .campaign-illust .obj02 {
    top: 35%;
    right: 8%;
  }
}

.campaign-small__title {
  color: var(--c-pink);
  font-size: 5.3333333333vw;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .campaign-small__title {
    font-size: 20px;
  }
}

.campaign-period {
  width: var(--base-width-sp);
  margin-inline: auto;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .campaign-period {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1000px) {
  .campaign-period {
    margin-top: 90px;
  }
}
.campaign-period .campaign-period-txt {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .campaign-period .campaign-period-txt {
    margin-top: 15px;
  }
}
.campaign-period .campaign-period__read {
  font-size: 4.2666666667vw;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .campaign-period .campaign-period__read {
    font-size: 16px;
  }
}
.campaign-period .campaign-period__day {
  margin-top: 2.6666666667vw;
  font-size: 6.9333333333vw;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.1;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .campaign-period .campaign-period__day {
    margin-top: 7px;
    font-size: 27px;
  }
}
.campaign-period .campaign-period__day .year-num {
  font-family: var(--font-arvo);
  font-size: 6.9333333333vw;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .campaign-period .campaign-period__day .year-num {
    font-size: 26px;
  }
}
.campaign-period .campaign-period__day .year {
  font-size: 5.8666666667vw;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .campaign-period .campaign-period__day .year {
    font-size: 22px;
  }
}
.campaign-period .campaign-period__day .num {
  font-family: var(--font-arvo);
  font-size: 12.2666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .campaign-period .campaign-period__day .num {
    font-size: 46px;
  }
}
.campaign-period .campaign-period__day .txt {
  font-size: 7.2vw;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .campaign-period .campaign-period__day .txt {
    font-size: 27px;
  }
}
.campaign-period .campaign-period__day .weekday {
  position: relative;
  top: -0.4em;
  display: inline-block;
  width: 2em;
  height: 2em;
  background-color: #000;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 4vw;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.85;
}
@media screen and (min-width: 768px) {
  .campaign-period .campaign-period__day .weekday {
    font-size: 15px;
  }
}
.campaign-period .campaign-period__day .line {
  display: inline-block;
  font-size: 6.4vw;
  font-weight: 900;
  text-indent: 0.1em;
}
@media screen and (min-width: 768px) {
  .campaign-period .campaign-period__day .line {
    font-size: 27px;
  }
}
.campaign-period .campaign-period__note {
  padding-left: 1.5em;
  text-indent: -1.5em;
  font-size: 3.7333333333vw;
  line-height: 1.7;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .campaign-period .campaign-period__note {
    font-size: 16px;
    text-align: center;
  }
}

.campaign-about {
  width: var(--base-width-sp);
  margin-top: 13.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .campaign-about {
    margin-top: 30px;
  }
}
.campaign-about .campaign-about__note {
  margin-top: 6.6666666667vw;
  font-size: 4.2666666667vw;
  letter-spacing: 0;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .campaign-about .campaign-about__note {
    margin-top: 15px;
    font-size: 16px;
    text-align: center;
  }
}

.campaign-additional {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .campaign-additional {
    margin-top: 90px;
  }
}

.campaign-additional-inner {
  width: var(--base-width-sp);
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--c-gray-middle);
  border-bottom: 1px solid var(--c-gray-middle);
}

.campaign-additional-box + .campaign-additional-box {
  border-top: 1px solid var(--c-gray-middle);
}

.campaign-additional__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 6.6666666667vw 8vw;
  color: var(--c-pink);
  font-size: 4.8vw;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .campaign-additional__title {
    padding-block: 25px;
    font-size: 18px;
  }
}
.campaign-additional__title .campaign-additional__title-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.campaign-additional__title .campaign-additional__title-button.is-active .txt {
  scale: 1;
}
.campaign-additional__title .campaign-additional__title-button.is-active .toggle::before, .campaign-additional__title .campaign-additional__title-button.is-active .toggle::after {
  rotate: 45deg;
}
.campaign-additional__title .campaign-additional__title-button .txt {
  color: #000;
  font-size: 3.7333333333vw;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: clip;
  scale: 0 1;
  transform-origin: right;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .campaign-additional__title .campaign-additional__title-button .txt {
    font-size: 14px;
  }
}
.campaign-additional__title .campaign-additional__title-button .toggle {
  position: relative;
  display: inline-block;
  width: 5.8666666667vw;
  height: 5.8666666667vw;
  margin-left: 4vw;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .campaign-additional__title .campaign-additional__title-button .toggle {
    width: 22px;
    height: 22px;
    margin-left: 15px;
  }
}
.campaign-additional__title .campaign-additional__title-button .toggle::before, .campaign-additional__title .campaign-additional__title-button .toggle::after {
  content: "";
  position: absolute;
  background-color: var(--c-pink);
  transform-origin: center;
  rotate: 0;
  transition: 0.3s ease all;
}
.campaign-additional__title .campaign-additional__title-button .toggle::before {
  top: calc(50% - 0.2666666667vw);
  width: 100%;
  height: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .campaign-additional__title .campaign-additional__title-button .toggle::before {
    top: calc(50% - 1px);
    height: 2px;
  }
}
.campaign-additional__title .campaign-additional__title-button .toggle::after {
  left: calc(50% - 0.2666666667vw);
  width: 0.5333333333vw;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .campaign-additional__title .campaign-additional__title-button .toggle::after {
    width: 2px;
    left: calc(50% - 1px);
  }
}

.campaign-additional__content {
  display: none;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .campaign-additional__content {
    margin-bottom: 25px;
  }
}
.campaign-additional__content > :first-child {
  margin-top: 0;
}

.campaign-additional__read {
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .campaign-additional__read {
    font-size: 14px;
  }
}

.campaign-additional-table-wrap {
  overflow: auto;
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .campaign-additional-table-wrap {
    margin-top: 15px;
  }
}

.campaign-additional-table {
  width: 435px;
}
.campaign-additional-table thead tr th {
  font-size: 3.4666666667vw;
  background-color: var(--c-gray);
  border-right: 1px solid #fff;
  text-align: center;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .campaign-additional-table thead tr th {
    font-size: 13px;
  }
}
.campaign-additional-table thead tr th:last-of-type {
  border-right: none;
}
.campaign-additional-table tbody tr td {
  border: 1px solid var(--c-gray);
  background-color: #fff;
  text-align: center;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .campaign-additional-table tbody tr td {
    font-size: 14px;
  }
}

.campaign-additional-note {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .campaign-additional-note {
    margin-top: 15px;
  }
}
.campaign-additional-note > li {
  padding-left: 1em;
  font-size: 3.7333333333vw;
  line-height: 2;
  letter-spacing: 0;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .campaign-additional-note > li {
    font-size: 14px;
  }
}
.campaign-additional-note > li .--c-red {
  color: var(--c-red);
}
.campaign-additional-note .campaign-additional-note-list {
  margin-top: 0;
}

.campaign-additional-note-list {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .campaign-additional-note-list {
    margin-top: 15px;
  }
}
.campaign-additional-note-list > li {
  text-indent: -0.5em;
  padding-left: 0.5em;
  line-height: 1.6;
}
.campaign-additional-note-list > li .--c-red {
  color: var(--c-red);
}

.sec-simulation {
  position: relative;
  margin-top: 26.6666666667vw;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(251, 217, 220) 100%);
}
@media screen and (min-width: 768px) {
  .sec-simulation {
    margin-top: 65px;
    background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(251, 217, 220) 103%);
  }
}
@media screen and (min-width: 1000px) {
  .sec-simulation {
    background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(251, 217, 220) 96%);
  }
}
.sec-simulation::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 12%;
  background-color: #fff;
  background-image: url(../myimg/bg-simulation_sp.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .sec-simulation::before {
    padding-top: 11%;
    background-image: url(../myimg/bg-simulation.webp);
    background-size: cover;
  }
}
.sec-simulation .simulation-obj01 {
  position: absolute;
  top: -1%;
  left: 7%;
  width: 53.8666666667vw;
}
@media screen and (min-width: 768px) {
  .sec-simulation .simulation-obj01 {
    max-width: 260px;
    top: -0.3%;
  }
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-obj01 {
    top: 0%;
    left: 50%;
    translate: -185% 0;
  }
}
.sec-simulation .simulation-objects {
  pointer-events: none;
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-objects {
    position: relative;
    top: 0;
    margin-inline: auto;
    width: 100%;
    max-width: 1360px;
    height: 100%;
  }
}
.sec-simulation .simulation-objects01 {
  position: relative;
  height: 51.7333333333vw;
  width: var(--base-width-sp);
  margin-inline: auto;
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  .sec-simulation .simulation-objects01 {
    position: absolute;
    bottom: -10%;
    margin-top: 60px;
    width: 48%;
    height: 0;
    height: 25vw;
    max-height: 275px;
  }
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-objects01 {
    bottom: -60px;
    width: 36%;
    height: 22vw;
    max-width: 495px;
  }
}
@media screen and (min-width: 1280px) {
  .sec-simulation .simulation-objects01 {
    left: -3%;
  }
}
.sec-simulation .simulation-objects01 .simulation-objects01-obj {
  position: absolute;
}
.sec-simulation .simulation-objects01 .simulation-objects01-obj01 {
  width: 36%;
  bottom: 0%;
  left: -0.1%;
  animation: human_shake01 2.4s ease 0s infinite;
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-objects01 .simulation-objects01-obj01 {
    z-index: 1;
  }
}
.sec-simulation .simulation-objects01 .simulation-objects01-obj02 {
  width: 28%;
  bottom: 3.5%;
  left: 26%;
  animation: human_shake01 2.1s ease 0.8s infinite;
}
.sec-simulation .simulation-objects01 .simulation-objects01-obj03 {
  width: 8%;
  bottom: 80%;
  left: 31%;
  scale: -1 1;
}
.sec-simulation .simulation-objects01 .simulation-objects01-obj04 {
  width: 10.5%;
  bottom: -5%;
  left: 4.5%;
  scale: -1 1;
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-objects01 .simulation-objects01-obj04 {
    width: 12%;
    bottom: -1%;
    left: 33.5%;
  }
}
.sec-simulation .simulation-objects01 .simulation-objects01-obj05 {
  width: 26%;
  bottom: 0%;
  left: 55.5%;
  animation: human_shake01 2.1s ease 0.5s infinite;
}
.sec-simulation .simulation-objects01 .simulation-objects01-obj06 {
  width: 7%;
  bottom: 15%;
  left: 82.5%;
}
.sec-simulation .simulation-objects01 .simulation-objects01-obj07 {
  width: 12%;
  bottom: -9%;
  left: 51.5%;
  scale: -1 1;
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-objects01 .simulation-objects01-obj07 {
    bottom: 4%;
    left: 90.5%;
  }
}
.sec-simulation .simulation-objects02 {
  position: relative;
  height: 45.8666666667vw;
  width: var(--base-width-sp);
  margin-top: 5%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sec-simulation .simulation-objects02 {
    position: absolute;
    right: 0;
    bottom: -10%;
    width: 48%;
    height: 0;
    margin-top: 0;
    height: 24vw;
    max-height: 320px;
  }
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-objects02 {
    bottom: -60px;
    right: 0;
    width: 32%;
    max-width: 434px;
  }
}
.sec-simulation .simulation-objects02 .simulation-objects02-obj {
  position: absolute;
}
.sec-simulation .simulation-objects02 .simulation-objects02-obj01 {
  width: 8%;
  bottom: 0%;
  left: 0%;
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-objects02 .simulation-objects02-obj01 {
    scale: -1 1;
  }
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-objects02 .simulation-objects02-obj01 {
    left: 2%;
  }
}
.sec-simulation .simulation-objects02 .simulation-objects02-obj02 {
  width: 22.5%;
  bottom: 0%;
  left: 13%;
  animation: human_shake01 2.1s ease 1.1s infinite;
}
.sec-simulation .simulation-objects02 .simulation-objects02-obj03 {
  width: 25%;
  bottom: 10%;
  left: 34%;
  animation: human_shake01 2.6s ease 0.2s infinite;
}
.sec-simulation .simulation-objects02 .simulation-objects02-obj04 {
  width: 28.5%;
  bottom: 0%;
  left: 52%;
  z-index: 1;
  animation: human_shake01 2.2s ease 0.5s infinite;
}
.sec-simulation .simulation-objects02 .simulation-objects02-obj05 {
  width: 8.5%;
  bottom: 0%;
  left: 70%;
  scale: -1 1;
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-objects02 .simulation-objects02-obj05 {
    width: 11%;
    bottom: -3%;
    left: 65%;
    z-index: 1;
  }
}
.sec-simulation .simulation-objects02 .simulation-objects02-obj06 {
  width: 11%;
  bottom: 92%;
  left: 90%;
  scale: -1 1;
}
@media screen and (min-width: 1000px) {
  .sec-simulation .simulation-objects02 .simulation-objects02-obj06 {
    left: 70%;
  }
}
.sec-simulation .simulation-objects02 .simulation-objects02-obj07 {
  width: 24.5%;
  bottom: 0%;
  left: 74%;
  animation: human_shake02 2.3s ease 0.6s infinite;
}

.simulation-heading {
  width: var(--base-width-sp);
  max-width: 900px;
  margin-top: 18.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .simulation-heading {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .simulation-heading {
    margin-top: 0;
  }
}
.simulation-heading .simulation-heading-image {
  width: 70.9333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .simulation-heading .simulation-heading-image {
    max-width: 266px;
  }
}
.simulation-heading .simulation-heading__title {
  margin-top: 9.3333333333vw;
  color: var(--c-pink);
  font-size: 6.6666666667vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .simulation-heading .simulation-heading__title {
    margin-top: 15px;
    font-size: 37px;
  }
}
.simulation-heading .simulation-heading__read {
  margin-top: 12vw;
  padding-block: 6.6666666667vw;
  background-color: var(--c-yellow-light);
  border-radius: 25px;
  color: var(--c-pink);
  font-size: 5.3333333333vw;
  line-height: 1.75;
  letter-spacing: -0.05em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .simulation-heading .simulation-heading__read {
    margin-top: 20px;
    padding-block: 20px;
    font-size: 20px;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1000px) {
  .simulation-heading .simulation-heading__read {
    padding-block: 10px;
    border-radius: 100px;
  }
}

.simulation-example {
  width: var(--base-width-sp);
  max-width: 950px;
  margin-top: 10.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .simulation-example {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .simulation-example {
    display: flex;
    gap: 4%;
    margin-top: 55px;
  }
}
@media screen and (min-width: 1000px) {
  .simulation-example .simulation-example-wrap {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    width: 48%;
  }
}
.simulation-example .simulation-example-wrap + .simulation-example-wrap {
  margin-top: 12vw;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-example-wrap + .simulation-example-wrap {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .simulation-example .simulation-example-wrap + .simulation-example-wrap {
    margin-top: 0;
  }
}
.simulation-example .simulation-example-receipt {
  margin-top: 3.2vw;
  padding: 5.3333333333vw 5.3333333333vw;
  background: var(--c-pink-light);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-example-receipt {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    padding: 35px 25px;
    flex: 1;
  }
}
.simulation-example .simulation-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.6666666667vw;
  margin-bottom: 4vw;
  white-space: nowrap;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-card__header {
    gap: 10px;
    margin-bottom: 25px;
  }
}
.simulation-example .simulation-card__shop {
  font-size: 3.7333333333vw;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-card__shop {
    font-size: 16px;
  }
}
.simulation-example .simulation-card__total {
  display: flex;
  align-items: baseline;
  letter-spacing: 0.05em;
}
.simulation-example .simulation-card__total-label {
  font-size: 3.7333333333vw;
  margin-right: 0.4em;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-card__total-label {
    font-size: 15px;
  }
}
.simulation-example .simulation-card__total-price {
  font-size: 5.8666666667vw;
  line-height: 1;
  color: var(--c-pink);
  font-weight: 500;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-card__total-price {
    font-size: 31px;
  }
}
.simulation-example .simulation-card__yen {
  font-size: 2.6666666667vw;
  margin-left: 2px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-card__yen {
    font-size: 15px;
  }
}
.simulation-example .simulation-card__title {
  margin-bottom: 0.7em;
  font-size: 3.7333333333vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-card__title {
    font-size: 15px;
  }
}
.simulation-example .simulation-example-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 1em;
  font-weight: 500;
  font-size: 3.7333333333vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-example-row {
    font-size: 18px;
  }
}
.simulation-example .simulation-example-row:last-of-type {
  margin-bottom: 30px;
}
.simulation-example .simulation-example__label {
  white-space: nowrap;
}
.simulation-example .simulation-example-leader {
  flex: 1;
  height: 6px;
  transform: translateY(-3px);
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 6px 4px;
  background-repeat: repeat-x;
  background-position: left center;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-example-leader {
    background-image: radial-gradient(circle, #000 2px, transparent 2px);
    background-size: 10px 6px;
  }
}
.simulation-example .simulation-example__price {
  white-space: nowrap;
  color: #e85d82;
  font-size: 5.8666666667vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-example__price {
    font-size: 31px;
  }
}
.simulation-example .simulation-example__price .yen {
  color: #000;
  font-size: 0.5em;
}
.simulation-example .simulation-card__result {
  margin-top: 5.3333333333vw;
  padding-block: 2.6666666667vw 3.4666666667vw;
  border-radius: 999px;
  background-color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-card__result {
    margin-top: 30px;
    padding-block: 8px 10px;
  }
}
@media screen and (min-width: 1000px) {
  .simulation-example .simulation-card__result {
    margin-top: auto;
  }
}
.simulation-example .simulation-card__result-text {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-card__result-text {
    font-size: 19px;
  }
}
.simulation-example .simulation-card__result-number {
  font-size: 7.2vw;
  line-height: 1;
  color: #e60012;
  margin: 0 4px 0 8px;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-card__result-number {
    font-size: 38px;
  }
}
.simulation-example .simulation-card__result-point {
  font-size: 4.8vw;
  color: #e60012;
}
@media screen and (min-width: 768px) {
  .simulation-example .simulation-card__result-point {
    font-size: 25px;
  }
}

.simulation-example-heading .simulation-example-balloon {
  position: relative;
  width: 7em;
  margin-inline: auto;
  padding-block: 0.6em;
  border-radius: 30px;
  background-image: linear-gradient(90deg, #e99e75, #e96382 99%);
  color: #fff;
  font-size: 4.2666666667vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .simulation-example-heading .simulation-example-balloon {
    max-width: 610px;
    margin-inline: auto;
    padding-block: 15px;
    border-radius: 100px;
    font-size: 20px;
  }
}
.simulation-example-heading .simulation-example-balloon::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 5px 0px 5px;
  border-color: #E9827B transparent transparent transparent;
}
.simulation-example-heading .simulation-example__name {
  margin-top: 4vw;
  font-size: 5.3333333333vw;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .simulation-example-heading .simulation-example__name {
    margin-top: 30px;
    font-size: 29px;
  }
}

.simulation-benefit {
  width: var(--base-width-sp);
  margin-top: 13.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .simulation-benefit {
    max-width: 600px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .simulation-benefit {
    margin-top: 80px;
  }
}

.simulation-benefit__read {
  color: var(--c-pink);
  font-size: 5.6vw;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .simulation-benefit__read {
    font-size: 30px;
  }
}

.simulation-benefit__note {
  margin-top: 2.6666666667vw;
  font-size: 4.2666666667vw;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .simulation-benefit__note {
    margin-top: 15px;
    font-size: 16px;
  }
}

.sec-shop {
  margin-top: 17.3333333333vw;
  margin-bottom: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .sec-shop {
    margin-top: 30%;
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 1000px) {
  .sec-shop {
    margin-top: 135px;
  }
}

.shop-heading {
  width: var(--base-width-sp);
  margin-inline: auto;
}
.shop-heading .shop-heading-image {
  width: 17.0666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .shop-heading .shop-heading-image {
    width: 64px;
  }
}
.shop-heading .shop-heading__txt {
  position: relative;
  margin-top: 8vw;
  padding-block: 4vw;
  border-radius: 30px;
  background-image: linear-gradient(90deg, rgb(129, 201, 107), rgb(123, 191, 173) 99%);
  color: #fff;
  font-size: 5.3333333333vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shop-heading .shop-heading__txt {
    max-width: 570px;
    margin-inline: auto;
    margin-top: 30px;
    padding-block: 15px;
    border-radius: 100px;
    font-size: 21px;
  }
}
.shop-heading .shop-heading__txt::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 11.5px 0px 11.5px;
  border-color: #7EC48C transparent transparent transparent;
}
.shop-heading .shop-heading__read {
  margin-top: 5.3333333333vw;
  color: var(--c-green);
  font-size: 6.4vw;
  letter-spacing: 0em;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shop-heading .shop-heading__read {
    margin-top: 15px;
    font-size: 37px;
  }
}

.shop-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6.6666666667vw 8vw;
  margin-top: 8vw;
  width: var(--base-width-sp);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .shop-list {
    gap: 45px 40px;
    max-width: 1100px;
    margin-top: 50px;
  }
}
.shop-list li a {
  transition: 0.3s ease all;
}
.shop-list li a:hover {
  opacity: 0.85;
}
.shop-list li a:hover img {
  scale: 1.07;
}
.shop-list li a img {
  scale: 1;
  transition: 0.3s ease all;
}
.shop-list .amigo {
  width: 29.3333333333vw;
}
@media screen and (min-width: 768px) {
  .shop-list .amigo {
    width: 110px;
  }
}
.shop-list .time {
  width: 31.7333333333vw;
}
@media screen and (min-width: 768px) {
  .shop-list .time {
    width: 119px;
  }
}
.shop-list .noumaru_engei {
  width: 40.2666666667vw;
}
@media screen and (min-width: 768px) {
  .shop-list .noumaru_engei {
    width: 151px;
  }
}
.shop-list .daiyu {
  width: 57.3333333333vw;
}
@media screen and (min-width: 768px) {
  .shop-list .daiyu {
    width: 215px;
  }
}
.shop-list .pet_forest {
  width: 80.2666666667vw;
}
@media screen and (min-width: 768px) {
  .shop-list .pet_forest {
    width: 301px;
  }
}
.shop-list .valor {
  width: 36vw;
}
@media screen and (min-width: 768px) {
  .shop-list .valor {
    width: 135px;
  }
}
.shop-list .valor-home {
  width: 36.2666666667vw;
}
@media screen and (min-width: 768px) {
  .shop-list .valor-home {
    width: 136px;
  }
}
.shop-list .valor-drag-store {
  width: 34.6666666667vw;
}
@media screen and (min-width: 768px) {
  .shop-list .valor-drag-store {
    width: 130px;
  }
}
.shop-list .other {
  width: 22.6666666667vw;
}
@media screen and (min-width: 768px) {
  .shop-list .other {
    width: 85px;
  }
}

.shop-app-wrapper {
  width: var(--base-width-sp);
  margin-top: 10.6666666667vw;
  margin-inline: auto;
  padding: 1.3333333333vw;
  background-image: linear-gradient(90deg, #e99e75, #e96382 99%);
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .shop-app-wrapper {
    max-width: 1100px;
    margin-top: 90px;
    padding: 5px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-wrapper {
    width: 94%;
    margin-top: 140px;
  }
}

.shop-app-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5.3333333333vw 2.6666666667vw;
  background-color: #fff;
  border-radius: 50px 50px 0 0;
}
@media screen and (min-width: 768px) {
  .shop-app-heading {
    padding: 20px 30px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-heading {
    padding: 20px 35px;
  }
}
.shop-app-heading .shop-app-heading-image {
  width: 26.6666666667vw;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .shop-app-heading .shop-app-heading-image {
    width: 100px;
    margin-right: 20px;
  }
}
.shop-app-heading .shop-app-heading__title {
  color: var(--c-red);
  font-size: 5.0666666667vw;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .shop-app-heading .shop-app-heading__title {
    font-size: 36px;
  }
}

.shop-app-inner {
  margin-top: 1.3333333333vw;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .shop-app-inner {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-top: 30px;
    background-color: #fff;
  }
}
.shop-app-inner .shop-app-image {
  padding: 5.3333333333vw 6.6666666667vw 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-image {
    padding: 5vw 20vw 0;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner .shop-app-image {
    padding: 0 0 0 25px;
    width: 330px;
    flex-shrink: 0;
  }
}
.shop-app-inner .shop-app-content {
  margin-top: 1.3333333333vw;
  padding: 5.3333333333vw 4vw;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-content {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner .shop-app-content {
    margin-top: 0;
    padding: 0 25px 30px;
  }
}
.shop-app-inner .shop-app-read {
  color: var(--c-red);
  font-size: 5.6vw;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-read {
    font-size: 21px;
  }
}
.shop-app-inner .shop-app-box {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-box {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 2%;
    margin-top: 10px;
  }
}
.shop-app-inner .shop-app-item {
  padding: 6.6666666667vw 4.8vw 4vw;
  border-radius: 15px;
  background-color: var(--c-pink-light-over);
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item {
    padding: 20px 15px 10px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner .shop-app-item {
    padding: 20px 10px 10px;
  }
}
@media screen and (min-width: 1280px) {
  .shop-app-inner .shop-app-item {
    padding: 20px 5px 10px;
  }
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item.--col3 {
    width: 32%;
  }
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item.--col2 {
    width: 49%;
  }
}
.shop-app-inner .shop-app-item__title {
  color: var(--c-red);
  font-size: 4.8vw;
  letter-spacing: 0em;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item__title {
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner .shop-app-item__title {
    font-size: 15px;
    letter-spacing: -0.04em;
  }
}
@media screen and (min-width: 1280px) {
  .shop-app-inner .shop-app-item__title {
    font-size: 19px;
  }
}
.shop-app-inner .shop-app-item-image {
  margin-top: 2.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item-image {
    margin-top: 15px;
  }
}
.shop-app-inner .shop-app-item-image.card {
  width: 20vw;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item-image.card {
    width: 34%;
  }
}
.shop-app-inner .shop-app-item-image.phone {
  width: 10.6666666667vw;
  margin-bottom: -4vw;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item-image.phone {
    width: 22%;
    margin-bottom: -10px;
  }
}
.shop-app-inner .shop-app-item-image.mail {
  width: 25.8666666667vw;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item-image.mail {
    width: 44%;
  }
}
.shop-app-inner .shop-app-item__read {
  margin-top: 4vw;
  font-size: 3.7333333333vw;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item__read {
    margin-top: 10px;
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner .shop-app-item__read {
    margin-top: 8px;
    font-size: 13px;
  }
}
@media screen and (min-width: 1280px) {
  .shop-app-inner .shop-app-item__read {
    font-size: 14px;
  }
}
.shop-app-inner .shop-app-item__point {
  margin-top: 2.6666666667vw;
  color: #000;
  font-size: 6.4vw;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item__point {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner .shop-app-item__point {
    margin-top: 12px;
  }
}
.shop-app-inner .shop-app-item__point .num {
  color: var(--c-red);
  font-family: var(--font-arvo);
  font-size: 13.6vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item__point .num {
    font-size: 51px;
  }
}
.shop-app-inner .shop-app-item__point .large {
  font-size: 7.7333333333vw;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item__point .large {
    font-size: 29px;
  }
}
.shop-app-inner .shop-app-item__lottery {
  margin-top: 4vw;
  padding: 1.6vw 2.1333333333vw;
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item__lottery {
    margin-top: 12px;
    padding: 3px 10px 7px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner .shop-app-item__lottery {
    width: 98%;
    max-width: 285px;
    margin-inline: auto;
  }
}
.shop-app-inner .shop-app-item__lottery .small {
  color: var(--c-red);
  font-size: 3.4666666667vw;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item__lottery .small {
    font-size: 12px;
  }
}
.shop-app-inner .shop-app-item__lottery .txt {
  font-size: 3.2vw;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item__lottery .txt {
    font-size: 13px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner .shop-app-item__lottery .txt {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .shop-app-inner .shop-app-item__lottery .txt {
    font-size: 15px;
  }
}
.shop-app-inner .shop-app-item__lottery .txt .num {
  font-family: var(--font-arvo);
  color: var(--c-red);
  font-size: 9.0666666667vw;
  letter-spacing: -0.025em;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item__lottery .txt .num {
    font-size: 36px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner .shop-app-item__lottery .txt .num {
    font-size: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .shop-app-inner .shop-app-item__lottery .txt .num {
    font-size: 40px;
  }
}
.shop-app-inner .shop-app-item__lottery .txt .sub {
  font-size: 6.4vw;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .shop-app-inner .shop-app-item__lottery .txt .sub {
    font-size: 24px;
  }
}
@media screen and (min-width: 1000px) {
  .shop-app-inner .shop-app-item__lottery .txt .sub {
    font-size: 25px;
  }
}
@media screen and (min-width: 1280px) {
  .shop-app-inner .shop-app-item__lottery .txt .sub {
    font-size: 30px;
  }
}

.fix-application-button {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 5;
  display: inline-block;
  width: 32%;
}
@media screen and (min-width: 768px) {
  .fix-application-button {
    max-width: 146px;
    right: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .fix-application-button {
    bottom: 120px;
  }
}
.fix-application-button button {
  display: inline-block;
}

.page-top {
  position: fixed;
  left: 10px;
  bottom: 20px;
  z-index: 5;
  width: 16vw;
}
@media screen and (min-width: 768px) {
  .page-top {
    width: 75px;
  }
}
@media screen and (min-width: 1000px) {
  .page-top {
    left: auto;
    right: 20px;
  }
}
.page-top img {
  border-radius: 50%;
  background-color: #fff;
}/*# sourceMappingURL=style.css.map */