/* ----------------------------------------------------------------
    Toggle table (.fn-products-toggle-table[-*])
----------------------------------------------------------------- */
/* .fn-products-toggle-table
----------------------------------------------- */
.fn-products-toggle-table_content.is-hidden {
  display: none;
}

/* ----------------------------------------------------------------
    Simulation (.js-products-simulation[-*])
----------------------------------------------------------------- */
/* .fn-products-simulation-boxEach
----------------------------------------------- */
.fn-products-simulation-boxEach.is-hidden {
  display: none;
}

/* .fn-products-simulation-noteList
----------------------------------------------- */
.fn-products-simulation-noteList.is-hidden {
  display: none;
}

/* .products-simulation-box
----------------------------------------------- */
.products-simulation-box {
  margin: var(--acq-spacing-lg) auto;
  padding: var(--acq-spacing-lg);
  background-color: var(--acq-color-white);
  border-radius: var(--acq-rounded-lg);
  text-align: center;
}
.products-simulation-box > :first-child {
  margin-top: 0;
}
.products-simulation-box > :last-child {
  margin-bottom: 0;
}
.products-simulation-box_hdg {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 22px;
  font-size: var(--acq-font-size-xl);
}

/* .products-simulation-list-price
----------------------------------------------- */
.products-simulation-list-price_item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin-bottom: 0;
}
.products-simulation-list-price_title {
  font-weight: bold;
  font-size: var(--acq-font-size-md);
}
.products-simulation-list-price_text {
  font-weight: bold;
  font-size: var(--acq-font-size-md);
}
.products-simulation-list-price_text.-price {
  font-size: var(--acq-font-size-xl);
  color: var(--acq-color-highlight);
}

/* .products-simulation-checkbox
----------------------------------------------- */
.products-simulation-checkbox {
  --icon-size: 20px;
  display: inline-flex;
  position: relative;
}
.products-simulation-checkbox_item {
  -webkit-appearance: none;
  appearance: none;
  height: 1px;
  left: 0.5em;
  opacity: 0;
  position: absolute;
  top: 0.5em;
  width: 1px;
}
.products-simulation-checkbox_item:checked + .products-simulation-checkbox_text::after {
  opacity: 1;
  background-color: var(--acq-color-white);
}
.products-simulation-checkbox_item:checked + .products-simulation-checkbox_text::before {
  background-color: var(--acq-color-primary);
}
.products-simulation-checkbox_item:focus-visible + .products-simulation-checkbox_text::before {
  outline: 2px solid #000;
}
.products-simulation-checkbox_text {
  padding-left: 28px;
  position: relative;
  display: block;
}
.products-simulation-checkbox_text::before, .products-simulation-checkbox_text::after {
  display: block;
  content: "";
  position: absolute;
}
.products-simulation-checkbox_text::before {
  background-color: var(--acq-color-beige);
  left: 0;
  top: 0.2em;
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: var(--acq-rounded-sm);
}
.products-simulation-checkbox_text::after {
  -webkit-mask: url("/common_a/img/acquisition/general/mask/check.svg") no-repeat center/15px;
  mask: url("/common_a/img/acquisition/general/mask/check.svg") no-repeat center/15px;
  left: 0;
  opacity: 0;
  top: 0.2em;
  width: var(--icon-size);
  height: var(--icon-size);
}

/* .products-simulation-select
----------------------------------------------- */
.products-simulation-select {
  --icon-size: 12px;
  position: relative;
  width: 100%;
}
.products-simulation-select::after {
  display: block;
  content: "";
  -webkit-mask: url("/common_a/img/acquisition/general/mask/angle-bottom.svg") no-repeat center/var(--icon-size);
  mask: url("/common_a/img/acquisition/general/mask/angle-bottom.svg") no-repeat center/var(--icon-size);
  right: 0.3em;
  position: absolute;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: var(--acq-color-font);
  top: 50%;
  transform: translateY(-50%);
}
.products-simulation-select_item {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  display: block;
  padding: 0 20px 0 8px;
  background-color: var(--acq-color-white);
  color: var(--acq-color-font);
  border: 1px solid var(--acq-color-font);
}
@media only screen and (min-width: 768px) {
  .products-simulation-select {
    max-width: 400px;
  }
}

/* ----------------------------------------------------------------
    List (.products-list[-*])
----------------------------------------------------------------- */
/* .products-list-feature
----------------------------------------------- */
.products-list-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto var(--acq-spacing-md);
}
.products-list-feature:where(.-col2-pc) {
  grid-template-columns: repeat(2, 1fr);
}
.products-list-feature_item {
  position: relative;
  padding-top: 34px;
}
.products-list-feature_item::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 20px);
  margin: auto;
  width: 41px;
  height: 51px;
  background: url("/common_a/img/acquisition/general/icon/pin.svg") no-repeat;
}
.products-list-feature_inner {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  height: 100%;
  padding: 32px 16px;
  background-color: var(--acq-color-white);
  border: solid 1px var(--acq-color-beige);
  border-radius: var(--acq-rounded-lg);
}
.products-list-feature_hdg {
  font-size: var(--acq-font-size-xl);
}
.products-list-feature_img {
  text-align: center;
}
.products-list-feature_hdg + .products-list-feature_text {
  margin-top: -32px;
}
.products-list-feature_text > :first-child {
  margin-top: 0;
}
.products-list-feature_text > :last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .products-list-feature {
    grid-template-columns: 1fr;
  }
  .products-list-feature_inner {
    padding-top: 32px;
    row-gap: 16px;
  }
  .products-list-feature_hdg {
    text-align: center;
    min-height: auto;
  }
}

/* .products-list-support
----------------------------------------------- */
.products-list-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--acq-gutter);
  margin-bottom: var(--acq-spacing-md);
}
.products-list-support_item {
  padding: 32px 24px;
  border: 1px solid var(--acq-color-beige);
  border-radius: var(--acq-rounded-md);
  background-color: var(--acq-color-white);
}
.products-list-support_item > :first-child {
  margin-top: 0;
}
.products-list-support_item > :last-child {
  margin-bottom: 0;
}
.products-list-support_hdg {
  margin-bottom: var(--acq-spacing-md);
  font-size: var(--acq-font-size-xl);
  font-weight: var(--acq-font-weight-bold);
  text-align: center;
}
.products-list-support_text {
  margin-bottom: var(--acq-spacing-md);
}
.products-list-support_text > :first-child {
  margin-top: 0;
}
.products-list-support_text > :last-child {
  margin-bottom: 0;
}
.products-list-support_img {
  margin-bottom: var(--acq-spacing-xs);
  text-align: center;
}
.products-list-support_label {
  display: block;
  padding: 4px 16px;
  background-color: var(--acq-color-bg-gray);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto var(--acq-spacing-2xs);
  border-radius: 999em;
  color: var(--acq-color-primary);
  font-weight: var(--acq-font-weight-bold);
  font-size: var(--acq-font-size-xs);
}
.products-list-support.-col2-pc {
  grid-template-columns: 1fr 1fr;
  gap: var(--acq-spacing-sm);
  max-width: var(--acq-width-content-sm);
  margin: 0 auto var(--acq-spacing-md);
}
.products-list-support.-align-text-end .products-list-support_item {
  display: flex;
  flex-direction: column;
}
.products-list-support.-align-text-end .products-list-support_text {
  flex: 1;
}
.products-list-support.-flow {
  --gutter: 48px;
  gap: var(--gutter);
}
.products-list-support.-flow .products-list-support_item {
  position: relative;
}
.products-list-support.-flow .products-list-support_item:not(:last-child)::after {
  display: block;
  content: "";
  position: absolute;
  right: calc(var(--gutter) / 2 * -1);
  bottom: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 12px;
  border-color: transparent transparent transparent var(--acq-color-primary);
  transform: translate(50%, 50%);
}
@media only screen and (max-width: 767px) {
  .products-list-support {
    grid-template-columns: auto;
  }
  .products-list-support_hdg {
    margin-bottom: var(--acq-spacing-sm);
  }
  .products-list-support_text {
    margin-bottom: var(--acq-spacing-sm);
  }
  .products-list-support .acq-btn-modal {
    max-width: 240px;
  }
  .products-list-support.-col2-pc {
    grid-template-columns: auto;
  }
  .products-list-support.-flow {
    --gutter: 48px;
    gap: var(--gutter);
  }
  .products-list-support.-flow .products-list-support_item:not(:last-child)::after {
    right: 50%;
    bottom: calc(var(--gutter) / 2 * -1);
    border-width: 12px 20px 0;
    border-color: var(--acq-color-primary) transparent transparent transparent;
  }
}

/* .products-list-menu
----------------------------------------------- */
.products-list-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin-bottom: var(--acq-spacing-md);
}
.products-list-menu_item > summary {
  display: contents;
}
.products-list-menu_title {
  display: block;
  margin-bottom: var(--acq-spacing-sm);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--acq-color-beige);
  font-size: var(--acq-font-size-lg);
  font-weight: var(--acq-font-weight-bold);
}
.products-list-menu_content > * {
  margin-bottom: var(--acq-spacing-sm);
}
.products-list-menu_content > :first-child {
  margin-top: 0;
}
.products-list-menu_content > :last-child {
  margin-bottom: 0;
}
.products-list-menu_box {
  padding: 12px;
  background-color: var(--acq-color-bg-beige);
  border-radius: var(--acq-rounded-md);
}
.products-list-menu_box > :first-child {
  margin-top: 0;
}
.products-list-menu_box > :last-child {
  margin-bottom: 0;
}
.products-list-menu_box-list {
  display: grid;
  row-gap: 4px;
}
.products-list-menu_box-list > li {
  position: relative;
  padding-left: 24px;
}
.products-list-menu_box-list > li::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.7em;
  left: 10px;
  width: 4px;
  height: 4px;
  background-color: var(--acq-color-font);
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .products-list-menu {
    grid-template-columns: auto;
    gap: 16px 0;
  }
  .products-list-menu_item {
    --padding-block: 24px;
    --padding-inline: 40px;
    position: relative;
    background-color: var(--acq-color-white);
    border: 1px solid var(--acq-color-beige);
    border-radius: var(--acq-rounded-lg);
    box-shadow: var(--acq-shadow-toggle);
    overflow: hidden;
  }
  .products-list-menu_item > summary {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    padding: var(--padding-block) calc(var(--padding-inline) + 48px) var(--padding-block) var(--padding-inline);
    transition: background-color var(--acq-transition-duration) var(--acq-transition-tf);
  }
  .products-list-menu_item > summary::before, .products-list-menu_item > summary::after {
    display: block;
    content: "";
    position: absolute;
    inset: 0 calc(var(--padding-inline) + 5px) 0 auto;
    z-index: var(--acq-z-index-layer1);
    width: 14px;
    height: 2px;
    margin: auto;
    background-color: var(--acq-color-white);
    border-radius: 2px;
  }
  .products-list-menu_item > summary::after {
    transform: rotate(90deg);
  }
  .products-list-menu_item > summary:is(:hover, :active, :focus-visible) {
    background-color: var(--acq-color-bg-gray);
  }
  .products-list-menu_item[open] > summary::after {
    opacity: 0;
  }
  .products-list-menu_title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .products-list-menu_title::before {
    display: block;
    content: "";
    position: absolute;
    inset: 0 var(--padding-inline) 0 auto;
    width: 24px;
    height: 24px;
    margin: auto;
    background-color: var(--acq-color-primary);
    border-radius: 50%;
  }
  .products-list-menu_content {
    padding: var(--padding-block) var(--padding-inline);
    border-top: 1px solid var(--acq-color-beige);
  }
}

/* .products-list-voice
----------------------------------------------- */
.products-list-voice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--acq-gutter);
  margin-bottom: var(--acq-spacing-md);
}
.products-list-voice_item {
  padding: 24px;
  background-color: var(--acq-color-bg-beige);
  border-radius: var(--acq-rounded-lg);
}
.products-list-voice_content {
  margin-bottom: 24px;
}
.products-list-voice_content > :first-child {
  margin-top: 0;
}
.products-list-voice_content > :last-child {
  margin-bottom: 0;
}
.products-list-voice_hdg {
  margin-bottom: 16px;
  font-size: var(--acq-font-size-lg);
}
.products-list-voice_meta {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  column-gap: 24px;
}
.products-list-voice_name {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 0;
}
.products-list-voice_name-main {
  font-weight: var(--acq-font-weight-bold);
}
.products-list-voice_name-sub {
  font-size: var(--acq-font-size-xs);
}
.products-list-voice.-color-02 .products-list-voice_item {
  background-color: var(--acq-color-white);
}
@media only screen and (max-width: 767px) {
  .products-list-voice {
    grid-template-columns: auto;
  }
}

/* .products-list-flow
----------------------------------------------- */
.products-list-flow_item {
  position: relative;
  padding-left: 104px;
}
@media only screen and (max-width: 767px) {
  .products-list-flow_item {
    padding-left: 72px;
  }
}
.products-list-flow_item.-line, .products-list-flow_item:not(:last-child) {
  padding-bottom: var(--acq-spacing-xs);
}
.products-list-flow_item.-line::before, .products-list-flow_item:not(:last-child)::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 38px;
  width: 4px;
  background: #fbc3c3;
}
@media only screen and (max-width: 767px) {
  .products-list-flow_item.-line::before, .products-list-flow_item:not(:last-child)::before {
    left: 36px;
  }
}
.products-list-flow_item.-color-b::before {
  background: #bfdbf7;
}
.products-list-flow_img {
  position: absolute;
  left: 0;
  width: 80px;
  height: 80px;
}
@media only screen and (max-width: 767px) {
  .products-list-flow_img {
    left: 18px;
    width: 40px;
    height: 40px;
  }
}
.products-list-flow_img + .products-list-flow_hdg {
  padding-top: 0;
}
.products-list-flow_hdg {
  margin: 0 0 var(--acq-spacing-sm);
  padding-top: var(--acq-spacing-2xs);
  font-size: var(--acq-font-size-lg);
  color: var(--acq-color-primary);
  line-height: var(--acq-line-height);
}
.products-list-flow_content {
  position: relative;
  padding: 0 0 0 var(--acq-spacing-md);
}
.products-list-flow_content > :first-child {
  margin-top: 0;
}
.products-list-flow_content > :last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .products-list-flow_content {
    padding-left: var(--acq-spacing-lg);
  }
}
.products-list-flow_content > * {
  margin-bottom: 8px;
}
.products-list-flow_content > :last-child {
  margin-bottom: 0;
}
.products-list-flow_title {
  margin: 0 0 10px;
}
.products-list-flow_title_mark {
  position: absolute;
  top: 2px;
  left: 0;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  background: var(--acq-color-white);
  color: var(--acq-color-primary);
  border: 2px solid var(--acq-color-primary);
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
}
.products-list-flow_title_txt {
  font-weight: 700;
  font-size: var(--acq-font-size-md);
}

/* .products-list-link
----------------------------------------------- */
.products-list-link {
  --padding-inline: 24px;
  position: relative;
  display: inline-block;
  padding-right: var(--padding-inline);
  text-decoration: none;
  color: var(--acq-color-white);
}
.products-list-link::before, .products-list-link::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 16px;
  height: 16px;
  margin: auto;
  transition: background-color var(--acq-transition-duration) var(--acq-transition-tf);
}
.products-list-link::before {
  background-color: var(--acq-color-highlight);
  border-radius: 50%;
}
.products-list-link::after {
  background-color: var(--acq-color-white);
  -webkit-mask: url("/common_a/img/acquisition/general/mask/angle-right.svg") no-repeat center/10px;
  mask: url("/common_a/img/acquisition/general/mask/angle-right.svg") no-repeat center/10px;
}
.products-list-link:is(:hover, :active, :focus-visible)::before {
  background-color: var(--acq-color-highlight-hover);
}

/* ----------------------------------------------------------------
    Tab (.products-tab[-*])
----------------------------------------------------------------- */
/* .products-tab-carousel
----------------------------------------------- */
.products-tab-carousel {
  margin-bottom: var(--acq-spacing-md);
}
.products-tab-carousel_pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 10px;
  max-width: var(--acq-width-content-sm);
  margin: 0 auto var(--acq-spacing-lg);
}
.products-tab-carousel_pagination button {
  --padding-inline: 16px;
  --size-icon: 16px;
  position: relative;
  background-color: var(--acq-color-white);
  padding: 4px var(--padding-inline);
  border: 1px solid var(--acq-color-beige);
  border-radius: 100vw;
  font-weight: var(--acq-font-weight-bold);
  transition: all var(--acq-transition-duration) var(--acq-transition-tf);
}
.products-tab-carousel_pagination button::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0 auto 0 var(--padding-inline);
  margin: auto;
  width: var(--size-icon);
  height: var(--size-icon);
  background-color: var(--acq-color-white);
  -webkit-mask: url("/common_a/img/acquisition/general/mask/check.svg") no-repeat center;
  mask: url("/common_a/img/acquisition/general/mask/check.svg") no-repeat center;
  opacity: 0;
  transition: opacity var(--acq-transition-duration) var(--acq-transition-tf);
}
.products-tab-carousel_pagination button:is(:hover, :active, :focus-visible) {
  background-color: var(--acq-color-bg-gray);
}
.products-tab-carousel_pagination button[aria-selected=true] {
  padding-left: calc(var(--padding-inline) + var(--size-icon) + 4px);
  background-color: var(--acq-color-primary);
  border-color: var(--acq-color-primary);
  color: var(--acq-color-white);
}
.products-tab-carousel_pagination button[aria-selected=true]::before {
  opacity: 1;
}
.products-tab-carousel_pagination.-is-none {
  display: none;
}
.products-tab-carousel_track {
  overflow-x: hidden;
}
:where(.acq-content-area_inner.-full) .products-tab-carousel_track {
  margin-left: calc(-1 * var(--acq-gutter-content));
  margin-right: calc(-1 * var(--acq-gutter-content));
}
:where(.js-unavailable) .products-tab-carousel_track {
  overflow: auto;
}
.products-tab-carousel_list {
  display: flex;
  margin-bottom: 0;
}
.products-tab-carousel_item {
  flex-shrink: 0;
  width: min(var(--acq-width-content-sm) + 24px, 100% - 64px);
  padding: 0 12px;
}
.products-tab-carousel_box {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  column-gap: 32px;
  height: 100%;
  padding: 48px;
  background-color: var(--acq-color-white);
  border-radius: var(--acq-rounded-lg);
}
.products-tab-carousel_box-content {
  flex: 1;
  min-width: 50%;
}
.products-tab-carousel_box-content > :first-child {
  margin-top: 0;
}
.products-tab-carousel_box-content > :last-child {
  margin-bottom: 0;
}
.products-tab-carousel_box-catch {
  margin-bottom: 24px;
  font-size: var(--acq-font-size-xl);
}
.products-tab-carousel.-color-02 .products-tab-carousel_box {
  background-color: var(--acq-color-bg-beige);
}
@media only screen and (max-width: 767px) {
  .products-tab-carousel_pagination {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-right: calc(-1 * var(--acq-gutter-content));
    overflow-x: auto;
  }
  .products-tab-carousel_pagination > li {
    flex: 0 0 auto;
  }
  .products-tab-carousel_pagination > li:last-child {
    margin-right: var(--acq-gutter-content);
  }
  .products-tab-carousel_item {
    width: 100%;
    max-width: 100%;
  }
  .products-tab-carousel_box {
    flex-direction: column-reverse;
    row-gap: 16px;
  }
  .products-tab-carousel_box-content {
    min-width: auto;
  }
}

/* ----------------------------------------------------------------
    Table (.products-table[-*])
----------------------------------------------------------------- */
/* .products-table-plan
----------------------------------------------- */
.products-table-plan {
  display: none;
  margin-bottom: var(--acq-spacing-lg);
}
.products-table-plan > :first-child {
  margin-top: 0;
}
.products-table-plan > :last-child {
  margin-bottom: 0;
}
.products-table-plan:has(.products-table-plan_recommend) {
  margin-top: 96px;
}
@media only screen and (max-width: 767px) {
  .products-table-plan:has(.products-table-plan_recommend) {
    margin-top: 0;
  }
}
.products-table-plan.-col-03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.products-table-plan.-col-03 .products-table-plan_item:has(.products-table-plan_recommend) {
  overflow-x: initial;
}
.products-table-plan.-col-03 .products-table-plan_item:has(.products-table-plan_recommend) thead th:has(.products-table-plan_recommend) {
  border-bottom: 1px solid var(--acq-color-beige);
}
.products-table-plan.-col-03 .products-table-plan_item:has(.products-table-plan_recommend) tbody {
  border-right: 3px solid var(--acq-color-highlight);
  border-left: 3px solid var(--acq-color-highlight);
  border-bottom: 3px solid var(--acq-color-highlight);
}
@media only screen and (max-width: 767px) {
  .products-table-plan.-sp-layout-02 .products-table-plan_item .products-table-plan_recommend {
    top: -78px;
  }
}
@media only screen and (max-width: 767px) {
  .products-table-plan.-sp-layout-02 .products-table-plan_item {
    margin-right: 0;
    overflow-x: initial;
  }
  .products-table-plan.-sp-layout-02 .products-table-plan_item .-sp-layout-02-hidden {
    display: none;
  }
  .products-table-plan.-sp-layout-02 .products-table-plan_item .-sp-layout-02-display-block {
    display: block;
  }
  .products-table-plan.-sp-layout-02 .products-table-plan_item table {
    margin-right: 0;
  }
  .products-table-plan.-sp-layout-02 .products-table-plan_item th,
  .products-table-plan.-sp-layout-02 .products-table-plan_item td {
    min-width: initial;
    padding: 12px 8px;
  }
  .products-table-plan.-sp-layout-02 .products-table-plan_item th {
    vertical-align: top;
  }
  .products-table-plan.-sp-layout-02 .products-table-plan_item .acq-btn {
    padding: 8px;
    font-size: var(--acq-font-size-md);
  }
  .products-table-plan.-sp-layout-02 .products-table-plan_item .acq-btn::before {
    display: none;
  }
}
.products-table-plan_item:not(:first-child) table {
  border-top: none;
}
.products-table-plan_item:not(:last-child) table {
  border-bottom: none;
}
.products-table-plan_item.-highlight {
  border: 2px solid var(--acq-color-highlight);
}
@media only screen and (max-width: 767px) {
  .products-table-plan_item:has(.products-table-plan_recommend) {
    margin-top: 96px;
  }
}
.products-table-plan_item:has(+ .products-table-plan_item .products-table-plan_recommend) thead th, .products-table-plan_item:has(.products-table-plan_recommend) thead th, .products-table-plan_item:has(.products-table-plan_recommend) ~ .products-table-plan_item thead th {
  padding-top: 32px;
}
.products-table-plan_item:has(.products-table-plan_recommend.-basic) tbody tr:last-child td:nth-of-type(2) {
  border-bottom: 3px solid var(--acq-color-highlight);
}
.products-table-plan_item:has(.products-table-plan_recommend.-basic) tbody tr td:nth-of-type(2) {
  border-right: 3px solid var(--acq-color-highlight);
  border-left: 3px solid var(--acq-color-highlight);
}
@media only screen and (max-width: 767px) {
  .products-table-plan_item:has(.products-table-plan_recommend.-basic) tbody tr:last-child td:nth-of-type(2) {
    border: 1px solid var(--acq-color-beige);
    border-right: none;
  }
  .products-table-plan_item:has(.products-table-plan_recommend.-basic) tbody tr td:nth-of-type(2) {
    border: 1px solid var(--acq-color-beige);
    border-right: none;
  }
}
.products-table-plan_item:has(.products-table-plan_recommend.-free) tbody tr:last-child td:nth-of-type(1) {
  border-bottom: 3px solid var(--acq-color-highlight);
}
.products-table-plan_item:has(.products-table-plan_recommend.-free) tbody tr td:nth-of-type(1) {
  border-right: 3px solid var(--acq-color-highlight);
  border-left: 3px solid var(--acq-color-highlight);
}
@media only screen and (max-width: 767px) {
  .products-table-plan_item:has(.products-table-plan_recommend.-free) tbody tr:last-child td:nth-of-type(1) {
    border: 1px solid var(--acq-color-beige);
    border-right: none;
  }
  .products-table-plan_item:has(.products-table-plan_recommend.-free) tbody tr td:nth-of-type(1) {
    border: 1px solid var(--acq-color-beige);
    border-right: none;
  }
}
.products-table-plan_item table {
  width: 100%;
  height: 100%;
  background-color: var(--acq-color-white);
  border: 1px solid var(--acq-color-beige);
}
.products-table-plan_item col.-recommended {
  border: 2px solid var(--acq-color-highlight);
}
.products-table-plan_item th.-highlight {
  background-color: var(--acq-color-bg-red);
}
.products-table-plan_item th.-bg-beige {
  background-color: var(--acq-color-bg-beige);
}
.products-table-plan_item th.-highlight-border {
  border: 2px solid var(--acq-color-highlight);
  border-right: none;
}
.products-table-plan_item th:has(.products-table-plan_recommend) {
  position: relative;
  border-right: 3px solid var(--acq-color-highlight);
  border-left: 3px solid var(--acq-color-highlight);
}
.products-table-plan .products-table-plan_item thead tr th:has(+ th > span.products-table-plan_recommend),
.products-table-plan .products-table-plan_item thead tr th:has(> span.products-table-plan_recommend),
.products-table-plan .products-table-plan_item thead tr th:has(> span.products-table-plan_recommend) ~ th {
  padding-top: 32px;
}

@media only screen and (max-width: 767px) {
  .products-table-plan .products-table-plan_item thead tr th:has(+ th > span.products-table-plan_recommend),
  .products-table-plan .products-table-plan_item thead tr th:has(> span.products-table-plan_recommend),
  .products-table-plan .products-table-plan_item thead tr th:has(> span.products-table-plan_recommend) ~ th {
    padding-top: 24px;
  }
  .products-table-plan_item th:has(.products-table-plan_recommend) {
    border: 3px solid var(--acq-color-highlight);
  }
}
.products-table-plan_item th,
.products-table-plan_item td {
  padding: 16px 24px;
  border: 1px solid var(--acq-color-beige);
  border-right: none;
}
.products-table-plan_item th + td:empty,
.products-table-plan_item td + td:empty {
  border-left: none;
}
.products-table-plan_item th.-highlight-02,
.products-table-plan_item td.-highlight-02 {
  background-color: var(--acq-color-bg-red);
}
.products-table-plan_item th > :first-child,
.products-table-plan_item td > :first-child {
  margin-top: 0;
}
.products-table-plan_item th > :last-child,
.products-table-plan_item td > :last-child {
  margin-bottom: 0;
}
.products-table-plan_item td.-highlight-border {
  border: 2px solid var(--acq-color-highlight);
  border-left: none;
}
.products-table-plan_item tbody tr.-sub th {
  font-weight: var(--acq-font-weight);
}
.products-table-plan_item tbody tr.-sub th,
.products-table-plan_item tbody tr.-sub td {
  border: none;
}
.products-table-plan_item tbody th {
  text-align: left;
}
.products-table-plan_item tbody td {
  text-align: center;
  vertical-align: top;
}
.products-table-plan_item tbody td.-highlight {
  position: relative;
  z-index: var(--acq-z-index-layer1);
}
.products-table-plan_item tbody td.-highlight::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--acq-z-index-behind);
  width: calc(100% + 1px);
  height: 100%;
  border: 2px solid var(--acq-color-highlight);
  border-left: none;
  border-right: none;
}
.products-table-plan_item tbody td.-highlight:first-of-type::before {
  border-left: 2px solid var(--acq-color-highlight);
}
.products-table-plan_item tbody td.-highlight:last-of-type::before {
  width: 100%;
  border-right: 2px solid var(--acq-color-highlight);
}
.products-table-plan_recommend {
  position: absolute;
  display: block;
  text-align: center;
  width: calc(100% + 6px);
  left: -3px;
  top: -49px;
  padding: 12px;
  font-size: var(--acq-font-size-md);
  background-color: var(--acq-color-highlight);
  color: var(--acq-color-white);
}
.products-table-plan_recommend::before {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--acq-color-highlight);
  display: block;
  content: "";
  bottom: -20px;
  right: 50%;
  transform: translateX(50%);
}
.products-table-plan_recommend + .products-table-plan_title {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .products-table-plan_recommend {
    font-size: var(--acq-font-size-xs);
    top: -44px;
  }
}
.products-table-plan_title {
  position: relative;
  display: block;
  margin: 16px 0 8px;
  padding: 0 24px;
  text-align: center;
  font-size: var(--acq-font-size-xl);
  font-weight: var(--acq-font-weight-bold);
}
.products-table-plan_title-badge {
  position: absolute;
  top: -14px;
  right: -18px;
  transform: rotate(15deg);
}
.products-table-plan_recommend + .products-table-plan_title .products-table-plan_title-badge {
  display: none;
}
.products-table-plan_title-bubble {
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 8px 16px;
  width: max-content;
  max-width: 100%;
  min-width: 218px;
  background-color: var(--acq-color-highlight);
  border-radius: var(--acq-rounded-md);
  font-size: 1.6rem;
  color: var(--acq-color-white);
}
.products-table-plan_title-bubble::after {
  position: absolute;
  content: "";
  bottom: -6.5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 13px;
  height: 13px;
  background-color: var(--acq-color-highlight);
  clip-path: polygon(50% 0, 80% 50%, 50% 100%, 20% 50%);
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .products-table-plan_title-bubble {
    top: -70px;
    width: auto;
    min-width: auto;
  }
}
.products-table-plan_cancel {
  display: block;
  text-align: right;
  font-size: var(--acq-font-size-xs);
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .products-table-plan_cancel {
    text-align: center;
  }
}
.products-table-plan.-sp-pt52 {
  padding-top: 52px;
}
.products-table-plan_center {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}
.products-table-plan_subtext {
  display: block;
  margin: 8px 0;
  font-size: var(--acq-font-size-xs);
  font-weight: var(--acq-font-weight);
  text-align: center;
}
.products-table-plan_subtext em {
  font-weight: var(--acq-font-weight);
  text-decoration: underline;
}
.products-table-plan_img {
  margin-bottom: 8px;
  text-align: center;
}
.products-table-plan_lead {
  margin-bottom: 16px;
  font-weight: var(--acq-font-weight-bold);
}
.products-table-plan_tax {
  margin-left: 4px;
  color: var(--acq-color-beige-dark);
  font-weight: var(--acq-font-weight-bold);
}
.products-table-plan_icon {
  vertical-align: middle;
}
.products-table-plan_btn {
  position: relative;
  padding-right: 32px;
}
.products-table-plan_btn::before, .products-table-plan_btn::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0 3px 0 auto;
  z-index: var(--acq-z-index-layer1);
  margin: auto;
  width: 10px;
  height: 2px;
  background-color: var(--acq-color-white);
  border-radius: 2px;
}
.products-table-plan_btn::after {
  opacity: 0;
  transform: rotate(90deg);
}
.products-table-plan_btn.is-hidden::after {
  opacity: 1;
}
.products-table-plan_btn-text::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  margin: auto;
  width: 16px;
  height: 16px;
  background-color: var(--acq-color-primary);
  border-radius: 50%;
}
.products-table-plan_btn-alt {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
  overflow: hidden;
}
.products-table-plan_price {
  margin-bottom: 8px;
}
.products-table-plan_price + .products-table-plan_price {
  margin-top: 32px;
}
.products-table-plan_price.-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.products-table-plan_price > :first-child {
  margin-top: 0;
}
.products-table-plan_price > :last-child {
  margin-bottom: 0;
}
.products-table-plan_price-text {
  margin-bottom: 4px;
}
.products-table-plan_price-subtext {
  margin-bottom: 4px;
  color: var(--acq-color-font-beige);
  font-size: var(--acq-font-size-xs);
}
.products-table-plan_price-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.products-table-plan_price-content > :first-child {
  margin-top: 0;
}
.products-table-plan_price-content > :last-child {
  margin-bottom: 0;
}
.products-table-plan_price-btn {
  margin: 12px 0 8px;
}
.products-table-plan_price-prefix {
  margin-right: 4px;
}
.products-table-plan_price-nbr {
  font-size: 2.4rem;
}
.products-table-plan_price-nbr.-lg {
  font-size: 3.2rem;
}
.products-table-plan_price-nbr.-sm {
  font-size: 2rem;
}
.products-table-plan_campaign {
  display: inline-flex;
  flex-direction: column;
  row-gap: 32px;
  margin-bottom: 16px;
  text-align: left;
}
.products-table-plan_campaign dt {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
  padding: 4px 12px;
  background-color: var(--acq-color-bg-beige);
  border-radius: 100vw;
  font-size: 1.2rem;
  font-weight: var(--acq-font-weight-bold);
}
.products-table-plan_campaign dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
}
.products-table-plan_campaign-price {
  color: var(--acq-color-highlight);
  font-weight: var(--acq-font-weight-bold);
}
.products-table-plan_campaign-price em {
  margin: 0 8px;
  font-size: 4rem;
  line-height: 1;
}
.products-table-plan_cv {
  display: flex;
  justify-content: space-between;
  padding: 16px;
}
.products-table-plan_cv-hdg {
  margin-bottom: 16px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: left;
}
.products-table-plan_cv .acq-list {
  margin-bottom: 16px;
}
.products-table-plan_cv .acq-btn-lyt {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .products-table-plan_cv {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .products-table-plan_cv-hdg {
    text-align: center;
  }
}
.products-table-plan_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: var(--acq-font-weight);
}
.products-table-plan_head-title {
  margin-bottom: 8px;
  font-size: var(--acq-font-size-xs);
  font-weight: var(--acq-font-weight-bold);
}
.products-table-plan_head-text {
  margin-bottom: 8px;
  font-size: var(--acq-font-size-xs);
  font-weight: var(--acq-font-weight);
}
.products-table-plan_support-title {
  margin-bottom: 12px;
  position: relative;
  display: block;
  padding: 0 25px;
  font-size: var(--acq-font-size-xs);
  font-weight: var(--acq-font-weight-bold);
  text-align: center;
}
.products-table-plan_support-badge {
  position: absolute;
  top: 0;
  right: -18px;
  transform: rotate(15deg);
}
.products-table-plan_support .products-table-plan_price + .acq-list {
  margin: 32px 0 0;
}
.products-table-plan_plus {
  margin-block: 8px;
}
.products-table-plan_inner.-campaign {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 311px;
  padding-bottom: 16px;
}
.products-table-plan_inner.-support {
  min-height: 280px;
}
.products-table-plan_inner.-next {
  min-height: 220px;
}
@media only screen and (max-width: 767px) {
  .products-table-plan_inner.-campaign, .products-table-plan_inner.-support {
    min-height: auto;
  }
}
.products-table-plan_hr {
  --color-border: #e9e7e5;
  position: relative;
  font-weight: var(--acq-font-weight-bold);
  z-index: 1;
}
.products-table-plan_hr::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  z-index: -1;
}
.products-table-plan_hr span {
  background-color: var(--acq-color-white);
  padding-inline: 8px;
}
.acq-box > .products-table-plan {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .products-table-plan.-sp-show {
    display: block;
  }
  .products-table-plan.-col-03 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .products-table-plan.-col-03 .products-table-plan_item {
    margin-right: 0;
  }
  .products-table-plan.-col-03 .products-table-plan_item table {
    margin-right: 0;
  }
  .products-table-plan_item {
    margin-right: calc(-1 * var(--acq-gutter-content));
    overflow-x: auto;
  }
  .products-table-plan_item table {
    margin-right: var(--acq-gutter-content);
  }
  .products-table-plan_item td,
  .products-table-plan_item th {
    min-width: 160px;
  }
  .products-table-plan_item td:empty,
  .products-table-plan_item th:empty {
    min-width: auto;
  }
  .products-table-plan_title {
    padding: 0;
  }
  .products-table-plan_item-02 .products-table-plan_title-badge {
    top: -44px;
    right: -8px;
  }
  .products-table-plan_list .products-table-plan_title-badge {
    inset: -40px auto auto -18px;
    transform: rotate(-15deg);
  }
  .products-table-plan_price {
    text-align: center;
  }
  .products-table-plan_price-btn {
    margin-top: 16px;
  }
  .products-table-plan_campaign {
    display: flex;
  }
  .products-table-plan_campaign dt {
    margin: 0 auto 10px;
    font-size: 1.6rem;
  }
  .products-table-plan_campaign dd {
    flex-direction: column;
    row-gap: 16px;
  }
  .products-table-plan_campaign-btn {
    width: 100%;
    text-align: center;
  }
  .products-table-plan_item-02 .products-table-plan_support-badge {
    right: -10px;
  }
  .products-table-plan_item-02 {
    margin-bottom: var(--acq-spacing-md);
  }
  .products-table-plan_item-02 table {
    width: 100%;
    background-color: var(--acq-color-white);
  }
  .products-table-plan_item-02 tbody th:only-child {
    background-color: var(--acq-color-bg-beige);
  }
  .products-table-plan_item-02 tbody th:only-child.-highlight {
    background-color: var(--acq-color-bg-red);
  }
  .products-table-plan_item-02 tbody th:only-child.-bg-white {
    background-color: var(--acq-color-white);
  }
  .products-table-plan_item-02 tbody th:only-child.-highlight-border {
    border: 2px solid var(--acq-color-highlight);
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .products-table-plan_item-02 tbody th:only-child.-highlight-border {
    border-bottom: none;
  }
}
@media only screen and (max-width: 767px) {
  .products-table-plan_item-02 th,
  .products-table-plan_item-02 td {
    position: relative;
    padding: 16px;
    border: 1px solid var(--acq-color-beige);
  }
  .products-table-plan_item-02 th > :first-child,
  .products-table-plan_item-02 td > :first-child {
    margin-top: 0;
  }
  .products-table-plan_item-02 th > :last-child,
  .products-table-plan_item-02 td > :last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .products-table-plan_item-02 td.-highlight {
    border: 2px solid var(--acq-color-highlight);
  }
  .products-table-plan_item-02 td.-highlight-border {
    border: 2px solid var(--acq-color-highlight);
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .products-table-plan_item-02 td.-highlight-border {
    border-top: none;
  }
}
@media only screen and (max-width: 767px) {
  .products-table-plan_list {
    margin-bottom: 32px;
  }
  .products-table-plan_list > li {
    position: relative;
    margin-top: 16px;
    padding: 24px;
    background-color: var(--acq-color-white);
    border-radius: var(--acq-rounded-lg);
  }
  .products-table-plan_list > li.-recommended {
    border: 2px solid var(--acq-color-highlight);
  }
  .products-table-plan_list > li:first-child:not(.-recommended) {
    margin-top: 0;
  }
  .products-table-plan_list > li > :first-child {
    margin-top: 0;
  }
  .products-table-plan_list > li > :last-child {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .products-table-plan.-pc-show {
    display: block;
  }
  .products-table-plan.-pc-show.-col-03 {
    display: grid;
  }
}

/* .products-table-function
----------------------------------------------- */
.products-table-function {
  margin-bottom: var(--acq-spacing-lg);
}
.products-table-function .-col-01 {
  width: 20%;
}
.products-table-function .-col-02 {
  width: 23%;
}
.products-table-function .-col-3 {
  width: 30%;
}
.products-table-function table {
  width: 100%;
  background-color: var(--acq-color-white);
  border: 1px solid var(--acq-color-beige);
  font-size: var(--acq-font-size-xs);
}
.products-table-function th,
.products-table-function td {
  padding: var(--acq-spacing-xs) var(--acq-spacing-sm);
}
.products-table-function td {
  text-align: center;
}
.products-table-function thead th {
  vertical-align: top;
}
.products-table-function tbody {
  border: 1px solid var(--acq-color-beige);
}
.products-table-function tbody th {
  font-weight: var(--acq-font-weight);
  font-size: var(--acq-font-size-md);
  text-align: left;
}
.products-table-function tbody tr:first-child {
  border: 1px solid var(--acq-color-beige);
}
.products-table-function tbody tr:first-child th {
  font-weight: var(--acq-font-weight-bold);
}
.products-table-function .acq-icon-label {
  margin: 0 0 4px 4px;
}
.products-table-function .acq-icon-label:first-child {
  margin-left: 8px;
}
.products-table-function_head {
  display: flex;
  flex-direction: column;
  font-weight: var(--acq-font-weight);
}
.products-table-function_head th {
  border: 1px solid var(--acq-color-beige);
}
.products-table-function_head small {
  display: block;
}
.products-table-function_title {
  margin-bottom: 8px;
  font-weight: var(--acq-font-weight-bold);
}
.products-table-function_icon {
  vertical-align: middle;
}
.products-table-function_text {
  margin-bottom: 8px;
}
.products-table-function_scroll-text {
  display: none;
}
.products-table-function.-appearance-02 table {
  border: none;
  border-collapse: separate;
}
.products-table-function.-appearance-02 table thead tr th {
  position: relative;
}
.products-table-function.-appearance-02 table thead tr th::before {
  position: absolute;
  height: calc(100% - 32px);
  left: 0;
  border-left: 1px solid #faf7f5;
  display: block;
  content: "";
}
.products-table-function.-appearance-02 table thead + tbody tr th[colspan="4"] {
  border-top: none;
}
.products-table-function.-appearance-02 table tbody {
  border: none;
}
.products-table-function.-appearance-02 table tbody tr {
  border: none;
  padding-bottom: 24px;
}
.products-table-function.-appearance-02 table tbody tr:first-child th {
  background-color: #faf7f5;
  border-bottom: 24px solid #fff;
  border-top: 24px solid #fff;
}
.products-table-function.-appearance-02 table tbody tr > td {
  border-left: 1px solid #faf7f5;
}
@media only screen and (max-width: 767px) {
  .products-table-function colgroup > col:first-child {
    width: 26%;
  }
  .products-table-function_scroll-text {
    display: block;
    margin-bottom: 8px;
    text-align: center;
    color: var(--acq-color-font-beige);
    font-size: var(--acq-font-size-xs);
    font-weight: var(--acq-font-weight-bold);
  }
  .products-table-function_inner {
    overflow-x: scroll;
  }
  .products-table-function_inner table {
    width: max-content;
    max-width: 800px;
  }
  .products-table-function .acq-icon-label:first-child {
    margin-left: 4px;
  }
}

/* ----------------------------------------------------------------
    Card (.products-card[-*])
----------------------------------------------------------------- */
/* .products-card-cta
----------------------------------------------- */
.products-card-cta {
  --icon-width: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--acq-spacing-sm);
  max-width: var(--acq-width-content-sm);
  margin: 0 auto var(--acq-spacing-md);
}
.products-card-cta_item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 8px;
  position: relative;
  padding: 32px 8px;
  background-color: var(--acq-color-white);
  border-radius: var(--acq-rounded-lg);
  border: solid 1px var(--acq-color-beige);
  box-shadow: var(--acq-shadow-card-02);
  text-align: center;
}
.products-card-cta_item:only-child {
  grid-column: 1/-1;
  width: 100%;
  max-width: calc(var(--acq-width-content-sm) / 2);
  margin: 0 auto;
}
.products-card-cta_item.-translucent:only-child {
  max-width: none;
  background-color: rgba(255, 255, 255, 0.6);
}
.products-card-cta_date {
  position: absolute;
  top: 8px;
  left: -10px;
}
.products-card-cta_date + .products-card-cta_text {
  margin-top: 12px;
}
.products-card-cta_sub {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.products-card-cta_hdg {
  font-size: 2.4rem;
}
.products-card-cta_text {
  grid-column: 1/-1;
  grid-row: 1;
  align-self: end;
  padding: 4px 14px 0;
  font-weight: var(--acq-font-weight-bold);
}
.products-card-cta_icon + .products-card-cta_text {
  padding-right: calc(var(--icon-width) + 8px);
  padding-left: calc(var(--icon-width) + 8px);
  text-align: center;
}
.products-card-cta_text em {
  background-image: linear-gradient(to top, var(--acq-color-bg-red) 30%, transparent 30%);
}
.products-card-cta_lead, .products-card-cta_btn {
  grid-column: 1/-1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 14px;
}
.products-card-cta_icon {
  grid-column: 2;
  grid-row: 1;
  max-width: var(--icon-width);
}
.products-card-cta_media {
  grid-column: 1/-1;
  grid-row: -2;
  margin: 0;
}
.products-card-cta_text > :first-child, .products-card-cta_btn > :first-child {
  margin-top: 0;
}
.products-card-cta_text > :last-child, .products-card-cta_btn > :last-child {
  margin-bottom: 0;
}
.products-card-cta_small {
  font-size: var(--acq-font-size-sm);
}
.products-card-cta.-large {
  column-gap: 16px;
  max-width: 100%;
}
.products-card-cta.-icon-large {
  --icon-width: 110px;
}
@media only screen and (max-width: 767px) {
  .products-card-cta {
    --icon-width: min(58px, 16vw);
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .products-card-cta_item {
    padding: 32px 8px;
    padding-right: 4px;
    row-gap: 16px;
  }
  .products-card-cta_text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding-top: 24px;
    text-align: center;
  }
  .products-card-cta_icon + .products-card-cta_text {
    padding-left: calc(var(--icon-width) + 8px);
  }
  .products-card-cta_sub {
    font-size: 1.2rem;
  }
  .products-card-cta_hdg {
    font-size: 1.6rem;
  }
  .products-card-cta.-icon-large {
    --icon-width: min(80px, 20vw);
  }
}
@media only screen and (min-width: 768px) {
  .products-card-cta.-col3-pc {
    --icon-width: 60px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
  .products-card-cta.-col3-pc .products-card-cta_icon {
    margin-top: -10px;
  }
  .products-mv .products-card-cta .products-card-cta_item:not(:only-child) .products-card-cta_icon + .products-card-cta_text {
    padding-left: 14px;
    text-align: left;
  }
  .products-card-cta_date {
    left: -12px;
  }
}

.products-card-cta-02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--acq-spacing-sm);
  padding: var(--acq-spacing-md);
  max-width: 698px;
  margin: 0 auto var(--acq-spacing-md);
  background-color: var(--acq-color-white);
  border-radius: var(--acq-rounded-lg);
  border: solid 1px var(--acq-color-beige);
  box-shadow: var(--acq-shadow-card-02);
  text-align: center;
  font-size: var(--acq-font-size-xl);
  font-weight: var(--acq-font-weight-bold);
}
.products-card-cta-02_btn {
  width: min(100%, 336px);
}
.products-card-cta-02_text {
  margin-bottom: 0;
}
.products-card-cta-02_text em {
  background-image: linear-gradient(to top, var(--acq-color-bg-red) 30%, transparent 30%);
}
.products-card-cta-02_small {
  font-size: var(--acq-font-size-sm);
}
@media only screen and (max-width: 767px) {
  .products-card-cta-02 {
    flex-direction: column;
  }
}

.products-card-cta-03 {
  --products-card-cta-03-spacing: 40px;
  max-width: 845px;
  padding: var(--products-card-cta-03-spacing) var(--acq-spacing-xl) var(--acq-spacing-md);
  margin: 0 auto var(--acq-spacing-md);
  background-color: var(--acq-color-white);
  border-radius: var(--acq-rounded-lg);
  border: solid 1px var(--acq-color-beige);
  box-shadow: var(--acq-shadow-card-02);
}
.products-card-cta-03 > *:first-child {
  margin-top: 0;
}
.products-card-cta-03 > *:last-child {
  margin-bottom: 0;
}
.products-card-cta-03_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--products-card-cta-03-spacing);
  text-align: center;
  font-size: var(--acq-font-size-xl);
  font-weight: var(--acq-font-weight-bold);
  margin-bottom: var(--acq-spacing-sm);
}
.products-card-cta-03_content {
  width: 100%;
}
.products-card-cta-03_btn {
  width: min(100%, 336px);
}
.products-card-cta-03_text {
  margin-bottom: var(--acq-spacing-sm);
}
.products-card-cta-03_text em {
  background-image: linear-gradient(to top, var(--acq-color-bg-red) 30%, transparent 30%);
}
.products-card-cta-03_small {
  font-size: var(--acq-font-size-sm);
}
@media only screen and (max-width: 767px) {
  .products-card-cta-03 {
    padding: var(--acq-spacing-lg) var(--acq-spacing-md);
  }
  .products-card-cta-03_inner {
    flex-direction: column;
    gap: var(--acq-spacing-md);
    margin-bottom: var(--acq-spacing-md);
  }
  .products-card-cta-03 .acq-btn {
    padding: var(--acq-spacing-sm);
  }
}

/* ----------------------------------------------------------------
    Layout (.products-lyt[-*])
----------------------------------------------------------------- */
/* .products-lyt
----------------------------------------------- */
.products-lyt {
  display: flex;
  flex-direction: row-reverse;
  gap: var(--acq-gutter);
  margin: var(--acq-spacing-lg) auto;
}
.products-lyt_content {
  flex: 1;
}
.products-lyt_content > :first-child {
  margin-top: 0;
}
.products-lyt_content > :last-child {
  margin-bottom: 0;
}
.products-lyt_hdg {
  margin-bottom: var(--acq-spacing-sm);
  color: var(--acq-color-primary);
  font-size: var(--acq-font-size-lg);
}
.products-lyt_img {
  max-width: 450px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .products-lyt {
    flex-direction: column-reverse;
  }
  .products-lyt_img {
    max-width: none;
  }
}

/* .products-lyt-02
----------------------------------------------- */
.products-lyt-02 {
  display: grid;
  grid-template-columns: 1fr 40%;
  align-items: center;
  gap: 32px;
  margin: 0 auto var(--acq-spacing-md);
}
.products-lyt-02_hdg {
  margin-bottom: 16px;
  font-size: var(--acq-font-size-xl);
}
.products-lyt-02_lyt {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 32px;
}
.products-lyt-02_lyt-content > :first-child {
  margin-top: 0;
}
.products-lyt-02_lyt-content > :last-child {
  margin-bottom: 0;
}
.products-lyt-02_lyt-hdg {
  margin-bottom: 8px;
  font-size: 1.8rem;
}
.products-lyt-02_lyt-icon {
  flex-shrink: 0;
  max-width: 100px;
}
.products-lyt-02_box {
  padding: 40px 24px;
  border-radius: var(--acq-rounded-lg);
  border: solid 1px var(--acq-color-beige);
  background-color: var(--acq-color-white);
  text-align: center;
}
.products-lyt-02_box > :first-child {
  margin-top: 0;
}
.products-lyt-02_box > :last-child {
  margin-bottom: 0;
}
.products-lyt-02_box-img {
  margin-bottom: 24px;
}
.products-lyt-02_box-btn {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .products-lyt-02 {
    grid-template-columns: 1fr;
  }
  .products-lyt-02_lyt {
    display: flex;
    flex-direction: column-reverse;
  }
  .products-lyt-02_lyt-content > :first-child {
    margin-top: 0;
  }
  .products-lyt-02_lyt-content > :last-child {
    margin-bottom: 0;
  }
  .products-lyt-02_lyt-hdg {
    font-size: 1.6rem;
    text-align: center;
  }
  .products-lyt-02_lyt-icon {
    align-self: center;
  }
}

/* .products-lyt-03
----------------------------------------------- */
.products-lyt-03 {
  display: grid;
  grid-template-columns: minmax(50%, auto) minmax(30%, auto);
  align-items: center;
  gap: 24px;
}
.products-lyt-03_content {
  font-size: 1.4rem;
}
.products-lyt-03_content > :first-child {
  margin-top: 0;
}
.products-lyt-03_content > :last-child {
  margin-bottom: 0;
}
.products-lyt-03_hdg {
  margin-bottom: 16px;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .products-lyt-03 {
    grid-template-columns: 1fr;
  }
  .products-lyt-03_hdg {
    font-size: 1.6rem;
  }
  .products-lyt-03_content {
    font-size: 1.6rem;
  }
  .products-lyt-03_img {
    text-align: center;
  }
}

/* .products-lyt-04
----------------------------------------------- */
.products-lyt-04 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  column-gap: 40px;
  margin-bottom: var(--acq-spacing-lg);
}
.products-lyt-04_content {
  flex: 1;
  min-width: 50%;
}
.products-lyt-04_content > :first-child {
  margin-top: 0;
}
.products-lyt-04_content > :last-child {
  margin-bottom: 0;
}
.products-lyt-04_media {
  display: flex;
  column-gap: 24px;
}
.products-lyt-04_catch {
  font-size: var(--acq-font-size-3xl);
}
.products-lyt-04_label {
  margin-bottom: 0;
}
.products-lyt-04_label > li {
  max-width: 130px;
  margin-bottom: 4px;
}
.products-lyt-04_label > li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .products-lyt-04 {
    flex-direction: column-reverse;
    row-gap: 24px;
  }
}

/* .products-lyt-05
----------------------------------------------- */
.products-lyt-05 {
  position: relative;
  margin-bottom: var(--acq-spacing-md);
}
.products-lyt-05_content {
  display: flex;
  flex-direction: column;
  row-gap: var(--acq-spacing-sm);
}
.products-lyt-05_col {
  display: flex;
  justify-content: space-between;
}
.products-lyt-05_item {
  max-width: 371px;
  width: 100%;
}
.products-lyt-05_box {
  padding: var(--acq-spacing-sm);
  border-radius: var(--acq-rounded-md);
  background-color: var(--acq-color-bg-beige);
}
.products-lyt-05_box > :first-child {
  margin-top: 0;
}
.products-lyt-05_box > :last-child {
  margin-bottom: 0;
}
.products-lyt-05_box:where(.-check-04) {
  margin-top: calc(var(--acq-spacing-sm) * -1);
}
.products-lyt-05_title-inner {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--acq-spacing-xs) / 2);
}
.products-lyt-05_title-label {
  color: var(--acq-color-primary);
}
.products-lyt-05_title-text {
  font-size: var(--acq-font-size-lg);
}
.products-lyt-05_text {
  margin-bottom: calc(var(--acq-spacing-xs) / 2);
  line-height: var(--acq-line-height-article);
}
.products-lyt-05_img {
  position: absolute;
  top: 0;
  left: calc(50% - 205px);
}
.products-lyt-05 .acq-list-note {
  margin-bottom: calc(var(--acq-spacing-xs) / 2);
}
@media only screen and (max-width: 1200px) {
  .products-lyt-05 {
    display: flex;
    flex-direction: column-reverse;
    row-gap: var(--acq-spacing-xs);
  }
  .products-lyt-05_content {
    row-gap: var(--acq-spacing-xs);
  }
  .products-lyt-05_col {
    flex-direction: column;
    justify-content: flex-start;
    row-gap: var(--acq-spacing-xs);
  }
  .products-lyt-05_item {
    max-width: none;
  }
  .products-lyt-05_box:where(.-check-04) {
    margin-top: 0;
  }
  .products-lyt-05_img {
    position: static;
    text-align: center;
  }
}

/* ----------------------------------------------------------------
    Panel (.products-panel[-*])
----------------------------------------------------------------- */
/* .products-panel-cta
----------------------------------------------- */
.products-panel-cta {
  --gutter-y: 60px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  padding: var(--acq-spacing-xl) 0;
  background-color: var(--acq-color-bg-beige);
}
.products-panel-cta.-next {
  background-image: url("/kyuyo/kyuyo-next/function/img/cta-bg.svg");
  background-color: unset;
  background-repeat: no-repeat;
  background-size: cover;
}
.products-panel-cta.-meisai-next {
  background-image: url("/kyuyo/meisai-next/function/img/cta-bg.svg");
  background-color: unset;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .products-panel-cta.-meisai-next {
    background-image: url("/kyuyo/meisai-next/function/img/cta-bg-sp.svg");
  }
}
.products-panel-cta_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 var(--acq-gutter-content) var(--acq-spacing-sm);
  max-width: var(--acq-width-content);
  margin: 0 auto;
}
.products-panel-cta_img {
  max-width: 800px;
  margin-bottom: 16px;
  text-align: center;
}
.products-panel-cta_hdg {
  font-size: var(--acq-font-size-3xl);
}
.products-panel-cta_logo {
  display: inline-block;
  max-width: 450px;
  margin-right: var(--acq-spacing-2xs);
}
.products-panel-cta_title {
  display: inline-block;
  margin-top: var(--acq-spacing-sm);
  font-size: var(--acq-font-size-7xl);
}
.products-panel-cta_btn {
  width: 100%;
  max-width: var(--acq-width-content);
  padding: 0 var(--acq-gutter-content);
}
.products-panel-cta_hdg, .products-panel-cta_btn {
  position: relative;
}
.products-panel-cta_content > :first-child, .products-panel-cta_btn > :first-child {
  margin-top: 0;
}
.products-panel-cta_content > :last-child, .products-panel-cta_btn > :last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1001px) {
  .products-panel-cta {
    grid-template-columns: 1fr 55.5vw;
  }
  .products-panel-cta_content {
    grid-column: 1/-1;
    grid-row: 1;
    align-items: flex-start;
    width: 100%;
  }
  .products-panel-cta_title {
    display: block;
  }
  .products-panel-cta_img {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    margin-left: -80px;
  }
  .products-panel-cta_btn {
    grid-column: 1/-1;
    margin-top: calc(var(--gutter-y) * -1);
  }
  .products-panel-cta_btn .products-card-cta {
    column-gap: var(--acq-spacing-md);
  }
}

/* .products-panel-cta-02
----------------------------------------------- */
.products-panel-cta-02 {
  padding: 120px 0;
  background-color: var(--acq-color-bg-beige);
}
.products-panel-cta-02_inner {
  max-width: var(--acq-width-content);
  margin: 0 auto;
  padding: 0 var(--acq-gutter-content);
  box-sizing: content-box;
}
.products-panel-cta-02_inner > :first-child {
  margin-top: 0;
}
.products-panel-cta-02_inner > :last-child {
  margin-bottom: 0;
}
.products-panel-cta-02_lyt, .products-panel-cta-02_contact {
  display: grid;
  grid-template-columns: min(32%, var(--acq-width-card)) 1fr;
  justify-content: center;
  gap: var(--acq-spacing-sm);
}
.products-panel-cta-02_lyt.-big, .products-panel-cta-02_contact.-big {
  grid-template-columns: 40% 1fr;
}
.products-panel-cta-02_lyt {
  margin-bottom: var(--acq-spacing-lg);
  grid-template-rows: auto auto;
}
.products-panel-cta-02_img {
  grid-row: 1/-1;
  display: flex;
  flex-direction: column;
  row-gap: var(--acq-spacing-sm);
  align-items: center;
}
.products-panel-cta-02_inner > :first-child, .products-panel-cta-02_btn > :first-child, .products-panel-cta-02_link > :first-child {
  margin-top: 0;
}
.products-panel-cta-02_inner > :last-child, .products-panel-cta-02_btn > :last-child, .products-panel-cta-02_link > :last-child {
  margin-bottom: 0;
}
.products-panel-cta-02_link {
  text-align: center;
}
.products-panel-cta-02_contact > :first-child {
  margin-top: 0;
}
.products-panel-cta-02_contact > :last-child {
  margin-bottom: 0;
}
.products-panel-cta-02_contact-hdg {
  align-self: center;
  font-size: var(--acq-font-size-5xl);
}
.products-panel-cta-02_contact .products-box-contact {
  width: 100%;
}
.products-panel-cta-02.-p-xl {
  padding: 80px 0;
}
.products-panel-cta-02.-small .products-panel-cta-02_lyt {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.products-panel-cta-02.-next {
  background-color: unset;
  padding: 50px 0;
}
.products-panel-cta-02 + .products-panel-cta-02 {
  background-color: var(--acq-color-white);
}
.products-panel-cta-02 + .products-panel-cta-02 + .products-panel-cta-02 {
  background-color: var(--acq-color-bg-beige);
}
@media only screen and (max-width: 767px) {
  .products-panel-cta-02 {
    padding: 48px 0;
  }
  .products-panel-cta-02_lyt, .products-panel-cta-02_contact {
    grid-template-columns: 1fr;
  }
  .products-panel-cta-02_lyt.-big, .products-panel-cta-02_contact.-big {
    grid-template-columns: 1fr;
  }
  .products-panel-cta-02_img {
    grid-row: unset;
    max-width: 275px;
    margin-left: auto;
    margin-right: auto;
  }
  .products-panel-cta-02_contact-hdg {
    text-align: center;
  }
}

.back_white {
  background-color: var(--acq-color-white);
}

/* .products-panel-cta-03
----------------------------------------------- */
.products-panel-cta-03 {
  position: sticky;
  bottom: 0;
  width: 100%;
  padding: var(--acq-spacing-xs) 0;
  background-color: var(--acq-color-bg-beige);
  z-index: var(--acq-z-index-layer1);
}
.products-panel-cta-03_inner {
  max-width: var(--acq-width-content);
  margin: 0 auto;
  padding: 0 var(--acq-gutter-content);
}
.products-panel-cta-03_inner > :first-child {
  margin-top: 0;
}
.products-panel-cta-03_inner > :last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
    Main visual (.products-mv[-*])
----------------------------------------------------------------- */
/* .products-mv
----------------------------------------------- */
.products-mv {
  position: relative;
  padding: var(--acq-spacing-xl) 0;
  overflow: hidden;
}
.products-mv::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  width: 100%;
  background-color: var(--acq-color-bg-beige);
  -webkit-mask: url("/common_a/img/acquisition/products/mask/mv-bg.svg") no-repeat center;
  mask: url("/common_a/img/acquisition/products/mask/mv-bg.svg") no-repeat center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.products-mv.-next {
  padding: 60px 0 80px;
}
.products-mv.-next::before {
  background-image: url("/kyuyo/kyuyo-next/img/mv-img-01-sp.svg");
  background-color: unset;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.products-mv.-meisai-next::before {
  background-image: url("/kyuyo/meisai-next/img/mv-img-01-sp.svg");
  background-color: unset;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.products-mv_content {
  position: relative;
  padding: 0 48px;
}
.products-mv_box {
  margin: var(--acq-spacing-lg) auto;
  padding: 0 20px 40px;
  border-radius: var(--acq-rounded-lg);
  background-image: url("/kyuyo/img/acq/mv-img-01.svg");
  background-size: cover;
  position: relative;
  text-align: center;
}
.products-mv_box > :first-child {
  margin-top: 0;
}
.products-mv_box > :last-child {
  margin-bottom: 0;
}
.products-mv_box.-right {
  background-image: url("/kyuyo/img/acq/mv-img-05.svg");
}
.products-mv_box-hdg {
  text-align: center;
  margin-top: -30px;
}
.products-mv_box-txt {
  font-size: 2rem;
  color: #000;
}
.products-mv_box-icon {
  position: absolute;
  top: 15px;
  right: 20px;
}
.products-mv_logo {
  margin: 0 auto var(--acq-spacing-md);
  max-width: 450px;
  text-align: center;
}
.products-mv_hdg {
  display: block;
  margin-bottom: 24px;
  font-size: 1.6rem;
  font-weight: var(--acq-font-weight-bold);
  text-align: center;
}
.products-mv_hdg.-next {
  color: #000;
  font-size: 1.8rem;
}
.products-mv_text {
  display: block;
  margin-bottom: 24px;
  font-size: 1.6rem;
  font-weight: var(--acq-font-weight-bold);
  text-align: center;
}
.products-mv_label {
  display: block;
  margin-bottom: 24px;
  font-size: 1.8rem;
  font-weight: var(--acq-font-weight-bold);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, #dfe9ff 70%);
}
.products-mv_label.-color-02 {
  background-image: none;
}
.products-mv_label.-color-02 > span {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, #ffeaef 70%);
}
.products-mv_info {
  padding: var(--acq-spacing-xs) var(--acq-spacing-sm);
  margin-bottom: var(--acq-spacing-md);
  background-color: var(--acq-color-white);
  border-radius: var(--acq-rounded-lg);
  font-weight: var(--acq-font-weight-bold);
}
.products-mv_info > :first-child {
  margin-top: 0;
}
.products-mv_info > :last-child {
  margin-bottom: 0;
}
.products-mv_info-hdg {
  position: relative;
  padding-left: 36px;
  margin-bottom: 8px;
  color: var(--acq-color-primary);
  font-size: var(--acq-font-size-xs);
}
.products-mv_info-hdg::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-color: var(--acq-color-primary);
  -webkit-mask: url("/common_a/img/acquisition/general/mask/announce.svg") no-repeat center;
  mask: url("/common_a/img/acquisition/general/mask/announce.svg") no-repeat center;
}
.products-mv_img {
  margin-bottom: 8px;
  position: relative;
  text-align: center;
}
.products-mv_img-badge {
  position: absolute;
  top: 0;
  right: 5%;
  max-width: 53%;
}
.products-mv_img .acq-list-note {
  padding-right: var(--acq-gutter-content);
  row-gap: 0;
  text-align: right;
}
.products-mv_img .acq-list-note small {
  display: inline-flex;
}
.products-mv_bottom {
  text-align: center;
}
.products-mv_bottom .products-card-cta {
  width: 100%;
  max-width: calc(var(--acq-breakpoint) + 1px);
  margin: 0 auto 16px;
}
.products-mv_bottom .products-card-cta_item {
  box-shadow: var(--acq-shadow-card);
  position: relative;
}
.products-mv_bottom .products-card-cta_date {
  position: absolute;
  top: 8px;
  left: -10px;
}
.products-mv_bottom .products-card-cta_sub {
  font-size: 1.6rem;
}
.products-mv_link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  column-gap: 16px;
}
.products-mv_link-icon {
  max-width: 80px;
}
@media only screen and (max-width: 767px) {
  .products-mv_content {
    padding: 0 16px;
  }
  .products-mv_logo {
    max-width: 84%;
  }
  .products-mv_bottom .products-card-cta_sub {
    font-weight: var(--acq-font-weight);
  }
  .products-mv_link {
    flex-direction: column-reverse;
  }
  .products-mv_box {
    padding: 30px 20px 40px;
    background-image: url("/kyuyo/img/acq/mv-img-01-sp.svg");
  }
  .products-mv_box.-right {
    background-image: url("/kyuyo/img/acq/mv-img-05-sp.svg");
  }
  .products-mv_box-icon {
    top: 15px;
    right: auto;
    left: 0;
    width: 97px;
    transform: rotate(-20deg);
  }
  .products-mv_box-txt {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1001px) {
  .products-mv.-next {
    padding: 60px 0 80px;
  }
  .products-mv.-next::before {
    background-image: url("/kyuyo/kyuyo-next/img/mv-img-01.svg");
    background-color: unset;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
  }
  .products-mv.-meisai-next::before {
    background-image: url("/kyuyo/meisai-next/img/mv-img-01.svg");
    background-color: unset;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
  }
  .products-mv_content {
    display: grid;
    grid-template-areas: "top img" "bottom img";
    grid-template-columns: 586px auto;
    grid-template-rows: auto 1fr;
    padding-left: max((100vw - var(--acq-width-content)) / 2, var(--acq-gutter-content));
    padding-right: calc((100vw - var(--acq-width-ref)) / 2);
  }
  .products-mv_content.-next {
    grid-template-columns: 506px auto;
    padding-left: max((100vw - var(--acq-width-content)) / 2, 96px);
  }
  .products-mv_content.-kyuyo {
    display: block;
    max-width: 1232px;
    padding: 0 16px;
    margin: 0 auto;
  }
  .products-mv_top, .products-mv_bottom {
    position: relative;
    z-index: 1;
  }
  .products-mv_top {
    grid-area: top;
  }
  .products-mv_bottom {
    grid-area: bottom;
    text-align: left;
  }
  .products-mv_bottom .products-card-cta_item:only-child {
    margin: 0;
  }
  .products-mv_bottom .products-card-cta_date {
    left: -12px;
  }
  .products-mv_logo, .products-mv_hdg, .products-mv_text, .products-mv_label {
    text-align: left;
  }
  .products-mv_hdg.-next {
    font-size: 2.4rem;
  }
  .products-mv_label {
    margin-left: 0;
    margin-right: 0;
  }
  .products-mv_logo {
    margin-left: 0;
    margin-right: 0;
  }
  .products-mv_img {
    grid-column: 1/-1;
    grid-row: 1/-1;
    max-width: min(64%, 826px);
    justify-self: right;
    align-self: center;
    text-align: right;
  }
  .products-mv_img.-next {
    grid-column: 2/3;
    justify-self: left;
    max-width: unset;
    margin-top: -55px;
  }
}
@media only screen and (min-width: 1441px) {
  .products-mv::before {
    top: -10vw;
  }
}

/* .products-mv-02
----------------------------------------------- */
.products-mv-02 {
  position: relative;
  padding: var(--acq-spacing-lg) 0 var(--acq-spacing-2xl);
  overflow: hidden;
}
.products-mv-02::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: var(--acq-z-index-behind);
  width: 100%;
  background-color: var(--acq-color-bg-beige);
  -webkit-mask: url("/common_a/img/acquisition/products/mask/mv-bg.svg") no-repeat center;
  mask: url("/common_a/img/acquisition/products/mask/mv-bg.svg") no-repeat center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.products-mv-02_inner {
  max-width: var(--acq-width-content);
  margin: 0 auto;
  padding: 0 var(--acq-gutter-content);
  box-sizing: content-box;
}
.products-mv-02_inner > :first-child {
  margin-top: 0;
}
.products-mv-02_inner > :last-child {
  margin-bottom: 0;
}
.products-mv-02_title {
  margin-bottom: var(--acq-spacing-lg);
  font-size: var(--acq-font-size-5xl);
  text-align: center;
}
.products-mv-02_lyt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--acq-gutter);
  margin-bottom: 24px;
}
.products-mv-02_lyt-item > :first-child {
  margin-top: 0;
}
.products-mv-02_lyt-item > :last-child {
  margin-bottom: 0;
}
.products-mv-02_box {
  position: relative;
  margin-bottom: 16px;
  padding: 50px 42px 42px;
  background-color: var(--acq-color-white);
  border-radius: var(--acq-rounded-lg);
  text-align: center;
}
.products-mv-02_box > :first-child {
  margin-top: 0;
}
.products-mv-02_box > :last-child {
  margin-bottom: 0;
}
.products-mv-02_box-img {
  margin-bottom: 16px;
}
.products-mv-02_box-title {
  margin-bottom: 32px;
}
.products-mv-02_box-label {
  position: absolute;
  top: 16px;
  right: 16px;
  margin-bottom: 0;
}
.products-mv-02_subtitle {
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--acq-color-beige);
  font-size: var(--acq-font-size-lg);
}
@media only screen and (max-width: 767px) {
  .products-mv-02_lyt {
    grid-template-columns: auto;
  }
  .products-mv-02_box-label {
    inset: 8px auto auto 8px;
    width: 100px;
    transform: rotate(-15deg);
  }
}

/* .products-mv-img
----------------------------------------------- */
.products-mv-bg-img {
  position: absolute;
  overflow: hidden;
}
.products-mv-bg-img.-left {
  top: 56px;
  left: 56px;
  opacity: 0.4;
  mix-blend-mode: color-burn;
  width: 389px;
}
.products-mv-bg-img.-right {
  right: -110px;
  top: -20px;
  width: 659px;
}
@media only screen and (max-width: 767px) {
  .products-mv-bg-img.-left {
    top: 11px;
    left: -31px;
    width: 290px;
  }
  .products-mv-bg-img.-right {
    right: -170px;
    top: auto;
    bottom: 0;
    width: 434px;
  }
}

/* ----------------------------------------------------------------
    Box (.products-box[-*])
----------------------------------------------------------------- */
/* .products-box-info
----------------------------------------------- */
.products-box-info {
  --color-bg: var(--acq-color-bg-beige);
  --color-bg-internal: var(--acq-color-white);
  max-width: var(--acq-width-content-sm);
  margin: var(--acq-spacing-lg) auto;
  border-radius: var(--acq-rounded-lg);
  overflow: hidden;
}
.products-box-info_head {
  padding: 16px 24px;
  background-color: var(--acq-color-primary);
  color: var(--acq-color-white);
}
.products-box-info_hdg {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 36px;
  font-size: var(--acq-font-size-md);
}
.products-box-info_hdg::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-color: var(--acq-color-white);
  -webkit-mask: url("/common_a/img/acquisition/general/mask/announce.svg") no-repeat center;
  mask: url("/common_a/img/acquisition/general/mask/announce.svg") no-repeat center;
}
.products-box-info_content {
  background-color: var(--color-bg);
  padding: 32px;
}
.products-box-info_content.-col {
  display: flex;
  gap: 24px;
}
.products-box-info_content > :first-child {
  margin-top: 0;
}
.products-box-info_content > :last-child {
  margin-bottom: 0;
}
.products-box-info_content-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.products-box-info_content-item > :first-child {
  margin-top: 0;
}
.products-box-info_content-item > :last-child {
  margin-bottom: 0;
}
.products-box-info_subhdg {
  margin-bottom: var(--acq-spacing-2xs);
  font-size: var(--acq-font-size-3xl);
}
.products-box-info_text {
  margin-bottom: 24px;
}
.products-box-info_btn {
  text-align: center;
}
.products-box-info_label {
  order: -1;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 24px;
  padding: 4px 16px;
  background-color: var(--color-bg-internal);
  font-weight: var(--acq-font-weight-bold);
  border-radius: 100vw;
}
.products-box-info_card {
  padding: 32px 12px;
  background-color: var(--color-bg-internal);
  border-radius: var(--acq-rounded-lg);
  text-align: center;
}
.products-box-info_card-hdg {
  margin-bottom: 16px;
  color: var(--acq-color-primary);
  text-align: center;
  font-size: var(--acq-font-size-lg);
}
.products-box-info_card-list {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.products-box-info_card-list > li {
  display: grid;
  place-content: center;
  padding: 16px 8px;
  border-radius: var(--acq-rounded-lg);
}
.products-box-info_card-list > li.-color-02 {
  background-color: var(--color-bg);
}
.products-box-info_card-text {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 0 16px;
  font-size: var(--acq-font-size-sm);
}
.products-box-info_card-text::before, .products-box-info_card-text::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 1px;
  width: 2px;
  height: 14px;
  background-color: var(--acq-color-primary);
  border-radius: 1px;
}
.products-box-info_card-text::before {
  left: 4px;
  transform: rotate(-30deg);
}
.products-box-info_card-text::after {
  right: 4px;
  transform: rotate(30deg);
}
.products-box-info_card-media {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: center;
  row-gap: 2px;
  font-size: var(--acq-font-size-sm);
  font-weight: var(--acq-font-weight-bold);
  text-align: center;
}
.products-box-info_card-lyt {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}
.products-box-info_card > :first-child {
  margin-top: 0;
}
.products-box-info_card > :last-child {
  margin-bottom: 0;
}
.products-box-info.-color-02 {
  --color-bg: var(--acq-color-white);
  --color-bg-internal: var(--acq-color-bg-beige);
}
@media only screen and (max-width: 767px) {
  .products-box-info_content {
    padding: 32px 24px;
  }
  .products-box-info_content.-col {
    flex-direction: column;
  }
  .products-box-info_label {
    margin: 0 auto 24px;
  }
  .products-box-info_card-list {
    display: inline-flex;
    flex-direction: column;
  }
}

/* .products-box-contact
----------------------------------------------- */
.products-box-contact {
  display: flex;
  max-width: var(--acq-width-content-sm);
  margin: 0 auto var(--acq-spacing-lg) auto;
  background-color: var(--acq-color-white);
  border-radius: var(--acq-rounded-lg);
  border: solid 1px var(--acq-color-beige);
  box-shadow: var(--acq-shadow-card-02);
}
.products-box-contact_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 4.5%;
}
.products-box-contact_item > :first-child {
  margin-top: 0;
}
.products-box-contact_item > :last-child {
  margin-bottom: 0;
}
.products-box-contact_item:not(:first-child) {
  border-left: solid 1px var(--acq-color-beige);
}
.products-box-contact_tel {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: var(--acq-font-weight-bold);
}
.products-box-contact_tel > span {
  position: relative;
  display: block;
  padding-left: 30px;
}
.products-box-contact_tel > span::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  width: 22px;
  height: 22px;
  background-color: var(--acq-color-primary);
  -webkit-mask: url("/common_a/img/acquisition/general/mask/tel.svg") no-repeat center;
  mask: url("/common_a/img/acquisition/general/mask/tel.svg") no-repeat center;
}
.products-box-contact_tel small {
  font-size: var(--acq-font-size-xs);
  font-weight: var(--acq-font-weight);
}
.products-box-contact_time {
  text-align: center;
}
.products-box-contact_time > :first-child {
  margin-top: 0;
}
.products-box-contact_time > :last-child {
  margin-bottom: 0;
}
.products-box-contact_time-hdg {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 16px;
  background-color: var(--acq-color-bg-gray);
  border-radius: 999em;
  color: var(--acq-color-primary);
  font-weight: var(--acq-font-weight-bold);
}
.products-box-contact_time-text small {
  display: block;
  font-size: var(--acq-font-size-xs);
}
@media only screen and (max-width: 767px) {
  .products-box-contact {
    flex-direction: column;
  }
  .products-box-contact_item {
    padding: 16px 24px;
  }
  .products-box-contact_item:not(:first-child) {
    border-left: 0;
    border-top: solid 1px var(--acq-color-beige);
  }
}

/* .products-box-cta
----------------------------------------------- */
.products-box-cta {
  margin: var(--acq-spacing-md) auto;
  padding: 32px 24px;
  background-color: var(--acq-color-white);
  border-radius: var(--acq-rounded-lg);
  border: solid 1px var(--acq-color-beige);
}
.products-box-cta > :first-child {
  margin-top: 0;
}
.products-box-cta > :last-child {
  margin-bottom: 0;
}
.products-box-cta_content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 40px;
}
.products-box-cta_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.products-box-cta_item-txt {
  text-align: center;
}
.products-box-cta_item-txt > :last-child {
  margin-bottom: 0;
}
.products-box-cta_hdg em {
  font-size: 3.2rem;
  color: var(--acq-color-primary);
  line-height: 1;
}
.products-box-cta_hdg--lg {
  font-size: 4.8rem;
}
.products-box-cta_hdg-num {
  font-size: 9.6rem;
  line-height: 1;
}
.products-box-cta_txt {
  font-size: 2.4rem;
  font-weight: bold;
}
.products-box-cta_btn {
  margin: 0 auto;
  max-width: 336px;
}
@media only screen and (max-width: 767px) {
  .products-box-cta_content {
    flex-direction: column;
    gap: 16px;
  }
  .products-box-cta_item {
    display: contents;
  }
  .products-box-cta_hdg em {
    font-size: 2.4rem;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
  }
  .products-box-cta_hdg--lg {
    font-size: 3.2rem;
  }
  .products-box-cta_hdg-num {
    font-size: 8rem;
  }
  .products-box-cta_txt {
    font-size: 1.6rem;
  }
  .products-box-cta_btn {
    margin-top: 16px;
    order: 1;
  }
  .products-box-cta_media {
    text-align: center;
  }
}

/* ----------------------------------------------------------------
    Heading (.products-hdg[-*])
----------------------------------------------------------------- */
/* .products-hdg
----------------------------------------------- */
.products-hdg {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin: var(--acq-spacing-xl) 0 var(--acq-spacing-lg);
  padding-left: 24px;
}
.products-hdg > :first-child {
  margin-top: 0;
}
.products-hdg > :last-child {
  margin-bottom: 0;
}
.products-hdg::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  width: 6px;
  height: 100%;
  background-color: var(--acq-color-primary);
  border-radius: 100vw;
}
.products-hdg_item {
  font-size: var(--acq-font-size-xl);
}
.products-hdg_text {
  margin-bottom: 0;
}
.products-hdg_label {
  margin-bottom: 0;
}
.products-hdg_label .acq-icon-label {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .products-hdg {
    margin-top: var(--acq-spacing-xl);
  }
}

/* .products-hdg-num
----------------------------------------------- */
.products-hdg-num {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin: var(--acq-spacing-lg) 0 var(--acq-spacing-sm);
}
.products-hdg-num_icon {
  flex-shrink: 0;
  display: grid;
  place-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--acq-color-primary);
  border-radius: 50%;
  color: var(--acq-color-primary);
  font-size: var(--acq-font-size-md);
}
.products-hdg-num_text {
  font-size: var(--acq-font-size-xl);
}

/* .products-hdg-lyt
----------------------------------------------- */
.products-hdg-lyt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--acq-gutter);
  margin: var(--acq-spacing-xl) 0 var(--acq-spacing-lg);
}
.products-hdg-lyt_item > :first-child {
  margin-top: 0;
}
.products-hdg-lyt_item > :last-child {
  margin-bottom: 0;
}

/* .products-hdg-icon
----------------------------------------------- */
.products-hdg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: var(--acq-spacing-xs);
  margin: var(--acq-spacing-md) auto;
  font-size: var(--acq-font-size-md);
}

/* .products-hdg-lead
----------------------------------------------- */
.products-hdg-lead {
  text-align: center;
}
.products-hdg-lead_text {
  font-size: var(--acq-font-size-3xl);
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding: 0 30px;
}
.products-hdg-lead_text::before, .products-hdg-lead_text::after {
  content: "";
  position: absolute;
  background-color: var(--acq-color-primary);
  width: 2px;
  height: 55px;
  bottom: 0;
}
.products-hdg-lead_text::before {
  transform: rotate(-30deg);
  left: 0;
}
.products-hdg-lead_text::after {
  transform: rotate(30deg);
  right: 0;
}
.products-hdg-lead_strong {
  font-size: var(--acq-font-size-7xl);
  color: var(--acq-color-primary);
}
@media only screen and (max-width: 767px) {
  .products-hdg-lead_text {
    font-size: var(--acq-font-size-lg);
    padding: 0 20px;
  }
  .products-hdg-lead_text::before, .products-hdg-lead_text::after {
    content: "";
    position: absolute;
    background-color: var(--acq-color-primary);
    width: 2px;
    height: 30px;
    bottom: 0;
  }
  .products-hdg-lead_strong {
    font-size: var(--acq-font-size-3xl);
  }
}

/* ----------------------------------------------------------------
    Carousel (.products-carousel[-*])
----------------------------------------------------------------- */
/* .products-carousel
----------------------------------------------- */
.products-carousel {
  position: relative;
  margin-bottom: var(--acq-spacing-md);
}
.products-carousel_track {
  position: relative;
}
.products-carousel_track::before, .products-carousel_track::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  z-index: var(--acq-z-index-layer1);
  width: calc(50vw - 50% + 50px);
  height: 100%;
}
.products-carousel_track::before {
  left: calc(100% - 50px);
  background-image: linear-gradient(to right, transparent, var(--acq-color-bg-beige));
}
.products-carousel_track::after {
  right: calc(100% - 50px);
  background-image: linear-gradient(to left, transparent, var(--acq-color-bg-beige));
}
.js-unavailable .products-carousel_track {
  overflow: auto;
}
.products-carousel_list {
  display: flex;
  margin-bottom: 0;
}
.products-carousel_item {
  flex-shrink: 0;
  margin-right: var(--acq-gutter);
}
.products-carousel_item:last-child {
  margin-right: 0;
}
.products-carousel_card {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  row-gap: 4px;
  height: 100%;
  padding: 24px;
  background-color: var(--acq-color-white);
  border: 1px solid var(--acq-color-beige);
  border-radius: var(--acq-rounded-lg);
  box-shadow: var(--acq-shadow-card);
  color: var(--acq-color-font);
  text-decoration: none;
  text-align: center;
  transition: background-color var(--acq-transition-duration) var(--acq-transition-tf);
}
.products-carousel_card:is(:hover, :active, :focus-visible) {
  background-color: var(--acq-color-bg-gray);
  color: var(--acq-color-font);
}
.products-carousel_card:is(a:not(:any-link)) {
  background-color: var(--acq-color-beige);
}
.products-carousel_card:is(a:not(:any-link)):is(:hover, :active, :focus-visible) {
  background-color: var(--acq-color-beige);
  cursor: not-allowed;
}
.products-carousel_arrow-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: var(--acq-z-index-layer1);
  width: 60px;
  height: 60px;
  margin: auto;
  background-color: var(--acq-color-white);
  border: 1px solid var(--acq-color-beige);
  border-radius: 50%;
}
.products-carousel_arrow-btn::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  width: 32px;
  height: 32px;
  margin: auto;
  background-color: var(--acq-color-primary);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.products-carousel_arrow-btn.-prev {
  left: 24px;
}
.products-carousel_arrow-btn.-prev::before {
  -webkit-mask-image: url("/common_a/img/acquisition/general/mask/carousel-prev.svg");
  mask-image: url("/common_a/img/acquisition/general/mask/carousel-prev.svg");
}
.products-carousel_arrow-btn.-next {
  right: 24px;
}
.products-carousel_arrow-btn.-next::before {
  -webkit-mask-image: url("/common_a/img/acquisition/general/mask/carousel-next.svg");
  mask-image: url("/common_a/img/acquisition/general/mask/carousel-next.svg");
}
.products-carousel_arrow-btn:disabled {
  display: none;
}
@media only screen and (max-width: 767px) {
  .products-carousel {
    margin-left: calc(-1 * var(--acq-gutter-content));
    margin-right: calc(-1 * var(--acq-gutter-content));
  }
  .products-carousel_track::before, .products-carousel_track::after {
    content: initial;
  }
  .products-carousel_list {
    overflow-x: auto;
  }
  .products-carousel_item {
    width: 208px;
  }
  .products-carousel_item:first-child {
    margin-left: var(--acq-gutter-content);
  }
  .products-carousel_item:last-child {
    margin-right: var(--acq-gutter-content);
  }
  .products-carousel_item:only-child {
    margin-left: auto;
    margin-right: auto;
  }
  .products-carousel_arrow {
    display: none;
  }
}

/* ----------------------------------------------------------------
    Text (.products-text[-*])
----------------------------------------------------------------- */
/* .products-text-underline
----------------------------------------------- */
.products-text-underline {
  background-image: linear-gradient(to top, var(--acq-color-bg-red) 30%, transparent 30%);
}

.products-text-green {
  color: #009740;
}