@charset "UTF-8";
:root {
  --color-lightblue: #1ebcde;
  --color-red: #c7000a;
  --color-gray: #cecece;
  --color-white: #fff;
  --color-black: #000;
  --color-gray2: #414546;
  --color-pink: #efc1b4;
  --color-pink2: #e59f86;
}

:root {
  --in-sine: cubic-bezier(.47, 0, .745, .715);
  --out-sine: cubic-bezier(.39, .575, .565, 1);
  --in-out-sine: cubic-bezier(.445, .05, .55, .95);
  --in-quad: cubic-bezier(.55, .085, .68, .53);
  --out-quad: cubic-bezier(.25, .46, .45, .94);
  --in-out-quad: cubic-bezier(.455, .03, .515, .955);
  --in-cubic: cubic-bezier(.55, .055, .675, .19);
  --out-cubic: cubic-bezier(.215, .61, .355, 1);
  --in-out-cubic: cubic-bezier(.645, .045, .355, 1);
  --in-quart: cubic-bezier(.895, .03, .685, .22);
  --out-quart: cubic-bezier(.165, .84, .44, 1);
  --in-out-quart: cubic-bezier(.77, 0, .175, 1);
  --in-quint: cubic-bezier(.755, .05, .855, .06);
  --out-quint: cubic-bezier(.23, 1, .32, 1);
  --in-out-quint: cubic-bezier(.86, 0, .07, 1);
  --in-expo: cubic-bezier(.95, .05, .795, .035);
  --out-expo: cubic-bezier(.19, 1, .22, 1);
  --in-out-expo: cubic-bezier(1, 0, 0, 1);
  --in-circ: cubic-bezier(.6, .04, .98, .335);
  --out-circ: cubic-bezier(.075, .82, .165, 1);
  --in-out-circ: cubic-bezier(.785, .135, .15, .86);
  --in-back: cubic-bezier(.6, -.28, .735, .045);
  --out-back: cubic-bezier(.175, .885, .32, 1.275);
  --in-out-back: cubic-bezier(.68, -.55, .265, 1.55);
}

@keyframes loop_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes deco_loop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.p-bddvd__content {
  max-width: 1000px;
}
.p-bddvd .c-btn {
  margin: 0 auto;
}
.p-bddvd .c-btn__inner {
  padding: 24px 16% 24px;
}
@media screen and (max-width: 767px) {
  .p-bddvd .c-btn__inner {
    padding: 20px 17% 18px;
  }
}
.p-bddvd .c-btn__text {
  font-weight: 700;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .p-bddvd .c-btn__text {
    letter-spacing: 1px;
    font-size: 12.5px;
  }
}
.p-bddvd__tab {
  margin-top: 62px;
  margin-bottom: 60px;
  transform: translateY(30px);
  opacity: 0;
}
.l-section.is-active .p-bddvd__tab {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-bddvd__tab {
    margin-top: 39px;
    margin-bottom: 39px;
  }
}
.p-bddvd__tab-list {
  border: 2px solid var(--color-lightblue);
  border-radius: 100px;
  padding: 3px 3px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-bddvd__tab-list {
    border-radius: 25px;
  }
}
.p-bddvd__tab-list-item {
  width: 14.28%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-bddvd__tab-list-item {
    width: 33.3%;
  }
}
.p-bddvd__tab-list-item.is-current {
  pointer-events: none;
}
.p-bddvd__tab-list-item.is-current::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-lightblue);
  border-radius: 100px;
}
.p-bddvd__tab-list-item.is-current a {
  color: var(--color-white);
}
.p-bddvd__tab-list-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  text-decoration: none;
  color: var(--color-lightblue);
  font-weight: 700;
  font-size: min(16px, 1.6842105263vw);
  position: relative;
  font-family: "Mochiy Pop One", YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .p-bddvd__tab-list-item a {
    height: min(40px, 10.6666666667vw);
    font-size: min(13px, 3.4666666667vw);
  }
}
@media (hover: hover) {
  .p-bddvd__tab-list-item a:hover {
    color: var(--color-red);
  }
}

.p-bddvd_main {
  display: flex;
  transform: translateY(40px);
  opacity: 0;
}
.l-section.is-active .p-bddvd_main {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main {
    display: block;
  }
}
.p-bddvd_main__block {
  width: 44%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__block {
    width: 100%;
  }
}
.p-bddvd_main__btn {
  margin-top: 5.5%;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__btn {
    margin-top: 5.8%;
  }
}
.p-bddvd_main__btn .c-btn {
  margin: 0 auto;
  width: 82%;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__btn .c-btn {
    width: 75%;
  }
}
@media (hover: hover) {
  .p-bddvd_main__btn .c-btn:hover .c-btn__inner::before {
    background-color: var(--color-red);
  }
}
.p-bddvd_main__btn .c-btn__inner {
  position: relative;
}
.p-bddvd_main__btn .c-btn__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 20px;
  height: 100%;
  -webkit-mask: url(../img/pkg/icon_cart.svg) no-repeat center center;
  mask: url(../img/pkg/icon_cart.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-white);
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__btn .c-btn__inner::before {
    width: 15px;
    left: 10%;
  }
}
.p-bddvd_main__detail {
  width: 56%;
  padding-left: 4%;
  position: relative;
  margin-top: -12px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__detail {
    padding: 0;
    width: 100%;
    margin-top: 30px;
  }
}
.p-bddvd_main__head {
  font-family: "Mochiy Pop One", YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__head {
    text-align: center;
  }
}
.p-bddvd_main__head-ttl {
  font-size: 40px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__head-ttl {
    letter-spacing: 1.5px;
    font-size: 30px;
  }
}
.p-bddvd_main__head-release {
  font-size: 24px;
  letter-spacing: 1.2px;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__head-release {
    letter-spacing: 0.5px;
    font-size: 20px;
  }
}
.p-bddvd_main__head-release span {
  font-size: 18px;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__head-release span {
    font-size: 16px;
  }
}
.p-bddvd_main__head-note {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 7px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__head-note {
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-size: 12px;
  }
}
.p-bddvd_main__lineups {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__lineups {
    margin-top: 29px;
  }
}
.p-bddvd_main__lineups-item {
  background-color: var(--color-white);
  border-radius: 100px;
  line-height: 1.5;
  padding: 16px 39px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__lineups-item {
    border-radius: 20px;
    padding: 16px 21px 17px;
  }
}
.p-bddvd_main__lineups-item + .p-bddvd_main__lineups-item {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__lineups-item + .p-bddvd_main__lineups-item {
    margin-top: 10px;
  }
}
.p-bddvd_main__lineups-cap {
  color: var(--color-red);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__lineups-cap {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
.p-bddvd_main__lineups-price {
  font-size: 15.5px;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-top: 1px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__lineups-price {
    font-size: 12px;
  }
}
.p-bddvd_main__lineups-price span {
  vertical-align: baseline;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__lineups-price span {
    font-size: 10px;
  }
}
.p-bddvd_main__info {
  margin-top: 39px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__info {
    margin-top: 32px;
  }
}
.p-bddvd_main__info-item {
  border-top: 1px solid rgba(65, 69, 70, 0.2);
  display: flex;
  line-height: 1.5;
  letter-spacing: 1.5px;
  padding: 12px 0 14px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__info-item {
    padding: 16px 2px 16px;
  }
}
.p-bddvd_main__info-item:last-of-type {
  border-bottom: 1px solid rgba(65, 69, 70, 0.2);
}
.p-bddvd_main__info-label {
  flex-shrink: 0;
  width: 99px;
  font-weight: 700;
  color: var(--color-lightblue);
  font-size: 15.5px;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__info-label {
    font-size: 13.5px;
    letter-spacing: 0.5px;
    width: 80px;
  }
}
.p-bddvd_main__info-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 700;
  font-size: 15.5px;
  width: calc(100% - 99px);
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__info-text {
    width: calc(100% - 80px);
    font-size: 13px;
    letter-spacing: 1px;
    padding-top: 1px;
  }
}
.p-bddvd_main__info-text .is-note {
  font-weight: 400;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__info-text .is-note {
    font-size: 12px;
  }
}
.p-bddvd_main__note {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__note {
    margin-top: 25px;
  }
}
.p-bddvd_main__note-item {
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 1px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__note-item {
    line-height: 1.45;
    font-size: 12px;
  }
}
.p-bddvd_main__note-item + .p-bddvd_main__note-item {
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_main__note-item + .p-bddvd_main__note-item {
    margin-top: 5px;
  }
}

.bddvd_swiper {
  position: relative;
  overflow: hidden;
}
.bddvd_swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  bottom: 8px;
}
@media screen and (max-width: 767px) {
  .bddvd_swiper .swiper-pagination {
    bottom: 13px;
  }
}
.bddvd_swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-red);
  opacity: 1;
  background-color: transparent;
  margin: 2px 5px;
}
@media screen and (max-width: 767px) {
  .bddvd_swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 2px 4px;
  }
}
.bddvd_swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-red);
}

.p-bddvd_benefits {
  margin-top: 58px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_benefits {
    margin-top: 37px;
  }
}
.p-bddvd_benefits__box {
  background-color: var(--color-white);
  border: 2px solid var(--color-gray);
  line-height: 1.5;
  padding: 48px 97px 55px;
  border-radius: 100px;
  transform: translateY(40px);
  opacity: 0;
}
.p-bddvd_benefits__box.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .p-bddvd_benefits__box {
    border-radius: 50px;
    border-width: 1px;
    padding: 33px 30px 35px;
  }
}
.p-bddvd_benefits__box + .p-bddvd_benefits__box {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_benefits__box + .p-bddvd_benefits__box {
    margin-top: 30px;
  }
}
.p-bddvd_benefits__ttl {
  text-align: center;
  color: var(--color-red);
  font-weight: 800;
  font-size: 32.5px;
  letter-spacing: 2.5px;
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_benefits__ttl {
    font-size: 20.5px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }
}
.p-bddvd_benefits__content {
  font-weight: 500;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_benefits__content {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.7;
  }
}
.p-bddvd_benefits__list-item {
  text-indent: -1em;
  padding-left: 1em;
}
.p-bddvd_benefits__list-item + .p-bddvd_benefits__list-item {
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_benefits__list-item + .p-bddvd_benefits__list-item {
    margin-top: 9.5px;
  }
}
.p-bddvd_benefits__list-item.--small {
  margin-top: 1px;
}
.p-bddvd_benefits__list-item.--obj {
  padding: 0;
  text-indent: 0;
  margin-top: 7px;
  margin-bottom: 15px;
}
.p-bddvd_benefits__list-item.--obj img {
  width: auto;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_benefits__list-item.--obj img {
    width: 100%;
  }
}
.p-bddvd_benefits__btn {
  margin-top: 59px;
  transform: translateY(40px);
  opacity: 0;
}
.p-bddvd_benefits__btn.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .p-bddvd_benefits__btn {
    margin-top: 40px;
  }
}
.p-bddvd_benefits__btn .c-btn {
  width: 360px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_benefits__btn .c-btn {
    width: 255px;
  }
}

.p-bddvd_shop {
  transform: translateY(30px);
  opacity: 0;
}
.l-section.is-active .p-bddvd_shop {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
.p-bddvd_shop__box + .p-bddvd_shop__box {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__box + .p-bddvd_shop__box {
    margin-top: 36px;
  }
}
.p-bddvd_shop__ttl {
  text-align: center;
  font-weight: 800;
  line-height: 1.3;
  font-size: 32px;
  letter-spacing: 2.3px;
  color: var(--color-red);
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__ttl {
    font-size: 20px;
    margin-bottom: 18px;
    letter-spacing: 1.3px;
  }
}
.p-bddvd_shop__block {
  background-color: var(--color-white);
  border: 2px solid var(--color-gray);
  padding: 5.8% 9.8%;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__block {
    border-radius: 50px;
    border-width: 1px;
    padding: 11.8% 9% 10.8%;
  }
}
.p-bddvd_shop__block + .p-bddvd_shop__block {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__block + .p-bddvd_shop__block {
    margin-top: 20px;
  }
}
.p-bddvd_shop__note {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__note {
    margin-top: 15px;
  }
}
.p-bddvd_shop__note-item {
  font-size: 14px;
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__note-item {
    font-size: 11px;
  }
}
.p-bddvd_shop__commonbene {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__commonbene {
    display: block;
  }
}
.p-bddvd_shop__commonbene-thumb {
  width: 47.5%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__commonbene-thumb {
    width: 100%;
  }
}
.p-bddvd_shop__commonbene-detail {
  width: 52.5%;
  padding-left: 5%;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__commonbene-detail {
    width: 100%;
    padding: 0;
    margin-top: 24px;
  }
}
.p-bddvd_shop__commonbene-ttl {
  font-weight: 700;
  color: var(--color-lightblue);
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__commonbene-ttl {
    font-size: 16px;
  }
}
.p-bddvd_shop__commonbene-store {
  font-weight: 500;
}
.p-bddvd_shop__commonbene-store-cap {
  color: var(--color-red);
  font-weight: 700;
  letter-spacing: 1.5px;
  border-bottom: 2px solid var(--color-red);
  padding-bottom: 6px;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__commonbene-store-cap {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__commonbene-store-text {
    font-size: 13px;
  }
}
.p-bddvd_shop__commonbene-note-item {
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
  letter-spacing: 1px;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__commonbene-note-item {
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-size: 12px;
  }
}
.p-bddvd_shop__shopblock-cap {
  text-align: center;
  line-height: 1.5;
  font-weight: 900;
  font-size: 24px;
  color: var(--color-lightblue);
  margin-bottom: 34px;
  position: relative;
  margin-top: -8px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__shopblock-cap {
    line-height: 1.3;
    margin-bottom: 27px;
    font-size: 17px;
    margin-top: -5px;
  }
}
.p-bddvd_shop__shopblock-cap span {
  vertical-align: baseline;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__shopblock-cap span {
    font-size: 13px;
  }
}
.p-bddvd_shop__shoplist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__shoplist {
    display: block;
  }
}
.p-bddvd_shop__shoplist-item {
  width: 47.5%;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
}
.p-bddvd_shop__shoplist-item:last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-bddvd_shop__shoplist-item {
    margin-right: 5%;
    margin-top: 5%;
  }
  .p-bddvd_shop__shoplist-item:nth-child(2n) {
    margin-right: 0;
  }
  .p-bddvd_shop__shoplist-item:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__shoplist-item {
    width: 100%;
  }
  .p-bddvd_shop__shoplist-item + .p-bddvd_shop__shoplist-item {
    margin-top: 9.7%;
  }
}
.p-bddvd_shop__shoplist-name {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__shoplist-name {
    margin-top: 14px;
    font-size: 12.5px;
  }
}
.p-bddvd_shop__shoplist-name .is-small {
  margin-top: 7px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__shoplist-name .is-small {
    font-size: 10px;
    margin-top: 5px;
  }
}
.p-bddvd_shop__buy {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__buy {
    margin-top: 28px;
  }
}
.p-bddvd_shop__buy .c-btn {
  margin: 0 auto;
  width: 360px;
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__buy .c-btn {
    width: 93%;
  }
}
@media (hover: hover) {
  .p-bddvd_shop__buy .c-btn:hover .c-btn__inner::before {
    background-color: var(--color-red);
  }
}
.p-bddvd_shop__buy .c-btn__inner {
  position: relative;
}
.p-bddvd_shop__buy .c-btn__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 20px;
  height: 100%;
  -webkit-mask: url(../img/pkg/icon_cart.svg) no-repeat center center;
  mask: url(../img/pkg/icon_cart.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-white);
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .p-bddvd_shop__buy .c-btn__inner::before {
    width: 15px;
    left: 10%;
  }
}