@charset "UTF-8";

:root {
  --bundle-pink: #df5058;
  --bundle-black: #282522;
  --bundle-cream: #f7f7f5;
  --bundle-orange: #e6a945;
}

.ta-c {
  text-align: center;
}

.bundleset-section button,
.float-cv-area button {
  color: inherit;
  touch-action: manipulation;
}

.float-cv-banners {
  display: none;
}
.bundleset-section__header {
  background: #f0eee9;
  padding: 12rem 0 4rem 0;
}
.bundleset-section__about {
  background: var(--bundle-cream);
  padding: 8rem 0;
}
.bundleset-section__main {
  background: white;
  padding: 0 0 10rem 0;
}
.bundleset-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bundleset-header__image {
  width: 50%;
}
.bundleset-header__contents {
  width: 45%;
}
.bundleset-header__contents h1 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 2rem;
}
.color-pink {
  color: var(--bundle-pink);
}
.bg-pink {
  background: var(--bundle-pink);
}
.color-white {
  color: white;
}
.bundleset-header__text01 {
  line-height: 1.5;
  margin-bottom: 4rem;
  font-size: 1.4rem;
}
.bundleset-header__text02 {
  margin-bottom: 2rem;
}
.bundleset-header__price {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.bundleset-header__price span {
  font-size: 50%;
}
.bundleset-header__button button {
  background: var(--bundle-black);
  color: white;
  padding: 1.5rem 5rem 1.5rem 2rem;
  border: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  cursor: pointer;
}
.bundleset-header__button button span {
  border-radius: 10rem;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
}
.bundleset-header__button button:after {
  content: "";
  width: 1rem;
  aspect-ratio: 1 / 1;
  border-bottom: 0.2rem solid white;
  border-right: 0.2rem solid white;
  position: absolute;
  top: 50%;
  right: 2rem;
  rotate: 45deg;
  translate: 0 -60%;
  line-height: 1;
}
/* about */
.bundleset-about__title {
  text-align: center;
}
.bundleset-about__title h2 {
  font-size: 3.6rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}
.bundleset-about__title h2 span {
  font-size: 3rem;
  position: relative;
  padding: 0 1.5rem;
}
.bundleset-about__title h2 span:before,
.bundleset-about__title h2 span:after {
  content: "";
  width: 0.2rem;
  height: 120%;
  display: inline-block;
  background: currentColor;
  position: absolute;
  bottom: -0.5rem;
}
.bundleset-about__title h2 span:before {
  left: 0;
  transform-origin: bottom left;
  rotate: -30deg;
}
.bundleset-about__title h2 span:after {
  right: 0;
  transform-origin: bottom right;
  rotate: 30deg;
}
.bundleset-about__image {
  margin: 0 auto 8rem auto;
  text-align: center;
}
.bundleset-about__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 0 12%;
}
.bundleset-about__subtitle {
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}
.bundleset-about__list {
  flex-grow: 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.bundleset-about__list li {
  background: white;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
}
.bundleset-about__list li:before {
  content: "";
  width: 1.4rem;
  aspect-ratio: 1 / 1;
  border: 0.1rem solid #ccc;
  margin-right: 1rem;
}
.bundleset-about__list li:after {
  content: "";
  width: 1.5rem;
  height: 0.8rem;
  border-bottom: 0.1rem solid var(--bundle-pink);
  border-left: 0.1rem solid var(--bundle-pink);
  position: absolute;
  top: 50%;
  left: 2rem;
  rotate: -45deg;
  translate: 0.2rem -120%;
  transform: skew(-10deg, -5deg);
}
/* step01 */
.bundleset-section__step01 {
  background: var(--bundle-cream);
  padding-bottom: 6rem;
}
.bundleset-section__step-title {
  background: #dcd3cb;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  font-size: 2.2rem;
  margin-bottom: 6rem;
  line-height: 1.2;
  font-weight: 500;
}
.bundleset-section__step-number {
  background: white;
  padding: 0.4rem 0.4rem;
  font-size: 1.8rem;
  line-height: 1;
}

.bundleset-select-set {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}
.bundleset-select-set__item {
  appearance: none;
  background: white;
  padding: 2rem 4rem;
  border: 0.2rem solid transparent;
  border-radius: 1rem;
  transition: 0.2s;
  position: relative;
  > input[type="radio"] {
    display: none;
  }
  &:has(input[type="radio"]:checked) {
    border: 0.2rem solid var(--bundle-orange);
    & .bundleset-select-set__button {
      background: var(--bundle-orange);
      & i {
        background: white;
        &::before {
          border-bottom: 0.2rem solid var(--bundle-orange);
          border-left: 0.2rem solid var(--bundle-orange);
          rotate: -45deg;
          transition-delay: 0.2s;
        }
      }
    }
    &.bundleset-select-set__item--set6 {
      border-color: var(--bundle-pink);
      & .bundleset-select-set__button {
        background: var(--bundle-pink);
        & i {
          &::before {
            border-bottom-color: var(--bundle-pink);
            border-left-color: var(--bundle-pink);
          }
        }
      }
    }
  }
  .icon-popular {
    position: absolute;
    top: 24%;
    left: 6%;
    width: 5.6rem;
    animation: popularIcon 1s infinite forwards;
  }
}

@keyframes popularIcon {
  0% {
    scale: 1;
    animation-timing-function: ease-out;
  }
  50% {
    scale: 0.9;
    animation-timing-function: ease-in;
  }
  100% {
    scale: 1;
    animation-timing-function: ease-out;
  }
}

.bundleset-select-set__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: #e2e2e2;
  color: white;
  margin-top: 1rem;
  padding: 1.5rem 0;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  border-radius: 100rem;
  & i {
    width: 1.8rem;
    aspect-ratio: 1 / 1;
    background: transparent;
    border: 0.1rem solid white;
    border-radius: 50%;
    position: relative;
    transition: 0.2s;
    &::before {
      content: "";
      width: 50%;
      height: 35%;
      border-bottom: 0.2rem solid transparent;
      border-left: 0.2rem solid transparent;
      position: absolute;
      top: 50%;
      left: 50%;
      translate: -50% -75%;
      rotate: -25deg;
      transition: 0.2s;
    }
  }
}
/* step02 */
.bundleset-tab-contents {
  background: var(--bundle-cream);
  padding: 4rem 4%;
}
.bundleset-tab-content {
  display: none;
}
.bundleset-tab-content.is-active {
  display: block;
}
.bundleset-main__title {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 4rem;
}
.bundleset-tabs {
  display: flex;
  gap: 1.25%;
}
button.bundleset-tab {
  flex-grow: 1;
  font-size: 2rem;
  padding: 1rem 0;
  text-align: center;
  background: #cccccb;
  color: white;
  width: 32.5%;
  border-top: 0.3rem solid transparent;
  transition: 0.2s;
  cursor: pointer;
}
button.bundleset-tab.is-active {
  color: inherit;
  background: var(--bundle-cream);
  border-color: var(--bundle-pink);
}
.bundleset-tab-content__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.bundleset-tab-content h3 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
}
.bundleset-tab-content__icon {
  text-align: center;
  margin-bottom: 2rem;
}
.bundleset-tab-content__icon span {
  background: white;
  display: inline-block;
  line-height: 1;
  padding: 0.5rem 1rem;
}
.bundleset-tab-content__text {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 4rem;
}
.bundleset-colors {
  display: flex;
  flex-wrap: wrap;
  gap: calc((100% - 23% * 4) / 3);
}
.bundleset-color {
  width: 23%;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
}
.bundleset-color__thumb {
  margin-bottom: 1rem;
}
.bundleset-color__name--en {
  color: var(--color-base-black_01);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.bundleset-color__note {
  margin-top: 1rem;
  font-size: 1.2rem;
}
.bundleset-color__tone-images {
  display: flex;
  flex-wrap: wrap;
  gap: 0 calc((100% - 31% * 3) / 2);
  margin: 1rem 0 0 0;
  flex-grow: 1;
  align-content: flex-start;
}
.bundleset-color__tone-images button {
  width: 31%;
  background: transparent;
  margin: 0 0 0.6rem 0;
  padding: 0.4rem;
  cursor: pointer;
  appearance: none;
  border: 1px solid #afafaf;
  transition: 0.2s;
  border-radius: 0.4rem;
  position: relative;
}
.bundleset-color__tone-images button.is-selected {
  border: 1px solid var(--bundle-pink);
}
.bundleset-color__tone-images button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.bundleset-color__tone-images button.is-selected:disabled {
  opacity: 1;
}
.tone-images__count {
  display: none;
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  width: 2rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--bundle-pink);
  color: white;
  font-size: 1.2rem;
  line-height: 1;
  justify-content: center;
  align-items: center;
}
.tone-images__count:not(:empty) {
  display: flex;
}
.bundleset-color__tone-images figure {
  font-size: 1.2rem;
  text-align: center;
}
.bundleset-color__tone-images figure .tone-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.bundleset-color__tone-images figure img {
  width: 220%;
  max-width: none;
  aspect-ratio: 23 / 26;
}
.bundleset-color__tone-images figcaption {
  padding-top: 0.5rem;
}
.js-details .js-summary {
  position: relative;
  display: block;
  cursor: pointer;
}
.js-details .js-summary::-webkit-details-marker {
  display: none;
}
.bundleset-color__tone-text {
  margin-bottom: 1rem;
}
.bundleset-color__tone-selector .summary-inner {
  border: 0.1rem solid var(--color-base-black_01);
  padding: 1rem 2rem;
  position: relative;
  border-radius: 0.6rem;
  overflow: hidden;
}
.bundleset-color__tone-selector .summary-inner:before {
  content: "";
  width: 5rem;
  height: 100%;
  background: var(--color-base-black_01);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.bundleset-color__tone-selector .summary-inner:after {
  content: ">";
  width: 5rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  rotate: 90deg;
  scale: 0.9 1.4;
  transition: 0.2s;
  font-size: 1.2rem;
}
.bundleset-color__tone-selector.is-opened .summary-inner:after {
  rotate: 270deg;
}
.bundleset-color__tone-selector.is-opened .tone-select-list {
  opacity: 1;
  transition: 0.2s 0.2s;
}
.tone-select-list {
  background: white;
  padding: 0.5rem;
  opacity: 0;
  transition: 0.2s;

  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.tone-select-list ul {
  width: 80%;
  height: fit-content;
  background: white;
  padding: 1rem 0;
  max-width: 40rem;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}
.tone-select-list button {
  background: transparent;
  display: block;
  width: 100%;
  border-bottom: 1px dashed #ddd;
  padding: 0.5rem;
  transition: 0.2s;
}
.tone-select-list button.is-selected {
  color: var(--bundle-pink);
}
.tone-select-list li:last-of-type button {
  border-bottom: none;
}
.bundleset-color__qtys {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.bundleset-color__qtys .qty-button {
  width: 4rem;
  aspect-ratio: 1 / 1;
  border: 0.1rem solid currentColor;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1.6rem;
  background: transparent;
  cursor: pointer;
}
.bundleset-color__qtys .qty-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.bundleset-color__qtys .qty-input {
  width: auto;
  font-size: 2.4rem;
  width: 2rem;
  line-height: 1;
  background: transparent;
  border: none;
  text-align: center;
}

/* step03 */
.bundleset-section__step03 {
  background: var(--bundle-cream);
  padding-bottom: 6rem;
}

.bundleset-step03__subtitle {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.3;
}

.bundleset-step03__subtitle-note {
  text-align: center;
}

.bundleset-step03__type-heading {
  & .bundleset-step03__subtitle {
    margin-bottom: 2rem;
  }
  & .bundleset-step03__subtitle-note {
    margin-bottom: 2rem;
  }
}

.bundleset-step03__select-types {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 6rem;
}

.bundleset-step03__type-item {
  background: white;
  flex-grow: 1;
  text-align: center;
  border: 0.2rem solid #e2e2e2;
  padding: 2rem;
  border-radius: 1rem;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
  &.is-recommend {
    &:after {
      content: "おすすめ";
      position: absolute;
      top: 0;
      right: 0;
      background: #f8e264;
      font-size: 1.1rem;
      letter-spacing: 0;
      rotate: 45deg;
      padding: 3rem 2rem 0.5rem 2rem;
      translate: 3rem -1rem;
      font-weight: 500;
    }
  }
  > input[type="radio"] {
    display: none;
  }
  &:has(input[type="radio"]:checked) {
    border-color: var(--bundle-pink);
    > dl {
      dt {
        color: var(--bundle-pink);
        i {
          border-color: var(--bundle-pink);
          background: var(--bundle-pink);
          &:before {
            border-bottom-color: white;
            border-left-color: white;
            rotate: -45deg;
          }
        }
      }
    }
  }
  > dl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    height: 100%;
    dt {
      text-align: center;
      font-size: 1.8rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      transition: 0.2s;
      font-weight: 500;
      i {
        width: 1.8rem;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        background: white;
        border: 0.1rem solid #e2e2e2;
        position: relative;
        transition: 0.2s;
        &:before {
          content: "";
          width: 50%;
          height: 35%;
          border-bottom: 0.2rem solid transparent;
          border-left: 0.2rem solid transparent;
          position: absolute;
          top: 50%;
          left: 50%;
          rotate: -25deg;
          translate: -50% -50%;
          transition: 0.2s 0.2s;
        }
      }
    }
    dd {
      text-align: center;
      line-height: 1.5;
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
}

.bundleset-step03__privilege-title {
  width: fit-content;
  margin: 4rem auto 2rem auto;
  background: var(--bundle-pink);
  color: white;
  font-size: 2rem;
  line-height: 1;
  padding: 1rem 5rem;
  border-radius: 1rem;
}

.bundleset-step03__option-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  .option-counter {
    background: white;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
  }
}

.bundleset-step03__choose-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}

.bundleset-step03__option-item {
  width: calc(50% - 2rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  > figure {
    width: 4.5rem;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }
}

.bundleset-step03__option-name {
  flex-grow: 1;
  line-height: 1.5;
}

.bundleset-qty {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  .qty-button {
    width: 3rem;
    aspect-ratio: 1 / 1;
    border: 0.1rem solid currentColor;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 1.4rem;
    background: transparent;
    cursor: pointer;
  }
  .qty-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .qty-input {
    width: auto;
    font-size: 2rem;
    width: 2rem;
    line-height: 1;
    background: transparent;
    border: none;
    text-align: center;
    appearance: none;
  }
}

/* step04 */
.bundleset-section__step04 {
  background: var(--bundle-cream);
  padding-bottom: 6rem;
}

.bundleset-step04__subtitle {
  font-size: 2.2rem;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 1rem;
  margin-bottom: 3rem;
}

.bundleset-step04__subtitle-note {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1.8rem;
}

.bundleset-step04__selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
  margin-bottom: 4rem;
  li {
    background: white;
    line-height: 1;
    padding: 0.5rem 1rem;
    border-radius: 10rem;
    font-size: 1.3rem;
  }
}

.bundleset-step04__offer-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8rem;
}

.bundleset-step04__offer-item {
  &[disabled] {
    display: none;
  }
}

.bundleset-step04__regular-price {
  text-align: center;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.bundleset-step04__prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.bundleset-step04__discount {
  background: var(--bundle-pink);
  color: white;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
}

.bundleset-step04__price-wrap {
  display: flex;
  align-items: flex-end;
  color: var(--bundle-pink);
  font-weight: 500;
}

.bundleset-step04__price {
  font-size: 2.8rem;
}

.bundleset-step04__yen {
  font-size: 1.8rem;
}

.bundleset-step04__tax {
  font-size: 1.1rem;
}

.bundleset-step04__ship-free {
  font-size: 1.5rem;
  color: var(--bundle-pink);
  border: 0.2rem solid currentColor;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.bundleset-step04__cta {
  flex-grow: 1;
}

.bundleset-step04__cta-button {
  background: var(--bundle-black);
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid var(--bundle-black);
  border-radius: 100rem;
  padding: 1.5rem 0;
  gap: 1rem;
  width: 100%;
  &[disabled] {
    background: #e2e2e2;
    border-color: #e2e2e2;
  }
}
.bundleset-step04__cta-button img {
  width: 2rem;
}

.bundleset-step04__cautions {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--bundle-pink);
}
.bundleset-step04__cautions li {
  display: none;
}
.bundleset-step04__cautions li.is-show {
  display: list-item;
}

/* float cv area */
.float-cv-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 400;
  pointer-events: none;
}
.float-cv-area__bg {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 399;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}
.float-cv-area__bg.is-open {
  opacity: 1;
  pointer-events: all;
}
.float-cv-contents {
  translate: 0 200%;
  transition: 0.2s;
}
.float-cv-contents.is-open {
  translate: 0 0%;
}
.float-cv-contents__inner {
  background: #e5dfda;
  border-radius: 3rem 3rem 0 0;
  padding: 4rem 8% 10rem 8%;
  pointer-events: all;
}
.float-cv-contents__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.1rem solid currentColor;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}
.float-cv-contents__counter {
  font-size: 3rem;
  .is-smaller {
    font-size: 1.6rem;
  }
}
.no-selected-items {
  display: none;
}
.no-selected-items.is-show {
  display: block;
}
.float-cv-contents__items {
  min-height: 24rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.selected-items {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.selected-item__qty {
  margin-top: 2rem;
}

@media screen and (min-width: 769px) {
  .selected-items:has(li:nth-of-type(n + 4)) li {
    width: 22%;
    .selected-item__category span {
      font-size: 1rem;
      padding: 0.5rem 0.5rem;
    }
    .selected-item__name--en {
      font-size: 1.2rem;
    }
    .selected-item__name {
      font-size: 1rem;
    }
  }
  .selected-items:has(li:nth-of-type(n + 5)) li {
    width: 18%;
  }
  .selected-items:has(li:nth-of-type(n + 6)) li {
    width: 15%;
    .selected-item__name {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }
}
.selected-item {
  max-width: 25%;
}
.selected-item__thumb {
  position: relative;
}
.delete-item-button {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2.5rem;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  background: transparent;
  font-size: 2.4rem;
  font-weight: 400;
  cursor: pointer;
}
.selected-item__category {
  margin: 1rem 0;
}
.selected-item__category span {
  background: white;
  display: inline-block;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-size: 1.2rem;
}
.selected-item__name--en {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.selected-item__name {
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.float-cv-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.float-cv-buttons button {
  cursor: pointer;
}
.float-cv-buttons__inner {
  display: flex;
  justify-content: space-between;
  padding: 2rem 8%;
  pointer-events: all;
}

.float-cv-buttons__toggle {
  width: 38%;
  background: var(--bundle-cream);
  border: 0.1rem solid #807d7c;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100rem;
  padding: 1.5rem 0;
  position: relative;
  line-height: 1;
}
.float-cv-buttons__toggle .toggle-text {
  min-height: 1.4rem;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
  position: relative;
}
.float-cv-buttons__toggle:disabled {
  display: none;
}
.float-cv-buttons__toggle.is-open .toggle-text:before,
.float-cv-buttons__toggle.is-open .toggle-text:after {
  content: "";
  aspect-ratio: 1 / 1;
  width: 0.1rem;
  height: 100%;
  background: currentColor;
  position: absolute;
  top: 0;
  left: 0;
}
.float-cv-buttons__toggle.is-open .toggle-text:before {
  rotate: -45deg;
}
.float-cv-buttons__toggle.is-open .toggle-text:after {
  rotate: 45deg;
}
.float-cv-buttons__toggle .selected-count-icon {
  position: absolute;
  top: -0.5rem;
  right: 0;
  background: var(--bundle-pink);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 2rem;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
}
.float-cv-buttons__cartin,
.float-cv-buttons__counter {
  width: 60%;
  display: none;
}
.float-cv-buttons__cartin.is-show,
.float-cv-buttons__counter.is-show {
  display: flex;
}
.float-cv-buttons__cartin {
  background: var(--bundle-black);
  color: white !important;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid var(--bundle-black);
  border-radius: 100rem;
  padding: 1.5rem 0;
  gap: 1rem;
}
.float-cv-buttons__cartin:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.float-cv-buttons__cartin img {
  width: 2rem;
}
.float-cv-buttons__counter {
  background: #d3c9c1;
  color: inherit;
  border: none;
  justify-content: center;
  align-items: center;
  border-radius: 100rem;
  padding: 1.5rem 0;
  line-height: 1.35;
  text-align: center;
}
.float-cv-area[data-mode="initial"] .float-cv-buttons__inner,
.float-cv-area[data-has-colors="false"] .float-cv-buttons__inner {
  justify-content: center;
}
.float-cv-area[data-mode="initial"] .float-cv-buttons__toggle,
.float-cv-area[data-has-colors="false"] .float-cv-buttons__toggle {
  display: none;
}
.float-cv-area[data-mode="initial"] .float-cv-buttons__counter,
.float-cv-area[data-has-colors="false"] .float-cv-buttons__counter {
  width: min(100%, 30rem);
}
.float-cv-area[data-mode="step03"] .float-cv-buttons__counter,
.float-cv-area[data-mode="selecting"] .float-cv-buttons__counter {
  color: var(--bundle-black);
}
.float-cv-area[data-mode="ready"] .float-cv-buttons__cartin {
  background: var(--bundle-black);
}
.float-cv-area[data-mode="ready"] .float-cv-buttons__cartin.is-show {
  display: flex;
}

@media screen and (max-width: 768px) {
  .bundleset-header__contents h1 {
    margin-top: 2rem;
    font-size: 1.8rem;
  }
  .float-cv-contents__inner {
    padding-right: 0;
    padding-left: 0;
  }
  .float-cv-contents__header {
    margin-left: 4%;
    margin-right: 4%;
    margin-bottom: 2rem;
  }
  .bundleset-section__header {
    padding-top: 8rem;
  }
  .bundleset-header {
    flex-direction: column;
  }
  .bundleset-header__image {
    width: 100%;
  }
  .bundleset-header__contents {
    width: 100%;
  }
  .bundleset-header__button button {
    width: 100%;
    font-size: 1.5rem;
  }
  .bundleset-main__title {
    font-size: 2.2rem;
  }
  .bundleset-section__main {
    padding: 5rem 0;
  }
  .bundleset-section__main > .inner {
    padding: 0;
  }
  .bundleset-tab-content__text {
    text-align: left;
  }
  .bundleset-tab-content__text br {
    display: none;
  }
  button.bundleset-tab {
    font-size: 1.4rem;
  }
  .bundleset-colors {
    gap: 4%;
  }
  .bundleset-color {
    width: 48%;
  }
  .bundleset-color__tone-images button {
    margin: 0 0 1rem 0;
  }
  .bundleset-color__tone-images figcaption {
    padding-top: 0.25rem;
  }
  .bundleset-color__tone-selector .summary-inner {
    padding: 1rem 1rem;
    font-size: 1.4rem;
  }
  .bundleset-color__tone-selector .summary-inner:before {
    width: 3.5rem;
  }
  .bundleset-color__tone-selector .summary-inner:after {
    width: 3.5rem;
  }
  .float-cv-contents > .inner {
    padding: 0;
  }
  .float-cv-buttons > .inner {
    padding: 0;
  }
  .float-cv-buttons__inner {
    padding: 2rem 4%;
  }
  .float-cv-buttons__toggle,
  .float-cv-buttons__cartin {
    font-size: 1.4rem;
  }
  .float-cv-buttons__toggle {
    width: 48%;
  }
  .float-cv-buttons__cartin,
  .float-cv-buttons__counter {
    width: 50%;
  }
  .float-cv-buttons button {
    font-size: 1.4rem;
  }
  .selected-items {
    flex-direction: column;
    max-height: 50dvh;
    overflow-y: auto;
    padding: 1rem 4%;
  }
  .selected-item {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
  }
  .selected-item__thumb {
    width: 22%;
    position: static;
  }
  .selected-item__info {
    width: 74%;
    .selected-item__qty {
      position: absolute;
      right: 0;
      bottom: 0;
    }
  }
  .delete-item-button {
    right: 0;
    left: auto;
    top: 1rem;
  }
  .selected-item__name {
    justify-content: flex-start;
    gap: 1rem;
  }
  .bundleset-about__title h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
  .bundleset-about__title h2 span {
    font-size: 2rem;
    position: relative;
    padding: 0 0.7rem;
  }
  .bundleset-about__title h2 span:before,
  .bundleset-about__title h2 span:after {
    bottom: 0.1rem;
    height: 100%;
  }
  .bundleset-about__subtitle {
    font-size: 2rem;
  }
  .bundleset-section__about {
    padding: 4rem 0 4rem 0;
  }
  .bundleset-about__flex {
    flex-direction: column;
    padding: 0 8%;
    gap: 2rem;
  }
  .bundleset-about__list {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }
  .bundleset-about__list li {
    margin-bottom: 0;
    width: 100%;
    padding: 1.5rem 2rem;
  }
  .tone-select-list button {
    padding: 1rem;
  }
  .bundleset-step01__lead {
    line-height: 1.5;
  }
  .bundleset-select-set {
    flex-direction: column;
  }
  .bundleset-section__step-title {
    font-size: 2rem;
  }
  .bundleset-step03__select-types {
    gap: 1rem;
  }
  .bundleset-step03__type-item {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .bundleset-step03__type-item {
    &.is-recommend {
      &:after {
        font-size: 1rem;
        scale: 0.7;
        translate: 3.25rem -1.25rem;
      }
    }
    & > dl {
      dt {
        font-size: 1.6rem;
        gap: 0.5rem;
      }
    }
  }
  .bundleset-step03__option-heading {
    flex-direction: column;
  }
  .bundleset-step03__subtitle {
    font-size: 2rem;
  }
  .bundleset-step03__choose-options {
    flex-direction: column;
  }
  .bundleset-step03__option-item {
    width: 100%;
  }
  .bundleset-step04__subtitle {
    font-size: 2rem;
  }
  .bundleset-step04__selected-items {
    gap: 0.5rem 0.5rem;
    li {
      font-size: 1rem;
    }
  }
  .bundleset-step04__offer-wrapper {
    flex-direction: column;
    gap: 4rem;
  }
  .bundleset-step04__cta {
    width: 100%;
  }
  .bundleset-step04__cautions {
    gap: 1rem;
  }
  .bundleset-step04__discount {
    font-size: 1.6rem;
  }
  .bundleset-step04__price {
    font-size: 2.4rem;
  }
  .bundleset-step04__yen {
    font-size: 1.6rem;
  }
  .bundleset-step04__ship-free {
    font-size: 1.3rem;
  }
}
