@charset "UTF-8";
/*
* member-subscription.css
*
*/
/* --------------------------------
  member-subscription
-------------------------------- */
/* ---- コンポーネントPC上書き ---- */
@media (min-width: 768px) {
  .vnl26-el_caption {
    font-size: 0.75rem;
  }
}

.vnl26-el_link__tel-fd {
  font-size: 1rem;
}

/* ---- スプリットレイアウト ---- */
.vnl26-un_container {
  position: relative;
  z-index: var(--vnl26-stacking-base);
  width: 100%;
}

.vnl26-un_page_mainArea {
  position: relative;
  width: 100%;
  background-color: var(--vnl26-color-white);
}
@media (min-width: 768px) {
  .vnl26-un_page_mainArea {
    max-width: 26.25rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    margin-inline: auto;
  }
}

/* ---- 背景 ---- */
.vnl26-un_bg_shade {
  position: fixed;
  z-index: -1;
}
.vnl26-un_bg_shade.vnl26-un_bg_shade__left {
  top: calc(-17.9375rem + var(--vnl26-header-height));
  left: -23.9375rem;
  width: 61.6875rem;
}
.vnl26-un_bg_shade.vnl26-un_bg_shade__right {
  top: calc(-23.5rem + var(--vnl26-header-height));
  right: -26.3125rem;
  width: 61.25rem;
}

/* ---- インナー ---- */
.vnl26-un_merit_inner {
  --vnl26-content-inline-padding: min(4.4444444444vw, 2.5rem);
  padding-inline: var(--vnl26-content-inline-padding);
}
@media (min-width: 768px) {
  .vnl26-un_merit_inner {
    --vnl26-content-inline-padding: 1rem;
  }
}

/* ---- KV ---- */
.vnl26-un_kv {
  overflow: hidden;
  margin-bottom: 0.875rem;
  width: 100%;

  aspect-ratio: 360/480;
}
.vnl26-un_kv img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

/* ---- リード ---- */
.vnl26-un_lead {
  padding: 2rem 1.25rem 1.75rem;
}

.vnl26-un_lead_head {
  color: var(--vnl26-color-txt);
  font-family: var(--vnl26-font-family-mincho);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
}

.vnl26-un_lead_text {
  margin-top: 0.75rem;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  line-height: 1.8;
}

/* ---- スティッキータブナビ ---- */
.vnl26-un_tabNav {
  display: flex;
  align-items: flex-end;
  position: sticky;
  z-index: 10;
  top: var(--vnl26-header-height);
  border-bottom: 0.125rem solid var(--vnl26-color-brown_new);
  height: 4rem;
  background-color: var(--vnl26-color-white);

  gap: 0.5rem;
  padding-inline: 1rem;
}

.vnl26-un_tabNav_btn {
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border: 0.0625rem solid var(--vnl26-color-brown_new);
  border-bottom: none;
  border-radius: 0.25rem 0.25rem 0 0;
  height: 2.625rem;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: var(--vnl26-color-white);
  color: var(--vnl26-color-brown_new);

  gap: 0.125rem;
  padding-inline: 0.25rem;
}
.vnl26-un_tabNav_btn[aria-selected=true] {
  height: 3.25rem;
  background-color: var(--vnl26-color-brown_new);
  color: var(--vnl26-color-white);
}
.vnl26-un_tabNav_btn::before {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: 0;
  left: -1px;
  border: solid 2px var(--vnl26-color-line_hover);
  border-bottom: 0;
  border-radius: 0.25rem 0.25rem 0 0;
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}
.vnl26-un_tabNav_btn:not([aria-selected=true]) {
  color: var(--vnl26-color-txt);
}
.vnl26-un_tabNav_btn:not([aria-selected=true]):hover {
  color: var(--vnl26-color-txt);
}
.vnl26-un_tabNav_btn:not([aria-selected=true]):active,
.vnl26-un_tabNav_btn:not([aria-selected=true]):visited {
  color: var(--vnl26-color-txt);
}
@media (hover: hover) and (pointer: fine) {
  .vnl26-un_tabNav_btn:not([aria-selected=true]):where(:-webkit-any-link, :enabled, summary):hover {
    -webkit-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: var(--vnl26-color-txt_hover);
  }
  .vnl26-un_tabNav_btn:not([aria-selected=true]):where(:-moz-any-link, :enabled, summary):hover {
    -moz-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: var(--vnl26-color-txt_hover);
  }
  .vnl26-un_tabNav_btn:not([aria-selected=true]):where(:any-link, :enabled, summary):hover {
    transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: var(--vnl26-color-txt_hover);
  }
  .vnl26-un_tabNav_btn:not([aria-selected=true]):where(:-webkit-any-link, :enabled, summary):hover::before {
    opacity: 1;
    -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .vnl26-un_tabNav_btn:not([aria-selected=true]):where(:-moz-any-link, :enabled, summary):hover::before {
    opacity: 1;
    -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .vnl26-un_tabNav_btn:not([aria-selected=true]):where(:any-link, :enabled, summary):hover::before {
    opacity: 1;
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

.vnl26-un_tabNav_btn_main {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1;
}
.vnl26-un_tabNav_btn[aria-selected=true] .vnl26-un_tabNav_btn_main {
  font-weight: 700;
}

.vnl26-un_tabNav_btn_sub {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1;
}
.vnl26-un_tabNav_btn[aria-selected=true] .vnl26-un_tabNav_btn_sub {
  font-weight: 700;
}

/* ---- タブパネル共通 ---- */
.vnl26-un_tabPanel[hidden] {
  display: none;
}

/* ---- テキスト共通 ---- */
.vnl26-un_merit_txt {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .vnl26-un_merit_txt {
    font-size: 1rem;
  }
}

.vnl26-un_merit_bulletList {
  gap: 0;
}
.vnl26-un_merit_bulletList .vnl26-el_bullet {
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ---- 定期便スタンプアイコン ---- */
.vnl26-un_merit_stampIcon {
  display: block;
  position: relative;
  width: 4.125rem;
  height: 4.1875rem;
  background-image: url(../../assets/img/common/icon_bg_subscription.svg);
}

.vnl26-un_merit_stampIcon_num {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  color: var(--vnl26-color-white);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;

  translate: -50% 0;
}

/* ---- Tab1: アンカーセクション ---- */
.vnl26-un_ankerSection {
  padding: 2.5rem 1rem 0;
}

.vnl26-un_ankerSection_ttl {
  display: flex;
  align-items: flex-end;
  align-items: baseline;
  justify-content: center;
  padding-top: 0.75rem;
}
.vnl26-un_ankerSection_ttl .vnl26-un_ankerSection_txt {
  color: var(--vnl26-color-txt);
  font-family: var(--vnl26-font-family-mincho);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_ankerSection_ttlIcon {
  display: block;
  position: relative;
  width: 0.5625rem;
  height: 1.0625rem;
}
.vnl26-un_ankerSection_ttlIcon::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 0.15em);
  left: 50%;
  border-radius: 999px;
  width: 1.2022115039rem;
  height: 1px;
  background-color: currentColor;

  translate: -50% -50%;
}
.vnl26-un_ankerSection_ttlIcon.vnl26-un_ankerSection_ttlIcon__before {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.vnl26-un_ankerSection_ttlIcon.vnl26-un_ankerSection_ttlIcon__before::before {
  rotate: 64deg;
}
.vnl26-un_ankerSection_ttlIcon.vnl26-un_ankerSection_ttlIcon__after {
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
}
.vnl26-un_ankerSection_ttlIcon.vnl26-un_ankerSection_ttlIcon__after::before {
  rotate: -64deg;
}

.vnl26-un_ankerList {
  display: grid;
  margin-top: 1.5rem;

  gap: 0.75rem;
}
.vnl26-un_ankerList.vnl26-un_ankerList__col2 {
  grid-template-columns: repeat(2, 1fr);
}

.vnl26-un_ankerItem_link {
  display: flex;
  align-items: center;
  position: relative;
  border: 0.0625rem solid var(--vnl26-color-brown_new);
  border-radius: 0.25rem;
  width: 100%;
  min-height: 3.375rem;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: var(--vnl26-color-white);
  text-decoration: none;
  color: var(--vnl26-color-txt);
  color: var(--vnl26-color-txt);

  gap: 0.5rem;
  padding-inline: 0.75rem;
}
.vnl26-un_ankerItem_link::before {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  border: solid 2px currentColor;
  border-radius: 0.25rem;
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;

  inset: -0.0625rem;
}
.vnl26-un_ankerList__col2 .vnl26-un_ankerItem_link {
  font-size: 0.875rem;

  gap: 0.375rem;
  padding-inline: 1.5rem 0.5rem;
}
.vnl26-un_ankerItem_link:hover {
  text-decoration: none;
}
.vnl26-un_ankerItem_link:hover {
  color: var(--vnl26-color-txt_hover);
}
.vnl26-un_ankerItem_link:active,
.vnl26-un_ankerItem_link:visited {
  color: var(--vnl26-color-txt);
}
@media (hover: hover) and (pointer: fine) {
  .vnl26-un_ankerItem_link:where(:-webkit-any-link, :enabled, summary):hover {
    -webkit-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--vnl26-color-txt_hover);
  }
  .vnl26-un_ankerItem_link:where(:-moz-any-link, :enabled, summary):hover {
    -moz-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--vnl26-color-txt_hover);
  }
  .vnl26-un_ankerItem_link:where(:any-link, :enabled, summary):hover {
    transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--vnl26-color-txt_hover);
  }
  .vnl26-un_ankerItem_link:where(:-webkit-any-link, :enabled, summary):hover::before {
    opacity: 1;
    -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .vnl26-un_ankerItem_link:where(:-moz-any-link, :enabled, summary):hover::before {
    opacity: 1;
    -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .vnl26-un_ankerItem_link:where(:any-link, :enabled, summary):hover::before {
    opacity: 1;
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

.vnl26-un_ankerItem_numArea {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  min-width: 4.5ch;

  -moz-column-gap: 0.125rem;

       column-gap: 0.125rem;
}

.vnl26-un_ankerItem_num_label {
  flex-shrink: 0;
  letter-spacing: -0.02em;
  color: currentColor;
  font-family: var(--vnl26-font-family-en);
  font-size: 0.8125rem;
  line-height: 1.2;
}

.vnl26-un_ankerItem_num_value {
  align-self: baseline;
  position: relative;
  top: -0.15em;
  letter-spacing: -0.04em;
  color: currentColor;
  font-family: var(--vnl26-font-family-en);
  font-size: 1.25rem;
  line-height: 1;
}
.vnl26-un_ankerItem_num_value.vnl26-un_ankerItem_num_value--sm {
  font-size: 1.125rem;
}
.vnl26-un_ankerItem_num_value.vnl26-un_ankerItem_num_value__03,
.vnl26-un_ankerItem_num_value.vnl26-un_ankerItem_num_value__04,
.vnl26-un_ankerItem_num_value.vnl26-un_ankerItem_num_value__05 {
  top: -0.22em;
}
.vnl26-un_ankerItem_num_value.vnl26-un_ankerItem_num_value__06 {
  top: -0.084em;
}

.vnl26-un_ankerItem_divider {
  display: block;
  flex-shrink: 0;
  margin-left: 0.0625rem;
  width: 0.0625rem;
  height: 1.5rem;
  background-color: var(--vnl26-color-line_light);
}

.vnl26-un_ankerItem_text {
  flex: 1;
  min-width: 0;
  word-break: keep-all;
  color: currentColor;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}
.vnl26-un_ankerList__col2 .vnl26-un_ankerItem_text {
  text-align: center;
  font-size: 0.875rem;
}

.vnl26-un_ankerItem_sup {
  vertical-align: super;
  font-size: 0.65em;
}

.vnl26-un_ankerItem_icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background-color: currentColor;

  -webkit-mask: url(../../assets/img/common/icon_arrow_anchor.svg) no-repeat center/contain;

          mask: url(../../assets/img/common/icon_arrow_anchor.svg) no-repeat center/contain;
}

.vnl26-un_ankerSection_note {
  margin-top: 0.75rem;
  text-align: right;
  color: var(--vnl26-color-txt);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* ---- Tab1: 6つのメリット ---- */
.vnl26-un_meritItem {
  display: flex;
  padding: 1.25rem 1rem;
  border: 0.0625rem solid var(--vnl26-color-brown_new_light);
  border-radius: 0.375rem;
  background-color: var(--vnl26-color-white);

  gap: 1rem;
}

.vnl26-un_meritItem_num {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  width: 2.5rem;

  gap: 0.125rem;
}

.vnl26-un_meritItem_num_label {
  color: var(--vnl26-color-brown_new);
  font-family: var(--vnl26-font-family-en);
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1;
}

.vnl26-un_meritItem_num_value {
  color: var(--vnl26-color-brown_new);
  font-family: var(--vnl26-font-family-en);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.vnl26-un_meritItem_body {
  flex: 1;
  min-width: 0;
}

.vnl26-un_meritItem_icon {
  margin-bottom: 0.625rem;
  width: 3rem;
  height: 3rem;
}
.vnl26-un_meritItem_icon img {
  width: 100%;
  height: 100%;

  -o-object-fit: contain;

     object-fit: contain;
}

.vnl26-un_meritItem_head {
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_meritItem_sup {
  vertical-align: super;
  font-size: 0.65em;
}

.vnl26-un_meritItem_text {
  margin-top: 0.375rem;
  color: var(--vnl26-color-txt);
  font-size: 0.8125rem;
  line-height: 1.7;
}

/* ---- meritsection 共通 ---- */
.vnl26-un_meritSection {
  margin-top: calc(4rem - var(--_margin-top, 7.5rem));
  padding-top: var(--_margin-top, 7.5rem);

  --_margin-top: calc(var(--vnl26-header-height) + var(--vnl26-tab-nav-height) + 3.75rem);
}
.vnl26-un_meritSection.vnl26-un_meritSection__qa {
  margin-top: 4.5rem;
  background-color: var(--vnl26-color-bg_beige_light);

  padding-block: 3rem 2rem;
}
.vnl26-un_meritSection + .vnl26-un_meritSection {
  margin-top: calc(3.5rem - var(--_margin-top, 7.5rem));
}
.vnl26-un_meritSection.vnl26-un_meritSection__products + .vnl26-un_meritSection.vnl26-un_meritSection__products {
  margin-top: calc(4rem - var(--_margin-top, 7.5rem));
  padding-top: calc(var(--_margin-top, 7.5rem) - 2.5rem);
}
.vnl26-un_meritSection.vnl26-un_meritSection__products .vnl26-un_meritSection_body {
  padding-inline: 0.5rem;
}

.vnl26-un_meritSection_lead {
  margin-top: 0.5rem;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.vnl26-un_meritSection_body {
  position: relative;
  padding: 1.5rem 0.75rem 2rem;
  border-radius: 0.375rem;
  background-color: var(--vnl26-color-bg_beige_light);
}

.vnl26-un_meritSection_ttlBlock {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;

  margin-inline: -0.75rem;
}

.vnl26-un_meritSection_ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.vnl26-un_meritSection_ttlBlock_ribon {
  display: block;
  width: 10.625rem;

  margin-block: -2.75rem 1.0625rem;
}

.vnl26-un_meritSection_ttl_text {
  text-align: center;
  color: var(--vnl26-color-txt);
  font-family: var(--vnl26-font-family-mincho);
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.vnl26-un_meritSection_ttlCaption {
  margin-top: 0.5rem;
  text-align: center;
  font-family: var(--vnl26-font-family-mincho);
  font-size: 1rem;
  font-weight: 600;
}

.vnl26-un_meritSection_arrowDown {
  margin: 0.75rem auto 0.625rem;
  width: 1.625rem;
  height: 0.75rem;
  background-color: var(--vnl26-color-brown_new_light);

  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);

          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.vnl26-un_meritSection_arrowDown.vnl26-un_meritSection_arrowDown__sm {
  margin: 0.625rem auto 0.5rem;
  width: 1.125rem;
  height: 0.5625rem;
}

.vnl26-un_meritSection_attention {
  margin-top: 0.5rem;
  color: var(--vnl26-color-attention);
  font-size: 1rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .vnl26-un_meritSection_attention {
    font-size: 1rem;
  }
}

.vnl26-un_meritSection_ttl2 {
  margin-bottom: 2rem;
  text-align: center;
  font-family: var(--vnl26-font-family-mincho);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 160%;
}

.vnl26-un_faq_accordion {
  margin-top: 0.75rem;
  padding: 1rem 0.5rem;
  border-radius: 0.375rem;
  background-color: var(--vnl26-color-white);
}
.vnl26-un_faq_accordion:first-of-type {
  margin-top: 0;
}

.vnl26-un_faq_summary {
  display: flex;
  align-items: flex-start;
  position: relative;
  position: relative;
  padding-right: 1.5rem;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  line-height: 140%;

  gap: 0.5rem;
}
.vnl26-un_faq_summary::-webkit-details-marker {
  display: none;
}
.vnl26-un_faq_summary[aria-expanded=true] .vnl26-un_faq_summary-toggle::after {
  transform: rotate(0deg);
}

.vnl26-un_faq_summary-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  border-radius: 9999px;
  width: 2rem;
  height: 2rem;
  background: url(../../assets/img/common/icon_faq_q.svg) no-repeat center/100% auto;
  background-color: var(--vnl26-color-brown_new);
  color: var(--vnl26-color-white);
  font-family: var(--vnl26-font-family-en);
  font-size: 1.125rem;
  font-weight: 500;
}

.vnl26-un_faq_summary-txt {
  align-self: center;
}

.vnl26-un_faq_summary-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1px;
  transform: translateY(-50%);
}
.vnl26-un_faq_summary-toggle::before,
.vnl26-un_faq_summary-toggle::after {
  content: "";
  position: absolute;
  border-top: 1px solid var(--vnl26-color-brown_new);
  border-radius: 999px;
  width: 100%;
  height: 100%;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vnl26-un_faq_summary-toggle::after {
  transform: rotate(-90deg);
}

.vnl26-un_faq_content {
  display: grid;
  overflow: hidden;
  padding-right: 0.5rem;
  background-color: var(--vnl26-color-white);

  gap: 0.5rem;
  will-change: grid-template-rows;
}

.vnl26-un_faq_content-inner {
  display: flex;
  align-items: flex-start;
  margin: 0;

  gap: 0.5rem;
}
.vnl26-un_faq_content-inner > *:last-child {
  margin-bottom: 0;
}

.vnl26-un_faq_content-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  margin-top: 1rem;
  border-radius: 9999px;
  width: 2rem;
  height: 2rem;
  background: url(../../assets/img/common/icon_faq_a.svg) no-repeat center/100% auto;
  color: var(--vnl26-color-brown_new);
}

.vnl26-un_faq_content-text {
  margin-top: 1.125rem;
  margin-bottom: 0;
}
.vnl26-un_faq_content-text p {
  font-size: 1rem;
  line-height: 160%;
}

/* ---- Tab1: merit01 ---- */
.vnl26-un_merit01_section {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

.vnl26-un_merit01_bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
  min-height: 4.4375rem;
  background: linear-gradient(90deg, transparent 0%, var(--vnl26-color-bg_beige) 30%, var(--vnl26-color-bg_beige) 70%, transparent 100%);
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;

  padding-block: 0.5rem;
}

.vnl26-un_merit01_barLine {
  display: grid;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--vnl26-color-brown_new_light);
}
.vnl26-un_merit01_barLine::before,
.vnl26-un_merit01_barLine::after {
  content: "";
  display: grid;
  position: relative;
  top: -2px;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background-color: var(--vnl26-color-brown_new_light);

  grid-area: 1/-1;
}
.vnl26-un_merit01_barLine::before {
  margin: auto auto auto 0;
}
.vnl26-un_merit01_barLine::after {
  margin: auto 0 auto auto;
}
.vnl26-un_merit01_barLine.vnl26-un_merit01_barLine__before {
  top: 0;
}
.vnl26-un_merit01_barLine.vnl26-un_merit01_barLine__after {
  bottom: 0;
}

.vnl26-un_merit01_products {
  overflow: hidden;
  border-radius: 0.125rem;
}

.vnl26-un_merit01_products_grid {
  display: grid;

  --_border-width: 1px;
  --_border-color: var(--vnl26-color-line_3_light);
  grid-template-columns: repeat(2, 1fr);
}

.vnl26-un_merit01_productCard {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0.5rem 0.5rem 0.5rem 0.125rem;
  min-width: 0;
  height: 3.75rem;
  background-color: var(--vnl26-color-white);
  box-shadow: 0 0 0 var(--_border-width) var(--_border-color);

  gap: 0.125rem;
}

.vnl26-un_merit01_productCard_imgArea {
  overflow: hidden;
  align-self: center;
  flex-shrink: 0;
  border-radius: 0.125rem;
  width: 2.75rem;
  height: 2.75rem;
}
.vnl26-un_merit01_productCard_imgArea img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

.vnl26-un_merit01_productCard_name {
  flex: 1;
  min-width: 0;
  color: var(--vnl26-color-txt);
  font-size: 0.75rem;
  line-height: 1.4;
}

.vnl26-un_merit01_price {
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;

  gap: 0.5rem;
  padding-inline: 0.75rem;
}

.vnl26-un_merit01_price_normal {
  display: flex;
  align-items: center;

  gap: 0.25rem;
}

.vnl26-un_merit01_price_normal_label {
  white-space: nowrap;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.vnl26-un_merit01_price_normal_value {
  display: inline-flex;
  align-items: baseline;
  width: 8.25rem;

  gap: 0.125rem;
}

.vnl26-un_merit01_price_normal_num {
  text-decoration: line-through;
  letter-spacing: -0.04em;
  color: var(--vnl26-color-txt);
  font-family: var(--vnl26-font-family-en);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}

.vnl26-un_merit01_price_normal_unit {
  color: var(--vnl26-color-txt);
  font-family: var(--vnl26-font-family-mincho);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
}

.vnl26-un_merit01_price_regular {
  display: flex;
  align-items: center;

  gap: 0.5rem;
}

.vnl26-un_merit01_price_badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  border: 0.0625rem solid var(--vnl26-color-attention);
  border-radius: 999px;
  min-height: 1.75rem;
  background-color: var(--vnl26-color-white);
  color: var(--vnl26-color-attention);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;

  padding-inline: 0.625rem;
}

.vnl26-un_merit01_price_regular_value {
  display: inline-flex;
  align-items: baseline;
  width: 11.25rem;
}

.vnl26-un_merit01_price_regular_num {
  letter-spacing: -0.05em;
  color: var(--vnl26-color-attention);
  font-family: var(--vnl26-font-family-en);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.vnl26-un_merit01_price_regular_unit {
  color: var(--vnl26-color-attention);
  font-family: var(--vnl26-font-family-mincho);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.8;
}

.vnl26-un_merit01_price_regular_taxin {
  font-size: 0.875rem;
}

.vnl26-un_merit01_arrowDown {
  margin: 0.75rem auto 0;
  width: 1.625rem;
  height: 0.75rem;
  background-color: var(--vnl26-color-brown_new_light);

  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);

          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.vnl26-un_merit01_graph {
  position: relative;
  margin-top: 0.625rem;
  padding: 3.375rem 1.125rem 0.75rem;
  border-radius: 0.25rem;
  min-height: 16.6875rem;
  background-color: var(--vnl26-color-white);
}

.vnl26-un_merit01_balloon {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 1.25rem;
  left: 0.75rem;
  padding-bottom: 0.0625rem;
  border-radius: 0.25rem;
  width: 9.9375rem;
  min-height: 4.625rem;
  background-color: var(--vnl26-color-static-red);
}
.vnl26-un_merit01_balloon::after {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 2.4375rem;
  width: 1.3125rem;
  height: 0.6875rem;
  background-color: var(--vnl26-color-static-red);

  -webkit-mask-image: url(../../assets/img/member/subscription/vector_speech-bubble.svg);

          mask-image: url(../../assets/img/member/subscription/vector_speech-bubble.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}

.vnl26-un_merit01_balloon_text1 {
  display: inline-block;
  color: var(--vnl26-color-txt);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit01_balloon_text2 {
  display: inline-block;
  margin-right: -0.5em;
  color: var(--vnl26-color-attention);
  font-family: var(--vnl26-font-family-mincho);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit01_chart {
  position: relative;
}

.vnl26-un_merit01_chart_list {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-left: 0.25rem;

  -moz-column-gap: 0.875rem;

       column-gap: 0.875rem;
}

.vnl26-un_merit01_chart_item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.vnl26-un_merit01_chart_label {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 0.25rem;
  text-align: center;
}
.vnl26-un_merit01_chart_label.vnl26-un_merit01_chart_label--sm .vnl26-un_merit01_chart_label_num {
  font-size: 1.125rem;
}

.vnl26-un_merit01_chart_label_num {
  white-space: nowrap;
  color: var(--vnl26-color-txt);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit01_chart_label_numUnit {
  font-size: 0.875rem;
  line-height: 1.2;
}

.vnl26-un_merit01_chart_label_txt {
  white-space: nowrap;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}
.vnl26-un_merit01_chart_label_txt.vnl26-un_merit01_chart_label_txt__sm {
  position: relative;
  right: -0.2em;
  font-size: 0.875rem;
}

.vnl26-un_merit01_chart_bar {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  width: 2rem;
}

.vnl26-un_merit01_chart_save {
  margin-bottom: 0.125rem;
  border: 1px dashed var(--vnl26-color-attention);
  background: repeating-linear-gradient(-45deg, var(--vnl26-color-attention), var(--vnl26-color-attention) 1.5px, var(--vnl26-color-white) 1.5px, var(--vnl26-color-white) 5px);
}

.vnl26-un_merit01_chart_save--01 {
  height: 0.5625rem;
}

.vnl26-un_merit01_chart_save--02 {
  height: 1.6875rem;
}

.vnl26-un_merit01_chart_save--03 {
  height: 2.8125rem;
}

.vnl26-un_merit01_chart_base {
  background-color: var(--vnl26-color-attention);
}

.vnl26-un_merit01_chart_base--01 {
  height: 0.9375rem;
}

.vnl26-un_merit01_chart_base--02 {
  height: 2.8125rem;
}

.vnl26-un_merit01_chart_base--03 {
  height: 4.6875rem;
}

.vnl26-un_merit01_chart_axisLabel {
  margin-top: 0.25rem;
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  line-height: 1.2;
}

.vnl26-un_merit01_chart_axisLine {
  position: absolute;
  bottom: calc(0.875rem + 0.25rem + ((1lh - 1em) / 2) - 2px);
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--vnl26-color-line_light);
  font-size: 0.875rem;

  translate: -50% 0;
}

/* ---- Tab1: merit02 ---- */
.vnl26-un_merit02_lead {
  margin-top: 0.5rem;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  line-height: 1.8;
}

.vnl26-un_merit02_pointFlow {
  display: flex;
  align-items: flex-start;
  margin-top: 1.5rem;

  --_point-flow-gap: 1.5rem;
  -moz-column-gap: var(--_point-flow-gap);
       column-gap: var(--_point-flow-gap);
}

.vnl26-un_merit02_pointFlow_item {
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: column;

  gap: 0.25rem;
}

.vnl26-un_merit02_pointFlow_img {
  position: relative;
  border-radius: 0.125rem;
}
.vnl26-un_merit02_pointFlow_img::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: calc(var(--_point-flow-gap) * -0.5);
  width: 0.5625rem;
  height: 1.125rem;
  background-color: var(--vnl26-color-brown_new_light);

  translate: 50% -50%;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.vnl26-un_merit02_pointFlow_item:last-child .vnl26-un_merit02_pointFlow_img::after {
  display: none;
}
.vnl26-un_merit02_pointFlow_img img {
  width: 100%;
}

.vnl26-un_merit02_pointFlow_text {
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit02_btn {
  display: flex;
  margin: 2rem auto 0;
  padding: 0.75rem 1.25rem;
  width: auto;
  max-width: 18rem;
}

.vnl26-un_merit02_btn_txt {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit02_btn_icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background-color: currentColor;

  -webkit-mask: url(../../assets/img/common/icon_arrow_right.svg) no-repeat center/contain;

          mask: url(../../assets/img/common/icon_arrow_right.svg) no-repeat center/contain;
}

/* ---- merit_point 共通 ---- */
.vnl26-un_merit_pointBox {
  margin-top: 3rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-static-red);

  padding-block: 2.5rem 2rem;
}

.vnl26-un_merit_pointBox_header {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 0.75rem;
}

.vnl26-un_merit_pointBox_header_note {
  margin-top: 1rem;

  padding-inline: 0.75rem;
}

.vnl26-un_merit_pointBox_label {
  position: relative;
  margin: -3.5rem auto 1.375rem;
  padding: 0.1875rem 1.25rem 0.1875rem;
  border-radius: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 7.5rem;
  min-height: 1.75rem;
  background-color: var(--vnl26-color-attention);
  text-align: center;
  letter-spacing: -0.04em;
  color: var(--vnl26-color-white);
  font-family: var(--vnl26-font-family-en);
  font-size: 1.125rem;
  font-weight: 500;
}
.vnl26-un_merit_pointBox_label::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  border-width: 0.4375rem 0.375rem 0;
  border-style: solid;
  border-color: var(--vnl26-color-attention) transparent transparent;
  transform: translateX(-50%);
}

.vnl26-un_merit_pointBox_labelNum {
  display: inline-block;
  margin-top: -0.5em;
  margin-left: 0.125rem;
  font-family: var(--vnl26-font-family-en);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
}
.vnl26-un_merit_pointBox_labelNum.vnl26-un_merit_pointBox_labelNum__03 {
  position: relative;
  top: -0.08em;
  font-size: 1.75rem;
}

.vnl26-un_merit_pointBox_ttl {
  margin: 0 -0.5rem 0.5rem;
  text-align: center;
  color: var(--vnl26-color-attention);
  font-family: var(--vnl26-font-family-mincho);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}

.vnl26-un_merit_pointBox_lead {
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  line-height: 1.8;
}

.vnl26-un_merit_pointBox_inner {
  padding: 1rem 0.75rem 0;
}

.vnl26-un_merit_pointBox_subTtl {
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
.vnl26-un_merit_pointBox_subTtl.vnl26-un_merit_pointBox_subTtl__lg {
  font-size: 1.125rem;
}

.vnl26-un_merit_pointBox_products {
  overflow: hidden;
  margin-top: 1rem;
  border-radius: 0.125rem;
}

.vnl26-un_merit_pointBox_productCard_list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);
  gap: 0.125rem;
}

.vnl26-un_merit_pointBox_productCard {
  display: grid;
  padding: 0.5rem;
  border-radius: 0.25rem;
  min-width: 0;
  background-color: var(--vnl26-color-white);
  text-align: center;

  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0.375rem;
}

.vnl26-un_merit_pointBox_productCard_img {
  overflow: hidden;
  margin: 0 auto;
  border-radius: 0.125rem;
  width: 5.625rem;
  height: 5.625rem;
}
.vnl26-un_merit_pointBox_productCard_img img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

.vnl26-un_merit_pointBox_productCard_name {
  color: var(--vnl26-color-txt);
  font-size: 0.75rem;
  line-height: 1.4;
}

.vnl26-un_merit_pointBox_productCard_stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vnl26-color-attention);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;

  -moz-column-gap: 0.125rem;

       column-gap: 0.125rem;
}

.vnl26-un_merit_pointBox_productCard_stampNum {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  padding: 0 0 0.1em 0;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--vnl26-color-attention);
  color: var(--vnl26-color-white);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;

  font-variant-numeric: tabular-nums;
}

.vnl26-un_merit_pointBox_productCard_stampNum_txt {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.vnl26-un_merit_pointBox_total {
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-white);
}

.vnl26-un_merit_pointBox_total_label {
  display: flex;
  align-items: center;
  flex-direction: column;

  row-gap: 0.5rem;
}

.vnl26-un_merit_pointBox_total_labelSub {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit_pointBox_total_labelMain {
  display: flex;
  align-items: center;
  color: var(--vnl26-color-attention);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit_pointBox_total_valueNum {
  display: inline-grid;
  flex-shrink: 0;
  padding-bottom: 0.05em;
  border-radius: 50%;
  width: 1.16em;
  height: 1.16em;
  background-color: var(--vnl26-color-attention);
  color: var(--vnl26-color-white);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;

  place-content: center;
  margin-inline: 0.25rem 0.125rem;
}

.vnl26-un_merit_pointBox_captionList {
  margin-top: 0.625rem;
}

.vnl26-un_merit_pointBox_note {
  margin-top: 0.375rem;
  color: var(--vnl26-color-txt_light);
  font-size: 0.75rem;
  line-height: 1.6;
}

.vnl26-un_merit_pointStamp {
  margin-top: 2rem;
}

.vnl26-un_merit_pointBox_accordion .vnl26-bl_accordion_panel_inner {
  margin-inline: 0.75rem;
}

.vnl26-un_merit_pointBox_accordion_btn {
  padding: 1.125rem 0.5rem;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
.vnl26-un_merit_pointBox_accordion_btn::-webkit-details-marker {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .vnl26-un_merit_pointBox_accordion_btn:where(:-webkit-any-link, :enabled, summary):hover {
    -webkit-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--vnl26-color-txt_hover);
  }
  .vnl26-un_merit_pointBox_accordion_btn:where(:-moz-any-link, :enabled, summary):hover {
    -moz-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--vnl26-color-txt_hover);
  }
  .vnl26-un_merit_pointBox_accordion_btn:where(:any-link, :enabled, summary):hover {
    transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--vnl26-color-txt_hover);
  }
}

.vnl26-un_merit_pointBox_accordion_icon {
  width: 0.625rem;
  height: 0.625rem;
}

.vnl26-un_merit_pointBox_stampList {
  display: flex;
  flex-direction: column;

  row-gap: 0.375rem;
}

.vnl26-un_merit_pointBox_stampItem {
  padding: 1rem 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-bg_beige_light);
}
.vnl26-un_merit_pointBox_stampItem:has(.vnl26-un_merit_stampIcon) {
  margin-top: 1.875rem;
}
.vnl26-un_merit_pointBox_stampItem:has(.vnl26-un_merit_stampIcon) + .vnl26-un_merit_pointBox_stampItem {
  margin-top: 2.625rem;
}

.vnl26-un_merit_pointBox_stampItem_ttl {
  margin-bottom: 0.5rem;
  padding-bottom: 0.4375rem;
  border-bottom: solid 1px var(--vnl26-color-line_light);
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit_pointBox_stampIcon {
  margin: -2.75rem auto 0.75rem;
}

.vnl26-un_merit_pointBox_stamp_bulletList {
  gap: 0;
}

.vnl26-un_merit_pointBox_bulletList {
  margin-top: 0.75rem;
}

.vnl26-un_merit_infoBox_ttl {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: solid 1px var(--vnl26-color-line_light);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit_infoBox {
  padding: 1.25rem 0.75rem 1.5rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-white);
}
.vnl26-un_merit_infoBox:is(.vnl26-un_merit_txt + *) {
  margin-top: 1rem;
}

.vnl26-un_merit_infoBox_img.vnl26-un_merit_infoBox_img__stampRally {
  margin: -1rem -0.75rem 0 0;
}
.vnl26-un_merit_infoBox_img img {
  width: 100%;
}

.vnl26-un_merit_infoBox_countList {
  display: grid;

  --_count-list-gap: 1.5rem;
  row-gap: var(--_count-list-gap);
}

.vnl26-un_merit_infoBox_countItem {
  display: grid;
  align-items: center;
  position: relative;
  padding: 0.5rem 0.625rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-bg_beige);

  grid-template-areas: "step img name bonus-icon";
  grid-template-columns: 5.5ch 3rem 1fr 3.5rem;
}
.vnl26-un_merit_infoBox_countItem::after {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(var(--_count-list-gap) * -0.5);
  left: 50%;
  width: 1.125rem;
  height: 0.5625rem;
  background-color: var(--vnl26-color-brown_new_light);

  translate: -50% 50%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.vnl26-un_merit_infoBox_countItem:last-child::after {
  display: none;
}
.vnl26-un_merit_infoBox_countItem.vnl26-un_merit_infoBox_countItem__continue .vnl26-un_merit_infoBox_countItem_step::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -0.1875rem;
  left: -0.6875rem;
  width: 3.5rem;
  height: 2.375rem;
  background-image: url(../../assets/img/member/subscription/icon_count_continue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  translate: 0 -100%;
}
.vnl26-un_merit_infoBox_countItem.vnl26-un_merit_infoBox_countItem__bonus {
  background-color: var(--vnl26-color-static-red);
}

.vnl26-un_merit_infoBox_countItem_step {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit_infoBox_countItem_img {
  overflow: hidden;
  border-radius: 0.25rem;
  width: 3rem;
  height: 3rem;
}
.vnl26-un_merit_infoBox_countItem_img img {
  width: 100%;
}

.vnl26-un_merit_infoBox_countItem_name {
  padding-left: 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}

/* ---- merit_pointPresent 共通 ---- */
.vnl26-un_merit02_presents {
  display: flex;
  flex-direction: column;

  gap: 0.75rem;
}

.vnl26-un_merit_pointPresentBox {
  display: flex;
  align-items: center;

  gap: 0.75rem;
}

.vnl26-un_merit_pointPresentBox_imgArea {
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border-radius: 0.25rem;
  width: 5rem;
  height: 5rem;
}
.vnl26-un_merit_pointPresentBox_imgArea img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

.vnl26-un_merit_pointPresentBox_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  padding: 0.125rem 0.375rem;
  border-radius: 0.625rem;
  transform: translateX(-50%);
  background-color: var(--vnl26-color-attention);
  white-space: nowrap;
  color: var(--vnl26-color-white);
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.2;
}

.vnl26-un_merit_pointPresentBox_name {
  flex: 1;
  min-width: 0;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}

/* merit02 固有 */
.vnl26-un_merit02_contact {
  margin-top: 2rem;
  background-color: var(--vnl26-color-white);
}

.vnl26-un_merit_pointBox_contactInfo {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-white);
  color: var(--vnl26-color-txt);
}

.vnl26-un_merit_pointBox_contactInfo_ttl {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit_pointBox_contactInfo_txt {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.vnl26-un_merit_pointBox_contactInfo_ttl + .vnl26-un_merit_pointBox_contactInfo_txt {
  margin-top: 0.375rem;
}
.vnl26-un_merit_pointBox_contactInfo_desc + .vnl26-un_merit_pointBox_contactInfo_txt {
  margin-top: 1.25rem;
}

.vnl26-un_merit_pointBox_contactInfo_descGroup {
  display: grid;
}

.vnl26-un_merit_pointBox_contactInfo_desc {
  margin-top: 1rem;
  padding: 1rem;
  border: solid 1px var(--vnl26-color-line_light);
  border-radius: 0.375rem;
}
.vnl26-un_merit_pointBox_contactInfo_desc + .vnl26-un_merit_pointBox_contactInfo_desc {
  margin-top: 0.375rem;
}
.vnl26-un_merit_pointBox_contactInfo_desc .vnl26-el_caption {
  margin-top: 0.5rem;
}

.vnl26-un_merit_pointBox_contactInfo_desc_ttl {
  margin-bottom: 0.375rem;
  padding-left: 1.4em;
  text-indent: -1.4em;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}
.vnl26-un_merit_pointBox_contactInfo_desc_ttl::before {
  content: "";
  display: inline-block;
  margin-right: 0.25rem;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  background-color: var(--vnl26-color-txt);
  vertical-align: middle;

  translate: 0 -0.1em;
}

.vnl26-un_merit_pointBox_contactInfo_desc_list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.6;
  line-height: 1.2;

  row-gap: 0.75rem;
}
.vnl26-un_merit_pointBox_contactInfo_desc_list > li {
  padding-left: 1em;
  text-indent: -1em;
}
.vnl26-un_merit_pointBox_contactInfo_desc_list__sm {
  flex-direction: row;
  flex-wrap: wrap;
  line-height: 1.6;

  -moz-column-gap: 0.25rem;

       column-gap: 0.25rem;
  row-gap: 0;
}
@media (max-width: 767.98px) {
  .vnl26-un_merit_pointBox_contactInfo_desc_list__sm > li {
    min-width: 8.125rem;
  }
}
.vnl26-un_merit_pointBox_contactInfo_desc_ttl + .vnl26-un_merit_pointBox_contactInfo_desc_list {
  margin-top: 0.25rem;
}
.vnl26-un_merit_pointBox_contactInfo_desc_list + .vnl26-el_caption {
  margin-top: 0.25rem;
}

.vnl26-un_merit_deliveryNote {
  margin-top: 1.25rem;
}

.vnl26-un_merit_deliveryNote_ttl {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding-top: 0.75rem;
}
.vnl26-un_merit_deliveryNote_ttl .vnl26-un_merit_deliveryNote_ttl_txt {
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit_deliveryNote_ttlIcon {
  display: block;
  position: relative;
  width: 1.1875rem;
  height: 2.0625rem;
}
.vnl26-un_merit_deliveryNote_ttlIcon::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.1em);
  left: 50%;
  border-radius: 999px;
  width: 2.3799290956rem;
  height: 2px;
  background-color: currentColor;

  translate: -50% -50%;
}
.vnl26-un_merit_deliveryNote_ttlIcon.vnl26-un_merit_deliveryNote_ttlIcon__before {
  -webkit-margin-end: 0.4375rem;
          margin-inline-end: 0.4375rem;
}
.vnl26-un_merit_deliveryNote_ttlIcon.vnl26-un_merit_deliveryNote_ttlIcon__before::before {
  rotate: 67deg;
}
.vnl26-un_merit_deliveryNote_ttlIcon.vnl26-un_merit_deliveryNote_ttlIcon__after {
  -webkit-margin-start: 0.4375rem;
          margin-inline-start: 0.4375rem;
}
.vnl26-un_merit_deliveryNote_ttlIcon.vnl26-un_merit_deliveryNote_ttlIcon__after::before {
  rotate: -67deg;
}

.vnl26-un_merit_deliveryNote_label {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit_deliveryNote_img {
  overflow: hidden;
  border-radius: 0.25rem;
}

/* ---- Tab1: merit03 ---- */
.vnl26-un_merit03_ttl_sub {
  margin-top: 0.25rem;
  text-align: center;
  color: var(--vnl26-color-txt);
  font-family: var(--vnl26-font-family-mincho);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.vnl26-un_merit03_section {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  margin-top: 1rem;
}

.vnl26-un_merit03_normal {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-white);
}

.vnl26-un_merit03_normal_ttl {
  margin-bottom: 0.75rem;
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit03_normal_boxes {
  display: flex;

  gap: 0.5rem;
}

.vnl26-un_merit03_normal_box {
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: column;
  padding: 0.5rem 0.375rem;
  border: 0.0625rem solid var(--vnl26-color-line_light);
  border-radius: 0.25rem;
  min-width: 0;

  gap: 0;
}

.vnl26-un_merit03_normal_box_label {
  text-align: center;
  white-space: nowrap;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit03_normal_box_price {
  display: flex;
  align-items: baseline;

  gap: 0.125rem;
}

.vnl26-un_merit03_normal_box_price_num {
  color: var(--vnl26-color-txt);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit03_normal_box_price_unit {
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit03_normal_note {
  margin-top: 0.5rem;
}

.vnl26-un_merit03_normal_note {
  color: var(--vnl26-color-txt);
  font-size: 0.75rem;
  line-height: 1.6;
}

.vnl26-un_merit03_arrowDown {
  align-self: center;
  border-width: 0.75rem 0.5625rem 0;
  border-style: solid;
  border-color: var(--vnl26-color-attention) transparent transparent;
  width: 0;
  height: 0;
}

.vnl26-un_merit03_regular {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1rem 0.75rem 2rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-static-red);

  gap: 1rem;
}

.vnl26-un_merit03_regular_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem 0.125rem;
  border-radius: 999px;
  min-height: 2.125rem;
  background-color: var(--vnl26-color-attention);
}

.vnl26-un_merit03_regular_badge_txt {
  color: var(--vnl26-color-white);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;

  text-box: trim-both text text;
}

.vnl26-un_merit03_regular_price {
  display: flex;
  align-items: flex-end;
}

.vnl26-un_merit03_regular_price_num {
  width: 2.25rem;
  color: var(--vnl26-color-attention);
}

.vnl26-un_merit03_regular_price_unit {
  color: var(--vnl26-color-attention);
  font-family: var(--vnl26-font-family-mincho);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.6;
}
.vnl26-un_merit03_regular_price_unit::before,
.vnl26-un_merit03_regular_price_unit::after {
  content: "";
  display: block;

  inline-size: 0;
  block-size: 1px;
}
.vnl26-un_merit03_regular_price_unit::before {
  -webkit-margin-after: calc((1 - 1.6) * 0.5em);
          margin-block-end: calc((1 - 1.6) * 0.5em);
}
.vnl26-un_merit03_regular_price_unit::after {
  -webkit-margin-before: calc((1 - 1.6) * 0.5em);
          margin-block-start: calc((1 - 1.6) * 0.5em);
}

.vnl26-un_merit03_text {
  margin-top: 1rem;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  line-height: 1.8;
}

/* ---- Tab1: merit04 ---- */
.vnl26-un_merit04_section {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 1.5rem;
}

.vnl26-un_merit04_icon {
  display: flex;
  overflow: clip;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  border-radius: 50%;
  width: 9.25rem;
  height: 9.25rem;
  background-color: var(--vnl26-color-white);
}
.vnl26-un_merit04_icon img {
  width: 100%;
}

.vnl26-un_merit04_text {
  margin-top: 1.375rem;
  width: 100%;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  line-height: 1.8;
}

/* ---- Tab1: merit05 ---- */
.vnl26-un_merit05_section {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;

  gap: 1.5rem;
}

.vnl26-un_merit05_box {
  padding: 1rem 0.75rem 1.5rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-white);
}
.vnl26-un_merit05_box.vnl26-un_merit05_box__day {
  padding-bottom: 2rem;
}

.vnl26-un_merit05_box_ttl {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit05_cycle {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.5rem;
}

.vnl26-un_merit05_cycle_item {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
}

.vnl26-un_merit05_cycle_or {
  color: var(--vnl26-color-brown_new);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit05_dayGrid {
  display: grid;
  border-top: 0.0625rem solid var(--vnl26-color-line_light);
  border-left: 0.0625rem solid var(--vnl26-color-line_light);

  grid-template-columns: repeat(3, 1fr);
}

.vnl26-un_merit05_dayGrid_cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0.0625rem solid var(--vnl26-color-line_light);
  border-bottom: 0.0625rem solid var(--vnl26-color-line_light);
  height: 3.375rem;
  white-space: nowrap;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit05_timeGrid {
  display: grid;
  border-top: 0.0625rem solid var(--vnl26-color-line_light);
  border-left: 0.0625rem solid var(--vnl26-color-line_light);

  grid-template-columns: repeat(6, 1fr);
}

.vnl26-un_merit05_timeGrid_cell {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0.375rem 0.9375rem;
  border-right: 0.0625rem solid var(--vnl26-color-line_light);
  border-bottom: 0.0625rem solid var(--vnl26-color-line_light);

  gap: 0.25rem;
}
.vnl26-un_merit05_timeGrid_cell:nth-of-type(1) {
  grid-column: 1/3;
}
.vnl26-un_merit05_timeGrid_cell:nth-of-type(2) {
  grid-column: 3/5;
}
.vnl26-un_merit05_timeGrid_cell:nth-of-type(3) {
  grid-column: 5/7;
}
.vnl26-un_merit05_timeGrid_cell:nth-of-type(4) {
  grid-column: 1/4;
  grid-row: 2/3;
}
.vnl26-un_merit05_timeGrid_cell:nth-of-type(5) {
  grid-column: 4/7;
  grid-row: 2/3;
}

.vnl26-un_merit05_timeGrid_cell_icon {
  display: block;
  width: 2rem;
  height: 2rem;
}

.vnl26-un_merit05_timeGrid_cell_label {
  text-align: center;
  white-space: nowrap;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit05_text {
  margin-top: 1rem;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  line-height: 1.8;
}

/* ---- Tab1: merit06 ---- */
.vnl26-un_merit06_lead {
  margin-top: 0.5rem;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  line-height: 1.8;
}

.vnl26-un_merit06_section {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;

  gap: 1rem;
}

.vnl26-un_merit06_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1.5rem 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-white);
}
.vnl26-un_merit06_box.vnl26-un_merit06_box__mypage {
  padding-inline: 1rem;
}

.vnl26-un_merit06_skipImg {
  margin-top: 0.75rem;
}

.vnl26-un_merit06_box_ttlArea {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4375rem;
  border-bottom: solid 1px var(--vnl26-color-line_light);
  width: 100%;

  gap: 0.125rem;
}

.vnl26-un_merit06_box_ttlMain {
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
}

.vnl26-un_merit06_box_ttlCaption {
  display: inline-block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit06_box_divider {
  width: 100%;
  height: 0.0625rem;
  background-color: var(--vnl26-color-line_light);
}

.vnl26-un_merit06_box_lead {
  width: 100%;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  line-height: 1.8;
}

/* -- 変更 flow -- */
.vnl26-un_merit06_flow {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 1.5rem;
  width: 100%;

  gap: 0.125rem;
}

.vnl26-un_merit06_flowState {
  overflow: hidden;
  border-radius: 0.25rem;
  width: 100%;
  background-color: #f7f7f7;
}
.vnl26-un_merit06_flowState.vnl26-un_merit06_flowState__before {
  padding-top: 0.5rem;
}
.vnl26-un_merit06_flowState.vnl26-un_merit06_flowState__before .vnl26-un_merit06_productCell {
  padding: 0 1rem 0.75rem;
}

.vnl26-un_merit06_flowState_label {
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit06_productRow {
  display: flex;
  align-items: stretch;
}

.vnl26-un_merit06_productCell {
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: column;
  padding: 0.5rem 0.75rem 0.75rem;

  gap: 0.5rem;
}

.vnl26-un_merit06_productDivider {
  align-self: stretch;
  flex-shrink: 0;
  width: 1px;
  background-image: linear-gradient(to bottom, var(--vnl26-color-line), var(--vnl26-color-line) 3px, transparent 3px, transparent 6px);
  background-repeat: repeat-y;
  background-position: left top;
  background-size: 1px 6px;

  margin-block: 1.25rem;
}

.vnl26-un_merit06_productCell_status {
  text-align: center;
  white-space: nowrap;
  color: var(--vnl26-color-txt_disabled);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}
.vnl26-un_merit06_productCell_status.vnl26-un_merit06_productCell_status__changed {
  color: var(--vnl26-color-attention);
}

.vnl26-un_merit06_productCell_imgWrap {
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0.1875rem;
  width: 3.5rem;
  height: 3.5rem;
}

.vnl26-un_merit06_productCell_img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

.vnl26-un_merit06_productCell_name {
  width: 100%;
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 0.75rem;
  line-height: 1.4;
}

.vnl26-un_merit06_productCell_info {
  display: flex;
  align-self: flex-start;
  flex-direction: column;

  gap: 0.25rem;
}

.vnl26-un_merit06_productCell_infoRow {
  display: flex;
  align-items: center;

  gap: 0.375rem;
}

.vnl26-un_merit06_productCell_key {
  white-space: nowrap;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit06_productCell_val {
  white-space: nowrap;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}
.vnl26-un_merit06_productCell_val.vnl26-un_merit06_productCell_val__orange {
  color: var(--vnl26-color-attention);
  font-size: 1rem;
}

.vnl26-un_merit06_productCell_val_num {
  font-size: 1rem;
}

.vnl26-un_merit06_productCell_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.375rem 0.25rem;
  border-radius: 0.125rem;
  background-color: var(--vnl26-color-attention);
  white-space: nowrap;
  color: var(--vnl26-color-white);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit06_flowArrow {
  border-width: 0.75rem 0.5625rem 0;
  border-style: solid;
  border-color: var(--vnl26-color-attention) transparent transparent;
  width: 0;
  height: 0;
}

/* -- スキップ flow -- */
.vnl26-un_merit06_skipFlow {
  width: 100%;
}

.vnl26-un_merit06_skipGraph {
  display: flex;
  align-items: center;
  flex-direction: column;

  gap: 0.25rem;
}

.vnl26-un_merit06_skipCards {
  display: flex;
  width: 100%;

  gap: 0.25rem;
}

.vnl26-un_merit06_skipCard {
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: column;
  padding: 0.5rem 0.25rem 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-bg_beige_dark);

  gap: 0.75rem;
}
.vnl26-un_merit06_skipCard.vnl26-un_merit06_skipCard__skip {
  border: 0.0625rem dashed var(--vnl26-color-attention);
  background-color: var(--vnl26-color-static-red);
}

.vnl26-un_merit06_skipCard_img {
  border-radius: 0.1875rem;
  width: 3.25rem;
  height: 3.25rem;

  -o-object-fit: cover;

     object-fit: cover;
}

.vnl26-un_merit06_skipCard_icon {
  width: 2.5rem;
  height: 2.5rem;
}

.vnl26-un_merit06_skipCard_date {
  white-space: nowrap;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.vnl26-un_merit06_skipArrow {
  display: block;
  margin-left: 25%;
  width: 51%;
  height: auto;
}

.vnl26-un_merit06_skipNote {
  margin-top: 0.5rem;
  color: var(--vnl26-color-txt);
  font-size: 1rem;
  line-height: 1.8;
}

/* -- マイページ features -- */
.vnl26-un_merit06_featureList {
  display: grid;
  margin-top: 0.75rem;

  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.vnl26-un_merit06_featureItem {
  display: grid;
  border-radius: 50%;
  width: 5.25rem;
  height: 5.25rem;
  background: linear-gradient(-45deg, #ddc8a4 11.54%, #ffeccc 50%, #ddc8a4 84.62%);
  text-align: center;
  color: var(--vnl26-color-txt);
  font-family: var(--vnl26-font-family-mincho);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;

  place-content: center;
}
.vnl26-un_merit06_featureItem .vnl26-un_merit06_featureItem_txtSm {
  font-size: 0.75rem;
}
.vnl26-un_merit06_featureItem .vnl26-un_merit06_featureItem_txtMd {
  font-size: 0.8125rem;
}
.vnl26-un_merit06_featureItem:nth-of-type(4),
.vnl26-un_merit06_featureItem:nth-of-type(5) {
  padding-top: 0.125rem;
}
.vnl26-un_merit06_featureItem:nth-of-type(7) {
  padding-bottom: 0.3125rem;
}

.vnl26-un_merit06_notes {
  margin-top: 1.5rem;
}
.vnl26-un_merit06_notes .vnl26-el_bulletList {
  gap: 0;
}

/* -- お問い合わせ -- */
.vnl26-un_merit06_contact {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.25rem;
  width: 100%;
  background-color: var(--vnl26-color-white);
}

.vnl26-un_merit06_contact_ttl {
  text-align: center;
  color: var(--vnl26-color-txt);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_merit06_contact_boxes {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;

  gap: 0.375rem;
}

.vnl26-un_merit06_contact_box {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: solid 0.0625rem var(--vnl26-color-line);
  border-radius: 0.25rem;

  gap: 0.375rem;
}

.vnl26-un_merit06_contact_box_head {
  display: flex;
  align-items: flex-start;
  color: var(--vnl26-color-txt);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;

  gap: 0.25rem;
}

.vnl26-un_merit06_contact_box_caption {
  display: flex;
  align-items: center;
  color: var(--vnl26-color-txt);
  font-size: 0.75rem;
  line-height: 1.4;

  gap: 0.25rem;
}

/* ---- Tab2: 対象アイテム ---- */
.vnl26-un_productsSection {
  margin-top: 1.5rem;
}
.vnl26-un_productsSection + .vnl26-un_productsSection {
  margin-top: 2.5rem;
}

.vnl26-un_productsSection_ttl {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.5rem;
}

.vnl26-un_productsSection_ttl_txt {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.vnl26-un_productsSection_ttl_line {
  display: inline-block;
  flex: 1;
  position: relative;
  max-width: 1.5rem;
  height: 1px;
  background-color: var(--vnl26-color-brown_new_light);
}
.vnl26-un_productsSection_ttl_line::before,
.vnl26-un_productsSection_ttl_line::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background-color: var(--vnl26-color-brown_new_light);

  translate: 0 -50%;
}
.vnl26-un_productsSection_ttl_line::before {
  left: -3px;
}
.vnl26-un_productsSection_ttl_line::after {
  right: -3px;
}
.vnl26-un_productsSection_ttl_line.vnl26-un_productsSection_ttl_line__before::after {
  display: none;
}
.vnl26-un_productsSection_ttl_line.vnl26-un_productsSection_ttl_line__after::before {
  display: none;
}

.vnl26-un_productsCard_list {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;

  gap: 0.5rem;
}

.vnl26-un_productsCard {
  padding: 1rem 0.625rem;
  border: 1px solid var(--vnl26-color-line_3_light);
  border-radius: 0.25rem;
  background-color: var(--vnl26-color-white);
}

.vnl26-un_productsCard_header {
  display: flex;
  margin-bottom: 0.375rem;

  gap: 0.25rem;
}

.vnl26-un_productsCard_name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
.vnl26-un_productsCard_name.vnl26-un_productsCard_name__keep-all {
  word-break: keep-all;
}

.vnl26-un_productsCard_icon {
  align-self: flex-start;
  flex-shrink: 0;
  margin: -0.3125rem 0 0 auto;
  width: 3.5625rem;
  height: 3.625rem;
  background-size: 100% auto;
}
.vnl26-un_productsCard_icon .vnl26-un_merit_stampIcon_num {
  bottom: 0.6875rem;
}

.vnl26-un_productsCard_body {
  display: flex;

  gap: 0.75rem;
}

.vnl26-un_productsCard_img {
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0.125rem;
  width: 6.25rem;
  height: 6.25rem;
}
.vnl26-un_productsCard_img img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

.vnl26-un_productsCard_txt {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.4;
}

.vnl26-un_productsCard_subscription {
  display: flex;
  align-items: flex-end;
  color: var(--vnl26-color-attention);

  -moz-column-gap: 0.125rem;

       column-gap: 0.125rem;
}

.vnl26-un_productsCard_subscription_tag {
  align-self: center;
  flex-shrink: 0;
  width: 2.8125rem;
}

.vnl26-un_productsCard_subscription_price {
  position: relative;
  bottom: -0.0625rem;
}

.vnl26-un_productsCard_subscription_priceLabel {
  margin-bottom: 0.125rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.vnl26-un_productsCard_subscription_priceTxt {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}
.vnl26-un_productsCard_subscription_priceTxt::before,
.vnl26-un_productsCard_subscription_priceTxt::after {
  content: "";
  display: block;

  inline-size: 0;
  block-size: 1px;
}
.vnl26-un_productsCard_subscription_priceTxt::before {
  -webkit-margin-after: calc((1 - 1.2) * 0.5em);
          margin-block-end: calc((1 - 1.2) * 0.5em);
}
.vnl26-un_productsCard_subscription_priceTxt::after {
  -webkit-margin-before: calc((1 - 1.2) * 0.5em);
          margin-block-start: calc((1 - 1.2) * 0.5em);
}

.vnl26-un_productsCard_subscription_priceNum {
  font-size: 1.125rem;
  font-weight: 600;
}

.vnl26-un_productsCard_btn {
  margin-top: 0.75rem;
  width: auto;
  min-height: 2.75rem;

  --_vnl26-btn-icon-size: 1.5rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
.vnl26-un_productsCard_btn .vnl26-el_btn_txt {
  font-size: 0.875rem;
}
.vnl26-un_productsCard_btn.vnl26-el_btn__subscription {
  padding: 0.125rem 0.75rem 0.125rem 0.625rem;
}
.vnl26-un_productsCard_btn.vnl26-el_btn__subscription .vnl26-el_btn_txt {
  word-break: keep-all;
}

.vnl26-un_page_bottom {
  position: relative;
  z-index: 1;
  background-color: var(--vnl26-color-white);

  padding-block: 3rem 4.5rem;
}
@media (min-width: 768px) {
  .vnl26-un_page_bottom {
    max-width: 26.25rem;

    padding-block: 4.5rem 6.5rem;
    margin-inline: auto;
  }
}
.vnl26-un_page_bottom .vnl26-ly_page_LinkList {
  margin-top: 0;
}