/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --point-color: #ff4d4d;
  --text-point-color: #e83d3d;
  --color-pink: #ff537f;
  --color-pink-2: #ff5782;
  --color-pink-3: #ffa6b8;
  --color-orange: #e8633d;
  --color-purple: #c966ff;
  --color-violet: #708dff;
  --color-light-orange: #ffdfcc;
  --color-light-purple: #f0caf3;
  --color-light-violet: #cbc6ff;
  --color-light-violet-2: #c7c4ff;
  --color-light-blue: #aadbf9;
  --color-deep-purple: #a840b0;
  --color-deep-violet: #1f1d91;
  --color-deep-violet-2: #5a4fca;
}

/* ==========================================================================
   Layout Sections
   ========================================================================== */
.section {
  background: var(--ecm-color-white);
  margin-inline: calc((100vw - 100%) / 2 * -1);
  padding: 140px calc((100vw - 100%) / 2);
}
.section--campaign {
  padding-block: 200px 92px;
}
.section--w-ellipse {
  /* ここにposition: relativeを指定すると「カテゴリーから探す」セクションのフローティングメニューが誤動作します */
  padding-block: 6px 300px;
}
.section__ellipse {
  margin-inline: -16px;
  position: relative;
}
.section__ellipse::before {
  background: #fff;
  content: '';
  display: block;
  position: absolute;
  clip-path: ellipse(52% 50%);
  height: 275px;
  width: 100vw;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  top: -105px;
}
/* 最初の.section--w-ellipse */
:not(.section--w-ellipse) + .section--w-ellipse {
  margin-top: 102px;
}
/* 最後の.section--w-ellipse */
.section--w-ellipse:not(:has(~ .section--w-ellipse)) {
  padding-bottom: 138px;
}

.section--bg-red {
  background: linear-gradient(90deg, #ff6b89 0%, #ffac79 100%);
}
.section--bg-red .section__ellipse::before {
  background: linear-gradient(90deg, #ff6b89 calc((100vw - 100%) / -2), #ffac79 calc((100vw + 100%) / 2));
}
.section--bg-purple {
  background: linear-gradient(90deg, #e8cbf9 0%, #f8c9ed 100%);
}
.section--bg-purple .section__ellipse::before {
  background: linear-gradient(90deg, #e8cbf9 calc((100vw - 100%) / -2), #f8c9ed calc((100vw + 100%) / 2));
}
.section--bg-violet {
  background: linear-gradient(90deg, #d3caff 0%, #babdff 100%);
}
.section--bg-violet .section__ellipse::before {
  background: linear-gradient(90deg, #d3caff calc((100vw - 100%) / -2), #babdff calc((100vw + 100%) / 2));
}
.section--bg-peach {
  background: linear-gradient(90deg, #ffeed5 0%, #ffd0c3 100%);
}
.section--bg-peach .section__ellipse::before {
  background: linear-gradient(90deg, #ffeed5 calc((100vw - 100%) / -2), #ffd0c3 calc((100vw + 100%) / 2));
}
.section--bg-yellow {
  background: linear-gradient(90deg, #ffe1c3 0%, #feffd7 100%);
}
.section--bg-yellow .section__ellipse::before {
  background: linear-gradient(90deg, #ffe1c3 calc((100vw - 100%) / -2), #feffd7 calc((100vw + 100%) / 2));
}
.section--bg-deep-violet {
  background: linear-gradient(90deg, #7853ff 0%, #b74cff 100%), linear-gradient(90deg, #fe6989 0%, #ffad79 100%);
}
.section--bg-deep-violet .section__ellipse::before {
  background: linear-gradient(90deg, #7853ff calc((100vw - 100%) / -2), #b74cff calc((100vw + 100%) / 2)),
  linear-gradient(90deg, #fe6989 calc((100vw - 100%) / -2), #ffad79 calc((100vw + 100%) / 2));
}

.section__title {
  height: auto;
  max-width: 100%;
  text-align: center;
}
.section__title--lightning-side {
  display: inline-block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
.section__title--lightning-side::before,
.section__title--lightning-side::after {
  background: no-repeat center / cover;
  bottom: -7px;
  content: '';
  display: block;
  height: 50px;
  position: absolute;
  width: 26px;
}
.section__title--lightning-side::before {
  background-image: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_sp/img/img_thunder_l_02.svg');
  left: -56px;
}
.section__title--lightning-side::after {
  background-image: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_sp/img/img_thunder_r_02.svg');
  right: -56px;
}
.section__title--lightning-center {
  position: relative;
}
.section__title--lightning-center::before {
  background: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_sp/img/img_thunder_c_red.svg') no-repeat center / cover;
  bottom: 141%;
  content: '';
  display: block;
  height: 155px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 102px;
  z-index: 1;
}
.section__title-image {
  height: auto;
  max-width: 100%;
}
.section__title--w-image {
  position: relative;
}
.section__title--w-image .section__title-image {
  bottom: calc(100% - 22px);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.section__subtitle {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.section__text {
  color: var(--ecm-color-gray-1);
  font-size: 20px;
  font-weight: 600;
  margin-top: 56px;
  position: relative;
  text-align: center;
}

.block-radius {
  border-radius: 24px;
  margin-top: 32px;
  padding: 40px;
}
.block-radius--pink {
  background: linear-gradient(90deg, rgba(254, 91, 140, 0.1) 0%, rgba(255, 187, 117, 0.1) 100%);
}
.block-radius--blue {
  background: linear-gradient(90deg, rgba(173, 221, 247, 0.3) 0%, rgba(150, 207, 255, 0.3) 100%);
}
.block-radius--purple {
  background: linear-gradient(90deg, rgba(120, 83, 255, 0.1) 0%, rgba(183, 76, 255, 0.1) 100%);
}

/* ==========================================================================
   Kanban Component
   ========================================================================== */
.kanban {
  background: linear-gradient(90deg, #fe5b8c 0%, #ed9942 100%);
}
.kanban__head {
  background: linear-gradient(90deg, #fe5b8c 0%, #ed9942 100%);
  text-align: center;
}

.kanban__wrapper {
  background: linear-gradient(180deg, #f9f5f4 0%, #ffe1d6 100%);
}
.kanban__body {
  background: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/bg_kanban.png') no-repeat center / 1477px;
  padding-block: 32px;
  text-align: center;
}

.kanban-sub {
  color: var(--ecm-color-white);
  font-family: 'RakutenSansJP2_W-Bold', sans-serif;
  font-weight: 700;
  padding-bottom: 16px;
  text-shadow: 0 0 14px #b93a00;
}
.kanban-sub__text-1 {
  font-size: 26px;
  text-align: center;
}
.kanban-sub__text-2 {
  font-size: 15px;
  margin-top: 12px;
  text-align: center;
}
.kanban-sub__arrow {
  display: block;
  margin-inline: auto;
  margin-top: 8px;
}

/* ==========================================================================
   Slider
   ========================================================================== */
/* ----- Kanban Slider ----- */
.beauty-swiper {
  margin-inline: auto;
  mask-image: linear-gradient(to left, transparent 0%, #000 5%, #000 95%, transparent 100%);
  max-width: 960px;
  padding-block: 24px 18px;
}
.beauty-swiper__wrapper {
  transition-timing-function: linear;
}
.beauty-swiper__slide {
  width: 96px;
}
.beauty-swiper__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ----- Slider ----- */
.beauty-slider-slide {
  background: var(--ecm-color-white);
  border-radius: 5px;
  overflow: hidden;
}
.beauty-ranking-alcor-text-box {
  padding: 0 8px 8px;
}

/* ==========================================================================
   Countdown
   ========================================================================== */
.countdown {
  background: linear-gradient(90deg, #fe5b8c 0%, #ed9942 100%);
  border-radius: 24px;
  margin-bottom: 124px;
  padding-block: 20px;
}
.countdown__title {
  color: var(--ecm-color-white);
  font-family: 'RakutenSansJP2_W-Bold', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 0 14px #b93a00;
}
.countdown__text {
  color: var(--ecm-color-white);
  font-family: 'RakutenSansJP2_W-Regular', sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}
.countdown__timer {
  align-items: flex-end;
  display: flex;
  font-family: 'RakutenSansJP2_W-Bold', sans-serif;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
}
.countdown__timer-number {
  background: var(--ecm-color-white);
  border-radius: 8px;
  color: #fa3c5a;
  display: flex;
  font-size: 36px;
  justify-content: center;
  min-width: 62px;
  padding: 4px;
}
.countdown__timer-number:not(:first-child) {
  margin-left: 8px;
}
.countdown__timer-unit {
  color: var(--ecm-color-white);
  font-size: 14px;
  margin-left: 4px;
  text-shadow: 0 0 14px #b93a00;
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
/* ----- Navigation ----- */
.beauty-floating-navi-container {
  padding-top: 16px;
}
.beauty-floating-navi {
  height: 48px;
}
.beauty-floating-navi-item {
  color: var(--ecm-color-gray-2) !important;
  border-bottom-color: rgb(0 0 0 / 20%);
  font-size: 16px;
  padding: 12px;
}
.beauty-floating-navi-item[data-in-viewport='true'] {
  border-bottom: 2px solid var(--point-color) !important;
  color: var(--point-color) !important;
}
@media (hover: hover) and (pointer: fine) {
  .beauty-floating-navi-item:hover {
    color: var(--point-color) !important;
  }
}

/* ----- Navigation for Category Section ----- */
.beauty-floating-navi-container-category {
  background-color: #ddcefc;
  border-bottom: 1px solid #8c5df5;
  top: 64px !important;
}
.beauty-floating-navi-container-category:not(:has([data-in-viewport='true'])) {
  height: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  z-index: -1;
}
.beauty-floating-navi-category {
  height: 40px;
}
.beauty-floating-navi-item-category {
  background-color: #f5f4ff;
  color: #8c5df5;
  font-weight: 600;
}
.beauty-floating-navi-item-category[data-in-viewport='true'] {
  background-color: #8c5df5;
  border: 0;
  color: var(--ecm-color-white);
}
.beauty-floating-navi-item-category + .beauty-floating-navi-item-category {
  margin-left: 1px;
}

/* ----- Searchform ----- */
.floating-search {
  background-color: #fff4f3;
  padding: 10px;
  inset: auto 0 0 !important;
}

/* ----- Banners ----- */
.floating-banner {
  top: auto !important;
  right: 50px;
  position: relative;
}
.floating-banner--sale {
  bottom: 333px;
}
.floating-banner--beauty {
  bottom: 172px;
}
.floating-banner__link {
  display: block;
  width: 129px;
  height: 129px;
}
.floating-banner__close-button {
  background: var(--ecm-color-white);
  box-shadow: 0 0.771px 3.699px 0 rgb(0 0 0 / 20%);
  width: 18px;
  height: 18px;
  border-radius: 9px;
  border-width: 1px;
  border-style: solid;
  font-size: 10px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -8px;
  right: -4px;
}
.floating-banner--sale .floating-banner__close-button {
  color: var(--point-color);
  border-color: var(--point-color);
}
.floating-banner--beauty .floating-banner__close-button {
  color: #333333;
  border-color: #333333;
}

/* ==========================================================================
   Ad Components
   ========================================================================== */
/* ----- Card ----- */
.beauty-ad-card {
  border-radius: 8px;
  padding: 12px;
}
.beauty-ad-card-small {
  background: var(--ecm-color-white);
  border-radius: 4px;
  padding: 8px;
}

/* ----- Customize Ad Component ----- */
.beauty-ad-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  min-height: calc(4em * 1.3);
  overflow: hidden;
}

/* Influencer's Comment */
.beauty-ad-influencer-comment {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.beauty-ad-influencer-comment__img {
  flex: 0 0 auto;
  width: 104px;
  border-radius: 100%;
  overflow: hidden;
}
.beauty-ad-influencer-comment__text {
  color: #333333;
  margin-left: 5px;
}

/* ----- Discount Rate - Label ----- */
.beauty-ad-discount-rate-label {
  width: fit-content;
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 2px;
  line-height: 1;
}

/* ----- Discount Rate - Badge ----- */
.beauty-ad-discount-rate-badge {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 80px;
  justify-content: center;
  left: 0;
  line-height: 130%;
  padding-top: 2px;
  position: absolute;
  top: 0;
  width: 80px;
  z-index: 1;
}
.beauty-ad-discount-rate-badge__rate {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-align: center;
}
.beauty-ad-discount-rate-badge__rate-num {
  font-size: 28px;
}
.beauty-ad-discount-rate-badge__rate-off {
  font-size: 15px;
  font-weight: 400;
}
.beauty-ad-discount-rate-badge__text {
  margin-top: 1px;
  font-size: 10px;
  font-weight: 700;
}
.beauty-ad-discount-rate-badge--small {
  height: 70px;
  line-height: 110%;
  padding-top: 7px;
  width: 70px;
}
.beauty-ad-discount-rate-badge--small .beauty-ad-discount-rate-badge__rate-num {
  font-size: 24px;
}
.beauty-ad-discount-rate-badge--small .beauty-ad-discount-rate-badge__rate-off {
  font-size: 12px;
}
.beauty-ad-discount-rate-badge--small .beauty-ad-discount-rate-badge__text {
  font-size: 9px;
}
.beauty-ad-discount-rate-badge--30 {
  background: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_cmn/img/beauty_ad_pointbadge_30.svg') no-repeat;
  background-size: 100%;
}
.beauty-ad-discount-rate-badge--20 {
  background: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_cmn/img/beauty_ad_pointbadge_20.svg') no-repeat;
  background-size: 100%;
}
.beauty-ad-discount-rate-badge--10 {
  background: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_cmn/img/beauty_ad_pointbadge_10.svg') no-repeat;
  background-size: 100%;
}

/* ==========================================================================
   Searchform
   ========================================================================== */
.beauty-search {
  border: 2px solid var(--point-color) !important;
  border-radius: 12px;
  width: 632px;
  margin-left: auto;
  margin-right: auto;
}

.beauty-search-submit {
  background: var(--point-color);
  border-radius: 12px;
  margin-top: -2px;
  margin-bottom: -2px;
  margin-right: -2px;
  transition:
    background 0.3s ease,
    background-color 0s;
}

@media (hover: hover) and (pointer: fine) {
  .beauty-search-submit:hover {
    background: linear-gradient(0deg, rgb(0 0 0 / 8%) 0%), var(--point-color);
  }
}

.beauty-search-select-container {
  border-left: 1px solid rgb(0 0 0 / 20%);
  padding-left: 12px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.beauty-button {
  align-items: center;
  background: #fffefe;
  border: 2px solid#FFFEFE;
  border-radius: 10px;
  color: #757575;
  display: inline-flex;
  flex: 1 0 auto;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  padding: 12px 16px;
  text-align: center;
  width: 100%;
}
.beauty-button[aria-selected='true'] {
  background: #fffefe;
  border-color: var(--color-pink);
  color: var(--color-pink);
}
@media (hover: hover) and (pointer: fine) {
  .beauty-button:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
/* ----- Button Variations ----- */
/* Size */
.beauty-button--large {
  border-radius: 12px;
  border-width: 1px;
  font-size: 16px;
  font-weight: 500;
  padding: 17px 16px;
}
.beauty-button--narrow {
  max-width: 343px;
}
/* Style */
.beauty-button--outlined {
  border-color: #ccc;
}
.beauty-button--outlined-gradation {
  background: var(--ecm-color-white);
  border: none;
  border-radius: 12px;
  color: var(--ecm-color-gray-1) !important;
  min-height: 36px;
  position: relative;
}
.beauty-button--outlined-gradation::before {
  background: linear-gradient(90deg, #a82dea 0%, var(--color-violet) 100%) border-box border-box;
  border: 1px solid transparent;
  border-radius: 12px;
  bottom: 0;
  content: '';
  left: 0;
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
  position: absolute;
  right: 0;
  top: 0;
}
.beauty-button--orange {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--ecm-color-white) !important;
}
.beauty-button--point {
  color: var(--point-color) !important;
  border-color: var(--point-color);
}
.beauty-button--pink-2 {
  color: var(--color-pink-2) !important;
  border-color: var(--color-pink-2);
}
.beauty-button--purple {
  color: var(--color-purple) !important;
  border-color: var(--color-purple);
}
.beauty-button--violet {
  color: var(--color-violet) !important;
  border-color: var(--color-violet);
}
.beauty-button--deep-purple {
  background: var(--color-deep-purple);
  border-color: var(--color-deep-purple);
  color: var(--ecm-color-white);
}
.beauty-button--deep-violet {
  background: var(--color-deep-violet-2);
  border-color: var(--color-deep-violet-2);
  color: var(--ecm-color-white);
}

/* ----- Button Group ----- */
.beauty-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.beauty-button-group--column-3 {
  margin-inline: calc(8px / -2);
  gap: 8px 0;
}
.beauty-button-group--column-3 > * {
  padding-inline: calc(8px / 2);
  width: calc(100% / 3);
}
.beauty-button-group--column-4 {
  margin-inline: calc(8px / -2);
  gap: 8px 0;
}
.beauty-button-group--column-4 > * {
  padding-inline: calc(8px / 2);
  width: calc(100% / 4);
}
.beauty-button-group--column-6 {
  margin-inline: calc(13px / -2);
  gap: 13px 0;
}
.beauty-button-group--column-6 > * {
  padding-inline: calc(13px / 2);
  width: calc(100% / 6);
}
.beauty-button-group--column-1-3 {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 3fr;
}
.beauty-button-group--slide .beauty-button {
  flex: 1;
}

/* ==========================================================================
   Anchor Buttons
   ========================================================================== */
.beauty-anchor-button {
  border: none;
  color: var(--ecm-color-white) !important;
  background-color: var(--color-pink);
  border-radius: 12px;
  display: grid;
  grid-template-rows: auto 12px;
  justify-content: flex-start;
  line-height: 1.5;
  row-gap: 7px;
  padding: 8px 24px;
  min-height: 82px;
  background-repeat: no-repeat;
  width: 223px;
}
@media (hover: hover) and (pointer: fine) {
  .beauty-anchor-button:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}
.beauty-anchor-button--influencer {
  background-image: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/bg_anchor-link_influencer.png');
  background-position: right 22px center;
  background-size: 71px auto;
}
.beauty-anchor-button--rakutensets {
  background-image: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/bg_anchor-link_rakutensets.png');
  background-position: right 9px center;
  background-size: 82px auto;
}
.beauty-anchor-button--timesale {
  background-color: #7853ff;
  background-image: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/bg_anchor-link_timesale.png');
  background-position: right 11px center;
  background-size: 99px auto;
}
.beauty-anchor-button__text-1 {
  font-size: 10px;
}
.beauty-anchor-button__text-2 {
  font-size: 12px;
  font-weight: bold;
}
.beauty-link-button {
  border: none;
  border-radius: 12px;
  display: block;
  padding: 13px 15px;
  position: relative;
  width: 464px;
}
.beauty-link-button--sale {
  background: #f05e3a;
  color: #fef7b1 !important;
}
.beauty-link-button--point {
  padding: 15px 15px 7px;
}
.beauty-link-button--sale::after, .beauty-link-button--point::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
}
.beauty-link-button--sale::after {
  background-image: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/img_link_specialsale.png');
  height: 88px;
  width: 156px;
}
.beauty-link-button--point {
  background: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_cmn/img/bg_link_specialpoint.png') top center / cover no-repeat;
  border: 1px solid var(--ecm-color-gray-1);
  color: var(--ecm-color-gray-1) !important;
}
.beauty-link-button--point::after {
  background-image: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/img_link_specialpoint.png');
  height: 71px;
  width: 187px;
}
.beauty-link-button__text-1 {
  font-size: 13px;
}
.beauty-link-button__text-2 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 3px;
}
.beauty-link-button--point .beauty-link-button__text-2 {
  font-size: 21px;
  line-height: 1.1;
  margin-top: 0;
}
.beauty-link-button__icon {
  font-size: 16px;
  letter-spacing: 0.6px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .beauty-link-button:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.beauty-link-brand-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-inline: auto;
  max-width: 764px;
}
.beauty-link-brand-logo {
  width: calc(25% - 9px);
}
@media (hover: hover) and (pointer: fine) {
  .beauty-link-brand-logo:hover {
    opacity: 0.8;
  }
}

/* ==========================================================================
   Tabs
   ========================================================================== */
.beauty-tab-by-coupon {
  margin-inline: -80px;
}
.beauty-tab-by-coupon .beauty-tab-button-group {
  max-width: 880px;
}
.beauty-tab-by-coupon .beauty-tab-panel {
  padding-inline: 80px;
}
.beauty-tab-button-group {
  column-gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: auto;
  max-width: 648px;
}
.beauty-tab-button {
  align-items: center;
  border: none;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: center;
  min-height: 68px;
}
.beauty-tab-button img {
  height: 19px;
  width: auto;
}
.beauty-tab-panel {
  border-radius: 24px;
  padding: 32px 16px 40px;
}

/* ==========================================================================
   Form
   ========================================================================== */
.beauty-form {
  margin-inline: auto;
  max-width: 612px;
}
.beauty-form-group {
  border: none;
  margin-top: 0;
  padding: 0;
}
.beauty-form-group + .beauty-form-group {
  margin-top: 24px;
}
.beauty-form-group__title {
  color: var(--ecm-color-gray-1);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  width: 100%;
}
.beauty-button-radio {
  display: none;
}
.beauty-button-radio-label {
  align-items: center;
  background: var(--ecm-color-white);
  border: 2px solid transparent;
  border-radius: 10px;
  color: #757575;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  height: 100%;
  justify-content: center;
  min-height: 43px;
  padding: 8px 4px;
  text-align: center;
}
.beauty-button-radio-label--brandlogo {
  background: transparent;
  padding: 0;
}
@media (hover: hover) and (pointer: fine) {
  .beauty-button-radio-label:hover {
    opacity: 0.8;
  }
}
.beauty-button-radio:checked + .beauty-button-radio-label--orange {
  border-color: var(--color-orange);
  color: var(--color-orange);
}
.beauty-button-radio:checked + .beauty-button-radio-label--deep-purple {
  border-color: var(--color-deep-purple);
  color: var(--color-deep-purple);
}
.beauty-button-radio:checked + .beauty-button-radio-label--deep-violet {
  border-color: var(--color-deep-violet-2);
  color: var(--color-deep-violet-2);
}
.beauty-textform {
  align-items: center;
  border: 2px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  display: flex;
  font-size: 13px;
  min-height: 40px;
  padding: 0 12px;
  width: 100%;
}
.beauty-textform::placeholder {
  color: var(--ecm-color-gray-2);
}

/* ==========================================================================
   Banners
   ========================================================================== */
.banner-campaign {
  display: inline-block;
  padding-bottom: 26px;
}
@media (hover: hover) and (pointer: fine) {
  .banner-campaign:hover {
    opacity: 0.8;
  }
}
.banner-campaign--no-button {
  border-radius: 14px;
  overflow: hidden;
  padding-bottom: 0;
}
.banner-campaign__button {
  align-items: center;
  background-color: #333333;
  border: none;
  border-radius: 5px;
  color: var(--ecm-color-white) !important;
  column-gap: 4px;
  display: inline-flex;
  font-size: 19px;
  font-weight: 600;
  justify-content: center;
  left: 50%;
  padding: 15px 19px;
  position: absolute;
  top: 100%;
  transform: translateX(-50%) translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .banner-campaign__button:hover {
    opacity: 0.8;
  }
}

/* ==========================================================================
   Coupon
   ========================================================================== */
.kamitoku-coupon {
  align-items: center;
  background-position:
    right 19px center,
    center center;
  background-repeat: no-repeat;
  background-size:
    auto auto,
    305px 162px;
  color: var(--ecm-color-white);
  display: flex;
  flex-direction: column;
  font-size: 20px;
  height: 162px;
  justify-content: center;
  margin: 0 auto -24px;
  position: relative;
  text-align: center;
  width: 305px;
}

.kamitoku-coupon::after {
  content: '';
  display: block;
  width: 305px;
  height: 162px;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size:
    305px 142px,
    297px 162px;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.kamitoku-coupon--30p {
  background-image: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/img_coupon_thunder.svg'),
    url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/bg_coupon_30p.svg');
}
.kamitoku-coupon--20p {
  background-image: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/img_coupon_thunder.svg'),
    url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/bg_coupon_20p.svg');
}
.kamitoku-coupon--10p {
  background-image: url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/img_coupon_thunder.svg'),
    url('https://r.r10s.jp/evt/event/beauty/campaign/coupon/202605/_pc/img/bg_coupon_10p.svg');
}

.kamitoku-coupon__head {
  font-size: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.kamitoku-coupon__head::before,
.kamitoku-coupon__head::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--ecm-color-white);
  width: 1px;
  height: 1.2em;
}

.kamitoku-coupon__head::before {
  left: -12px;
  transform: rotate(135deg);
}

.kamitoku-coupon__head::after {
  right: -12px;
  transform: rotate(45deg);
}

.kamitoku-coupon__num {
  font-size: 40px;
  font-family: 'RakutenSansJP2_W-Bold', sans-serif;
}

.kamitoku-coupon__pill {
  background-color: #feeaa1;
  color: #e31b68;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  font-weight: 500;
  padding: 0 8px;
  margin-left: 3px;
  border-radius: 9999px;
}

.kamitoku-coupon__hr {
  margin: 4px auto;
  border: 0;
  height: 1px;
  width: 184px;
  background-color: rgb(255 255 255 / 40%);
}

.couponOneClick .couponOneClick-default,
.couponOneClick .couponOneClick-acquired,
.couponOneClick .couponOneClick-having,
.couponOneClick .couponOneClick-expired,
.couponOneClick .couponOneClick-finished {
  display: none;
  justify-content: center;
  align-items: center;
}

.couponOneClick:not(.couponOneClick-status-acquired, .couponOneClick-status-having, .couponOneClick-status-expired, .couponOneClick-status-finished)
  .couponOneClick-default,
.couponOneClick-status-acquired .couponOneClick-acquired,
.couponOneClick-status-having .couponOneClick-having,
.couponOneClick-status-expired .couponOneClick-expired,
.couponOneClick-status-finished .couponOneClick-finished {
  display: inline-flex;
}

.ecm-button.couponOneClick-acquired {
  background: #ebf7ec;
  border-color: #ebf7ec;
  color: #008801 !important;
  cursor: default;
  pointer-events: none;
}

.ecm-button.couponOneClick-having {
  background: #f7f7f7;
  border-color: #f7f7f7;
  color: #717171 !important;
  cursor: default;
  pointer-events: none;
}

.ecm-button.couponOneClick-expired,
.ecm-button.couponOneClick-finished {
  background: #fff0f0;
  border-color: #fff0f0;
  color: #df0101 !important;
  cursor: default;
  pointer-events: none;
}
.kamitoku-coupon-guide {
  margin-inline: auto;
  max-width: 632px;
}
.kamitoku-coupon-guide__box {
  background-color: var(--ecm-color-white);
  border-radius: 12px;
  color: var(--ecm-color-gray-1);
  font-size: 14px;
  line-height: 1.4;
  margin-top: 44px;
  padding: 12px;
  text-align: center;
}
.kamitoku-coupon-guide__box p + p {
  margin-top: 6px;
}
.coupon-button-area {
  margin-inline: auto;
  margin-top: 12px;
  max-width: 482px;
}

/* ==========================================================================
   Modal
   ========================================================================== */
.beauty-modal-content-wrapper {
  width: calc(100% - 32px);
}

.case-list {
  counter-reset: modal-case;
  margin-top: 24px;
}
.case-list__item {
  padding-left: 22px;
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--point-color);
}
.case-list__item + .case-list__item {
  border-top-color: rgb(0 0 0 / 8%);
}
.case-list__item::before {
  counter-increment: modal-case;
  content: counter(modal-case);
  display: block;
  background-color: var(--ecm-color-gray-2);
  color: var(--ecm-color-white);
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 26px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
}
.case-list__item:first-child {
  padding-bottom: 24px;
}
/* ==========================================================================
   Misc
   ========================================================================== */
.note {
  color: var(--ecm-color-gray-1);
  font-size: 12px;
  line-height: 1.35;
  padding-left: calc(1em + 4px);
  position: relative;
}
.note::before {
  content: '※';
  display: inline-block;
  position: absolute;
  left: 0;
}
.note + .note {
  margin-top: 4px;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
/* Text Colors */
.color-point {
  color: var(--text-point-color);
}
.beauty-color-pink {
  color: var(--color-pink);
}
.beauty-color-pink-2 {
  color: var(--color-pink-2);
}
.beauty-color-purple {
  color: var(--color-purple);
}
.beauty-color-violet {
  color: var(--color-violet);
}
.beauty-color-deep-violet {
  color: var(--color-deep-violet);
}

/* Background Colors */
.beauty-bg-orange {
  background-color: var(--color-orange);
}
.beauty-bg-beige {
  background-color: #f9f4f1;
}
.beauty-bg-pink-2 {
  background-color: var(--color-pink-2);
}
.beauty-bg-pink-3 {
  background-color: var(--color-pink-3);
}
.beauty-bg-purple {
  background-color: var(--color-purple);
}
.beauty-bg-violet {
  background-color: var(--color-violet);
}
.beauty-bg-light-orange {
  background-color: var(--color-light-orange);
}
.beauty-bg-light-purple {
  background-color: var(--color-light-purple);
}
.beauty-bg-light-violet {
  background-color: var(--color-light-violet);
}
.beauty-bg-light-violet-2 {
  background-color: var(--color-light-violet-2);
}
.beauty-bg-light-blue {
  background-color: var(--color-light-blue);
}

/* Text Size */
.beauty-text-18px {
  font-size: 18px;
}
.beauty-text-38px {
  font-size: 38px;
}

/* Letter Spacing */
.beauty-letter-spacing-2 {
  letter-spacing: 2px;
}

/* Display */
.d-contents {
  display: contents;
}

/* Position */
.beauty-position-relative {
  position: relative;
}
