@charset "Shift_JIS";

/*==========================================
  Top page style
=============================================*/
/*------------------------------
  Common parts（`.top-*`）
--------------------------------*/
/* KV
----------------*/
.top-kv {
  overflow: hidden;
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-kv {
      margin-inline: calc(var(--content-main-inline-padding) * -1);
      position: relative;
    }
  }
}

@media all and (min-width: 768px), print {
  .top-kv {
    margin-top: 20px;
    /* To make the outline style visible on the focus element of a child element */
    padding: var(--outline-width) 0;
  }
}

.top-kv__slider {
  margin-inline: auto;
}

.top-kv__slider:not(.is-initialized) {
  overflow: hidden;
  visibility: hidden;
}

@media all and (min-width: 768px), print {
  .top-kv__slider:not(.is-initialized) {
    height: 380px;
  }
}

@media all and (min-width: 768px), print {
  .top-kv__track {
    overflow: visible;
  }
}

.top-kv__navigation {
  align-items: center;
  column-gap: var(--spacing-16);
  display: flex;
  justify-content: center;
}

.top-kv__navigation-prev,
.top-kv__navigation-next {
  background-color: transparent;
  box-shadow: none;
  height: 24px;
  margin-top: 0;
  position: relative;
  width: 24px;
}

.top-kv__navigation-prev::before,
.top-kv__navigation-next::before {
  content: "";
  height: var(--icon-size-large);
  left: 50%;
  margin: calc(var(--icon-size-large) / 2 * -1) 0 0 calc(var(--icon-size-large) / 2 * -1);
  position: absolute;
  top: 50%;
  width: var(--icon-size-large);
}

.top-kv__navigation-prev::before {
  background: var(--bg-ico-chevron-left);
}


.top-kv__navigation-prev {
  left: auto;
}


.top-kv__navigation-next::before {
  background: var(--bg-ico-chevron-right);
}


.top-kv__navigation-next {
  right: 0;
}

.top-kv__controls {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 24px auto 0;
  width: fit-content;
}

.top-kv__controls--lock {
  display: none;
}

.top-kv__pagination {
  padding-right: 0;
  position: relative;
}

.top-kv__pagination li:not(:first-child) {
  margin-left: 5px;
}

.top-kv__pagination .splide__pagination__page {
  background-color: var(--color-gray02);
  border-radius: 50%;
  display: block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
}

.top-kv__pagination .splide__pagination__page.is-active {
  background-color: var(--color-mufg-red);
}

@media all and (min-width: 768px), print {
  .top-kv__pagination .splide__pagination__page:hover {
    cursor: pointer;
  }
}



.top-kv__toggle {
  border-left: 4px solid var(--color-black);
  border-right: 4px solid var(--color-black);
  height: 14px;
  margin-left: 24px;
  margin-right: 3px;
  position: relative;
  width: 11px;
  z-index: 1;
}

.top-kv__toggle:not(.is-active) {
  border: none;
  margin-right: 0;
  position: relative;
  width: 14px;
}

.top-kv__toggle:not(.is-active)::before {
  border: 7px solid transparent;
  border-left: 11px solid var(--color-black);
  border-right: 0;
  content: "";
  height: 0;
  inset: 0;
  position: absolute;
  width: 0;
}

.top-kv__toggle span {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media all and (min-width: 768px), print {
  .top-kv__toggle:hover {
    cursor: pointer;
  }
}

/* card */
.top-kv-card {
  overflow: hidden;
  position: relative;
  background-color: var(--color-light-gray02);
  display: grid;
  grid-template: 1fr auto/none;
  height: 100%;
}

.top-kv-card::before {
  transition: opacity 0.4s 0s ease;
  background-color: var(--color-white);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-kv-card:hover::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-kv-card:active::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media all and (min-width: 768px), print {
  .top-kv-card {
    border-radius: 12px;
    box-shadow: var(--box-shadow-type01);
    grid-template: none/1fr 748px;
    height: auto;
  }
}

.top-kv-card--image-full {
  box-shadow: none;
  display: block;
  height: auto;
}

.top-kv-card__detail {
  display: grid;
  padding: 10px 24px;
  place-content: center start;
}

@media all and (min-width: 768px), print {
  .top-kv-card__detail {
    padding: 8px 8px 8px 54px;
  }
}

.top-kv-card__title {
  /* To avoid generating line breaks at a screen size of 320px. */
  font-size: clamp(2.4rem, 7.466vw, 2.8rem);
  font-weight: 700;
}

@media all and (min-width: 768px), print {
  .top-kv-card__title {
    font-size: 3.3rem;
  }
}

.top-kv-card__lead {
  font-size: var(--text-medium);
  font-weight: 500;
  line-height: var(--line-height-medium);
  margin-top: 12px;
}

@media all and (min-width: 768px), print {
  .top-kv-card__lead {
    margin-top: 14px;
  }
}

.top-kv-card__text {
  align-items: center;
  display: flex;
  margin-top: 16px;
  width: fit-content;
}

.top-kv-card__text::before {
  background: var(--bg-ico-chevron-round-right);
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: var(--icon-size-medium);
  margin-right: 8px;
  width: var(--icon-size-medium);
}

@media all and (min-width: 768px), print {
  .top-kv-card__text {
    margin-top: 20px;
  }

  .top-kv-card__text::before {
    height: var(--icon-size-large);
    width: var(--icon-size-large);
  }
}

.top-kv-card__text--chevron-bottom::before {
  transform: rotate(90deg);
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-kv-card__image img {
      height: 100%;
      object-fit: contain;
      object-position: top;
      width: 100%;
    }
  }
}

/* Section
----------------*/
.top-section {
  padding: var(--spacing-80) var(--content-main-inline-padding);
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-section {
      margin-inline: calc(var(--content-main-inline-padding) * -1);
      position: relative;
    }
  }
}

@media all and (min-width: 768px), print {
  .top-section {
    padding: var(--spacing-120) 0;
  }
}

.top-section--deco-semicircle01 {
  overflow: hidden;
  position: relative;
}

.top-section--deco-semicircle01::before {
  background-color: var(--color-mufg-red);
  clip-path: ellipse(210% 100% at 50% 0%);
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.top-section--deco-semicircle01 .c-title2 {
  color: var(--color-white);
}

.top-section--deco-semicircle01 .c-title2::before {
  background-color: var(--color-white);
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-section--deco-semicircle01::before {
      aspect-ratio: 0.669;
    }
  }
}

@media all and (min-width: 768px), print {
  .top-section--deco-semicircle01::before {
    clip-path: ellipse(98% 100% at 50% 0%);
    height: 430px;
  }
}

.top-section--deco-bg01 {
  background-color: var(--color-light-red03);
}

.top-section--deco-bg02 {
  position: relative;
}

.top-section--deco-bg02::before {
  background-color: var(--color-mufg-red);
  bottom: 0;
  content: "";
  height: 448px;
  left: 0;
  position: absolute;
  width: 100%;
}

.top-section--deco-donut01 {
  overflow: hidden;
}

.top-section--deco-needs {
  overflow: hidden;
  padding-bottom: var(--spacing-80);
  position: relative;
}

@media all and (min-width: 768px), print {
  .top-section--deco-needs::after {
    background-color: var(--color-mufg-red);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 415px;
    width: 100%;
    z-index: -1;
  }
}

@media all and (min-width: 768px), print {
  .top-section__inner {
    margin-inline: auto;
    max-width: var(--content-main-width);
    width: 100%;
  }
}

[class*="top-section--deco-donut"] .top-section__inner {
  position: relative;
}

[class*="top-section--deco-donut"] .top-section__inner::before {
  aspect-ratio: 1/1;
  clip-path: circle(50%);
  content: "";
  -webkit-mask-image: radial-gradient(transparent 35%, black 35%);
  mask-image: radial-gradient(transparent 35%, black 35%);
  position: absolute;
  z-index: -1;
}

.top-section--deco-donut01 .top-section__inner::before {
  background: linear-gradient(to bottom, rgba(207, 15, 26, 0.3) 0%, rgba(207, 15, 26, 0.3) 59%, #f8f7ef 59%, #f8f7ef 100%);
  backdrop-filter: blur(30px) opacity(50%);
  height: 420px;
  right: -186px;
  top: 138px;
  width: 420px;
}

@media all and (min-width: 768px), print {
  .top-section--deco-donut01 .top-section__inner::before {
    height: 1190px;
    right: -544px;
    top: 0;
    width: 1190px;
  }
}

.top-section--deco-donut02 .top-section__inner::before {
  background-color: #f7f7f7;
  height: 322px;
  left: -186px;
  top: -50px;
  width: 322px;
}

@media all and (min-width: 768px), print {
  .top-section--deco-donut02 .top-section__inner::before {
    height: 865px;
    left: -524px;
    top: -528px;
    width: 865px;
  }
}

.top-section__inner--deco-donut01 {
  position: relative;
}

.top-section__inner--deco-donut01::before {
  aspect-ratio: 1/1;
  background-color: var(--color-light-gray02);
  clip-path: circle(50%);
  content: "";
  -webkit-mask-image: radial-gradient(transparent 35%, black 35%);
  mask-image: radial-gradient(transparent 35%, black 35%);
  mix-blend-mode: soft-light;
  left: -90.7692307692%;
  position: absolute;
  top: 138px;
  width: 149.5384615385%;
}

@media all and (min-width: 768px), print {
  .top-section__inner--deco-donut01::before {
    height: 900px;
    mask-image: radial-gradient(transparent 35%, black 35%);
    left: -510px;
    top: -258px;
    width: 900px;
  }
}

.top-section__content {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 40px 20px;
}

@media all and (min-width: 768px), print {
  .top-section__content {
    padding: 48px 40px;
  }
}

/* Column
----------------*/
.top-column01 {
  display: grid;
  gap: var(--spacing-20);
  grid-template-columns: repeat(2, 1fr);
}

@media all and (min-width: 768px), print {
  .top-column01 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-40) var(--spacing-24);
    justify-content: center;
  }

  .top-column01__item_notice--pc {
    margin-bottom: calc(var(--spacing-24)* -1);
  }

}

@media not print {
  @media not all and (min-width: 768px) {
    .top-column01__item_noticePair--sp {
      margin-bottom: 42px;
    }
  }
}

.top-column01__item>*:only-child {
  height: 100%;
}


@media all and (min-width: 768px), print {
  .top-column01__item {
    width: calc((100% - var(--spacing-24) * 3) / 4);
  }
}

/* Card-button
----------------*/
.top-card-button01 {
  overflow: hidden;
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray02);
  border-radius: 8px;
  box-shadow: var(--box-shadow-type07);
  display: block;
  padding: 20px 4px;
}

.top-card-button01::before {
  transition: opacity 0.4s 0s ease;
  background-color: var(--color-white);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-card-button01:hover::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-card-button01:active::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media all and (min-width: 768px), print {
  .top-card-button01 {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

.top-card-button01__image {
  display: grid;
  place-content: center;
}

.top-card-button01__text {
  font-size: var(--text-large);
  font-weight: 700;
  line-height: var(--line-height-large);
  display: grid;
  min-height: calc(2em * var(--line-height-large));
  place-content: center;
  margin-top: 2px;
  text-align: center;
}

.top-card-button01[target="_blank"] .top-card-button01__text span::after {
  background: var(--bg-ico-blank);
  content: "";
  display: inline-block;
  height: var(--icon-size-small);
  margin-inline: 4px;
  position: relative;
  top: calc((1em * var(--line-height-medium) - var(--icon-size-small)) / 2);
  vertical-align: text-top;
  width: var(--icon-size-small);
}

@media all and (min-width: 768px), print {
  .top-card-button01__text {
    margin-top: 20px;
  }
}

/*------------------------------
  Area parts in Kojin（`.top-k-*`）
--------------------------------*/
/* Parts
----------------*/
/* panel */
.c-slider:not(.is-active) .top-k-panel-layout,
.c-slider.is-initialized:not(.is-active) .top-k-panel-layout {
  /* 'is-initialized, is-active' is a class dynamically assigned by 'splide in vender' */
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: var(--spacing-24);
}

@media all and (min-width: 768px), print {

  .c-slider:not(.is-active) .top-k-panel-layout,
  .c-slider.is-initialized:not(.is-active) .top-k-panel-layout {
    /* 'is-initialized, is-active' is a class dynamically assigned by 'splide in vender' */
    grid-template-columns: repeat(auto-fit, minmax(0, 384px));
    column-gap: var(--spacing-24);
    place-content: center;
  }
}

@media print {

  .c-slider:not(.is-active) .top-k-panel-layout,
  .c-slider.is-initialized:not(.is-active) .top-k-panel-layout {
    grid-template-columns: repeat(auto-fit, minmax(0, calc((100% - 48px) / 3)));
  }
}

.top-k-panel01 {
  overflow: hidden;
  position: relative;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-type01);
  border: 1px solid var(--color-gray02);
  border-radius: 8px;
  break-inside: avoid;
  display: block;
}

.top-k-panel01::before {
  transition: opacity 0.4s 0s ease;
  background-color: var(--color-white);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-panel01:hover::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-k-panel01:active::before {
    opacity: var(--opacity-hover-50per);
  }
}

.top-k-panel01:only-child {
  height: 100%;
}

.top-k-panel01__image {
  width: 100%;
}

.top-k-panel01__detail {
  padding: 12px 24px;
}

.top-k-panel01__description {
  font-size: var(--text-medium);
  line-height: var(--line-height-medium);
}

.top-k-panel01:where([target="_blank"], [href*=".pdf"]) .top-k-panel01__description::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  position: relative;
  /* Necessary if the componees are nested, e.g. if they are used in a list componee. */
  vertical-align: text-top;
}

.top-k-panel01[target="_blank"] .top-k-panel01__description::after {
  background: var(--bg-ico-blank);
  height: var(--icon-size-small);
  top: calc((1em * var(--line-height-medium) - var(--icon-size-small)) / 2);
  width: var(--icon-size-small);
}

.top-k-panel01[href*=".pdf"] .top-k-panel01__description::after {
  background: var(--bg-ico-pdf);
  height: var(--icon-size-large);
  top: calc((1em * var(--line-height-medium) - var(--icon-size-large)) / 2);
  width: var(--icon-size-large);
}

.top-k-panel02 {
  transition: opacity 0.4s 0s ease;
  display: block;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-panel02:hover {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-k-panel02:active {
    opacity: var(--opacity-hover-50per);
  }
}

.top-k-panel02:only-child {
  height: 100%;
}

.top-k-panel02__image {
  border: 1px solid var(--color-gray02);
  border-radius: 8px;
  filter: var(--drop-shadow-type01);
  overflow: hidden;
}

.top-k-panel02__image img {
  width: 100%;
}

.top-k-panel02__detail {
  margin-top: 10px;
}

.top-k-panel02__description {
  font-size: var(--text-medium);
  line-height: var(--line-height-medium);
}

.top-k-panel02:where([target="_blank"], [href*=".pdf"]) .top-k-panel02__description::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  position: relative;
  /* Necessary if the componees are nested, e.g. if they are used in a list componee. */
  vertical-align: text-top;
}

.top-k-panel02[target="_blank"] .top-k-panel02__description::after {
  background: var(--bg-ico-blank);
  height: var(--icon-size-small);
  top: calc((1em * var(--line-height-medium) - var(--icon-size-small)) / 2);
  width: var(--icon-size-small);
}

.top-k-panel02[href*=".pdf"] .top-k-panel02__description::after {
  background: var(--bg-ico-pdf);
  height: var(--icon-size-large);
  top: calc((1em * var(--line-height-medium) - var(--icon-size-large)) / 2);
  width: var(--icon-size-large);
}

/* detail */
.top-k-detail01__title {
  align-items: center;
  color: var(--color-mufg-gray-50per);
  display: flex;
}

.top-k-detail01__title::after {
  background-color: currentColor;
  content: "";
  height: 1px;
  margin-left: 30px;
  width: 100%;
  max-width: 120px;
}

@media all and (min-width: 768px), print {
  .top-k-detail01__title::after {
    margin-left: 20px;
    width: 180px;
  }
}

.top-k-detail01__heading {
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media all and (min-width: 768px), print {
  .top-k-detail01__heading {
    font-size: 1.4rem;
    font-weight: 500;
  }
}

.top-k-detail01__description:not(:first-child) {
  margin-top: 16px;
}

@media all and (min-width: 768px), print {
  .top-k-detail01__description:not(:first-child) {
    margin-top: 32px;
  }
}

.top-k-detail01__image img {
  width: 100%;
}

@media all and (min-width: 768px), print {
  .top-k-detail01__image {
    width: 470px;
  }
}

.top-k-detail01__focus {
  color: var(--color-mufg-red);
  font-feature-settings: "palt";
  font-size: 2.8rem;
  font-weight: 700;
}

@media all and (min-width: 768px), print {
  .top-k-detail01__focus {
    font-size: 3.8rem;
  }
}

.top-k-detail01__text {
  font-size: 1.6rem;
  line-height: 2;
}

.top-k-detail01__text:not(:first-child) {
  margin-top: 28px;
}

@media all and (min-width: 768px), print {
  .top-k-detail01__text:not(:first-child) {
    margin-top: 48px;
  }
}

/* Needs
----------------*/
.top-k-needs-container {
  padding: 0 15px;
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-k-needs-container {
      margin-inline: calc(var(--content-main-inline-padding) * -1);
      position: relative;
    }
  }
}

.top-k-needs-container:not(:first-child) {
  margin-top: var(--spacing-32);
}

@media all and (min-width: 768px), print {
  .top-k-needs-container {
    padding: 0;
  }

  .top-k-needs-container:not(:first-child) {
    margin-top: var(--spacing-56);
  }
}

/* list */
@media all and (min-width: 768px), print {
  .top-k-needs-list01 {
    display: grid;
    gap: 0 var(--spacing-24);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-k-needs-list01__item {
      position: relative;
    }

    .top-k-needs-list01__item:not(:first-child) {
      margin-top: var(--spacing-24);
    }

    .top-k-needs-list01__item:nth-child(3)::after {
      background-color: var(--color-mufg-red);
      bottom: auto;
      content: "";
      height: 200vh;
      inset: 0;
      position: absolute;
      top: 64px;
      width: calc(100% + var(--content-main-inline-padding) * 2);
      margin: 0 calc(var(--content-main-inline-padding) * -1);
      z-index: -1;
    }
  }
}

.top-k-needs-list02 {
  display: grid;
  gap: var(--spacing-16);
  grid-template-columns: repeat(auto-fit, calc((100% - var(--spacing-16)) / 2));
  justify-content: center;
}

@media all and (min-width: 768px), print {
  .top-k-needs-list02 {
    gap: var(--spacing-20);
    grid-template-columns: repeat(auto-fit, minmax(0, 208px));
  }
}

.top-k-needs-list02_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 1;
}

@supports not (grid-template-columns: subgrid) {
  .top-k-needs-list02_item>*:only-child {
    height: 100%;
  }
}

.top-k-sns-list01 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: var(--spacing-24);
}

@media all and (min-width: 768px), print {
  .top-k-sns-list01 {
    align-items: center;
    column-gap: var(--spacing-80);
    display: flex;
    justify-content: center;
  }
}

.top-k-sns-list01__item {
  align-items: center;
  column-gap: var(--spacing-8);
  display: flex;
  font-size: 2rem;
  position: relative;
}

.top-k-sns-list01__item .c-link {
  font-size: inherit;
}

.top-k-sns-list01__item .c-link--ico-blank::after {
  margin-inline: 8px 0;
}

@media all and (min-width: 768px), print {
  .top-k-sns-list01__item {
    column-gap: var(--spacing-16);
    font-size: 2.4rem;
  }

  .top-k-sns-list01__item .c-link--ico-blank::after {
    margin-inline: 12px 0;
  }

  .top-k-sns-list01__item:not(:first-child)::before {
    background-color: var(--color-gray02);
    content: "";
    display: block;
    height: 34px;
    left: -40px;
    margin-top: -17px;
    position: absolute;
    top: 50%;
    width: 1px;
  }
}

/* box */
.top-k-needs-box-wrapper {
  margin-top: var(--spacing-24);
}

@media all and (min-width: 768px), print {
  .top-k-needs-box-wrapper {
    margin-top: var(--spacing-20);
  }
}

.top-k-needs-box {
  margin-top: var(--spacing-20);
  padding-top: 14px;
  position: relative;
}

.top-k-needs-box::before {
  background-color: var(--color-white);
  content: "";
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  height: 18px;
  left: 50%;
  margin-left: -12px;
  position: absolute;
  top: 3px;
  width: 24px;
}

.top-k-needs-box[aria-hidden="true"] {
  display: none;
}

@media all and (min-width: 768px), print {
  .top-k-needs-box {
    padding-top: 18px;
  }

  .top-k-needs-box::before {
    height: 19px;
    margin-left: -10px;
    width: 20px;
  }
}

@media not print {
  @media not all and (min-width: 768px) {

    .top-k-needs-box--triangle-pos1::before,
    .top-k-needs-box--triangle-pos2::before {
      z-index: 3;
    }

    .top-k-needs-box--triangle-pos1::after,
    .top-k-needs-box--triangle-pos2::after {
      background-color: var(--color-gray02);
      content: "";
      clip-path: polygon(0 100%, 50% 0, 100% 100%);
      height: 20px;
      left: 50%;
      margin-left: -13px;
      position: absolute;
      top: 1px;
      width: 26px;
      z-index: 1;
    }
  }
}

@media all and (min-width: 768px), print {
  .top-k-needs-box--triangle-pos1::before {
    left: 11.75%;
  }
}

@media all and (min-width: 768px), print {
  .top-k-needs-box--triangle-pos2::before {
    left: 37.25%;
  }
}

@media all and (min-width: 768px), print {
  .top-k-needs-box--triangle-pos3::before {
    left: 62.75%;
  }
}

@media all and (min-width: 768px), print {
  .top-k-needs-box--triangle-pos4::before {
    left: 88.25%;
  }
}

.top-k-needs-box__inner {
  background-color: var(--color-white);
  border-radius: 8px;
  display: block;
  padding: 30px 20px;
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-k-needs-box__inner {
      position: relative;
      z-index: 2;
    }
  }
}

@media all and (min-width: 768px), print {
  .top-k-needs-box__inner {
    border-radius: 10px;
    border: none;
    padding: 40px;
  }
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-k-needs-box__inner--sp-border {
      border: 1px solid var(--color-gray02);
    }
  }
}

.top-k-needs-box__title {
  margin-bottom: 20px;
  text-align: center;
}

@media all and (min-width: 768px), print {
  .top-k-needs-box__title {
    margin-bottom: 40px;
  }
}

.top-k-needs-box__heading {
  font-size: 1.6rem;
  font-weight: 700;
}

@media all and (min-width: 768px), print {
  .top-k-needs-box__heading {
    font-size: 2rem;
  }
}

.top-k-needs-box__text {
  font-size: 2rem;
  text-align: center;
}

@media all and (min-width: 768px), print {
  .top-k-needs-box__text {
    display: grid;
    min-height: 78px;
    place-content: center;
  }
}

.top-k-needs-box__button {
  transition: opacity 0.4s 0s ease;
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 9999px;
  display: flex;
  font-size: 1.6rem;
  height: 40px;
  justify-content: center;
  margin: var(--spacing-24) auto 0;
  padding: 8px;
  width: 120px;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-needs-box__button:hover {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-k-needs-box__button:active {
    opacity: var(--opacity-hover-50per);
  }
}

.top-k-needs-box__button::before {
  background: var(--bg-ico-close);
  content: "";
  display: inline-block;
  height: var(--icon-size-small);
  margin-right: 8px;
  width: var(--icon-size-small);
}

/* card */
.top-k-needs-card01 {
  border-radius: 8px;
  box-shadow: var(--box-shadow-type01);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.top-k-needs-card01__label,
.top-k-needs-card01__button {
  background-color: var(--color-white);
  border: 1px solid var(--color-mufg-red);
  overflow: hidden;
}

.top-k-needs-card01__label {
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px 4px 12px 4px;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-needs-card01__label:hover {
    cursor: pointer;
  }
}

@media all and (min-width: 768px), print {
  .top-k-needs-card01__label {
    min-height: 174px;
    padding-top: 32px;
  }
}

.top-k-needs-card01__label-ico {
  margin-inline: auto;
}

.top-k-needs-card01__label-txt {
  display: grid;
  margin-top: 12px;
  place-content: center;
  text-align: center;
}

@media all and (min-width: 768px), print {
  .top-k-needs-card01__label-txt {
    min-height: calc(2em * var(--line-height-medium));
  }
}

.top-k-needs-card01__button {
  overflow: hidden;
  position: relative;
  font-size: var(--text-medium);
  line-height: var(--line-height-medium);
  border-top: 1px solid var(--color-gray02);
  border-radius: 0 0 8px 8px;
  display: grid;
  font-weight: 500;
  min-height: 48px;
  padding: 4px calc(var(--icon-size-large) + 20px);
  place-content: center;
  position: relative;
  width: 100%;
}

.top-k-needs-card01__button::before {
  transition: opacity 0.4s 0s ease;
  background-color: var(--color-white);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-needs-card01__button:hover::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-k-needs-card01__button:active::before {
    opacity: var(--opacity-hover-50per);
  }
}

.top-k-needs-card01__button::after {
  background: var(--bg-ico-chevron-bottom);
  content: "";
  display: inline-block;
  height: var(--icon-size-large);
  margin-top: calc(var(--icon-size-large) / 2 * -1);
  position: absolute;
  right: 20px;
  top: 50%;
  /* Match the value of the options in the `animate()` method of the accordion.*/
  transition: transform 0.4s 0s ease;
  width: var(--icon-size-large);
}

.top-k-needs-card01__button:focus-visible {
  outline-offset: calc(-1 * var(--outline-width));
}

.top-k-needs-card01__button[aria-expanded="true"] {
  border-bottom: none;
  border-radius: 0;
}

.top-k-needs-card01__button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

@media all and (min-width: 768px), print {
  .top-k-needs-card01__button {
    font-weight: 400;
    min-height: 52px;
    padding: 4px calc(var(--icon-size-large) + 12px);
  }

  .top-k-needs-card01__button::after {
    right: 12px;
  }
}

.top-k-needs-card01__listbox {
  background-color: var(--color-white);
  border: 1px solid var(--color-mufg-red);
  border-top: none;
  border-radius: 0 0 8px 8px;
  display: none;
  overflow: hidden;
}

.top-k-needs-card01__listbox.is-opened {
  display: block;
}

@media all and (min-width: 768px), print {
  .top-k-needs-card01__listbox {
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1;
  }
}

.top-k-needs-card01__option {
  overflow: hidden;
  position: relative;
  background-color: inherit;
  border-top: 1px solid var(--color-mufg-red);
  cursor: pointer;
  padding: 12px 4px;
  text-align: center;
}

.top-k-needs-card01__option::before {
  transition: opacity 0.4s 0s ease;
  background-color: var(--color-white);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-needs-card01__option:hover::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-k-needs-card01__option:active::before {
    opacity: var(--opacity-hover-50per);
  }
}

.top-k-needs-card01__option:focus-visible {
  outline-offset: calc(-1 * var(--outline-width));
}

@media all and (min-width: 768px), print {
  .top-k-needs-card01__option {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}

.top-k-needs-card02 {
  overflow: hidden;
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray02);
  border-radius: 8px;
  box-shadow: var(--box-shadow-type01);
  display: block;
  padding: 14px;
}

.top-k-needs-card02::before {
  transition: opacity 0.4s 0s ease;
  background-color: var(--color-white);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-needs-card02:hover::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-k-needs-card02:active::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media all and (min-width: 768px), print {
  .top-k-needs-card02 {
    padding: 18px;
  }
}

.top-k-needs-card02__image {
  display: block;
  height: 59px;
  overflow: hidden;
}

.top-k-needs-card02__image img {
  height: 100%;
  margin-inline: auto;
  object-fit: contain;
  width: 100%;
}

@media all and (min-width: 768px), print {
  .top-k-needs-card02__image {
    height: 85px;
  }
}

.top-k-needs-card02__text {
  font-size: 1.4rem;
  margin-top: var(--spacing-12);
}

@media all and (min-width: 768px), print {
  .top-k-needs-card02__text {
    margin-top: var(--spacing-20);
  }
}

/* Guide
----------------*/
/* layout */
.top-k-guide-layout01 {
  display: grid;
  gap: var(--spacing-20);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.top-k-guide-layout01:not(:first-child) {
  margin-top: var(--spacing-32);
}

@media all and (min-width: 768px), print {
  .top-k-guide-layout01 {
    gap: var(--spacing-24);
    grid-template-columns: minmax(0, 486px) minmax(0, 690px);
    grid-template-areas: "counseling  my-counter""guide       guide";
  }

  .top-k-guide-layout01:not(:first-child) {
    margin-top: var(--spacing-56);
  }
}

.top-k-guide-layout01__section {
  overflow: hidden;
}

@media all and (min-width: 768px), print {
  .top-k-guide-layout01__section:first-child {
    display: flex;
    flex-direction: column;
    grid-area: counseling;
  }

  .top-k-guide-layout01__section:nth-child(2) {
    grid-area: my-counter;
  }

  .top-k-guide-layout01__section:last-child {
    grid-area: guide;
  }
}

.top-k-guide-layout01__title {
  background-color: var(--color-light-red01);
  border: 1px solid var(--color-light-red01);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  padding: 16px 4px;
}

.top-k-guide-layout01__heading {
  font-size: var(--heading-lv4);
  font-weight: 700;
  line-height: var(--line-height-medium);
  color: var(--color-white);
  text-align: center;
}

.top-k-guide-layout01__body {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-red01);
  border-radius: 0 0 8px 8px;
  padding: 20px 20px 32px 20px;
}

@media all and (min-width: 768px), print {
  .top-k-guide-layout01__body {
    padding: 32px 30px;
  }
}

.top-k-guide-layout01__body--type01 {
  display: grid;
  place-content: center;
  place-items: center;
}

.top-k-guide-layout01__body--type01 .c-text {
  text-align: center;
}

@media all and (min-width: 768px), print {
  .top-k-guide-layout01__body--type01 {
    flex-grow: 1;
  }
}

.top-k-guide-layout01__body--type02 {
  background-color: var(--color-light-red03);
  border-width: 2px;
}

.top-k-guide-layout01__body--type02 .c-text {
  text-align: center;
}

.top-k-guide-layout01__body--type03 {
  display: grid;
  gap: var(--spacing-20) 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media all and (min-width: 768px), print {
  .top-k-guide-layout01__body--type03 {
    grid-template-columns: 1fr 400px;
    gap: 0 var(--spacing-40);
  }
}

/* card */
.top-k-guide-card01 {
  overflow: hidden;
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray02);
  border-radius: 8px;
  box-shadow: var(--box-shadow-type07);
  display: block;
  margin-top: 24px;
  padding: 20px;
}

.top-k-guide-card01::before {
  transition: opacity 0.4s 0s ease;
  background-color: var(--color-white);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-guide-card01:hover::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-k-guide-card01:active::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media all and (min-width: 768px), print {
  .top-k-guide-card01 {
    margin-top: 32px;
    width: 340px;
  }
}

.top-k-guide-card01__list {
  column-gap: var(--spacing-20);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  place-content: center;
}

.top-k-guide-card01__item {
  display: grid;
  grid-template-rows: repeat(1, minmax(0, 1fr));
  place-items: center;
  row-gap: var(--spacing-4);
}

.top-k-guide-card01__text {
  font-size: var(--text-large);
  font-weight: 700;
  line-height: var(--line-height-large);
  margin-top: 10px;
  text-align: center;
}

@media all and (min-width: 768px), print {
  .top-k-guide-card01__text {
    margin-top: 12px;
  }
}

.top-k-guide-card02 {
  overflow: hidden;
  position: relative;
  background-color: var(--color-white);
  border: 2px solid var(--color-mufg-red);
  border-radius: 8px;
  box-shadow: var(--box-shadow-type07);
  column-gap: var(--spacing-20);
  display: grid;
  grid-template-columns: 1fr 2.143fr;
  margin-top: 20px;
  padding: 20px;
  place-items: center start;
}

.top-k-guide-card02::before {
  transition: opacity 0.4s 0s ease;
  background-color: var(--color-white);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-guide-card02:hover::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-k-guide-card02:active::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media all and (min-width: 768px), print {
  .top-k-guide-card02 {
    column-gap: var(--spacing-24);
    grid-template-columns: 130px 1fr;
    margin-top: 32px;
    padding: 32px;
  }
}

.top-k-guide-card02__image {
  display: block;
}

.top-k-guide-card02__text {
  font-size: 1.6rem;
  font-weight: 700;
}

@media all and (min-width: 768px), print {
  .top-k-guide-card02__text {
    font-size: 2rem;
  }
}

/* lead, text */
.top-k-guide-lead01 {
  font-size: var(--text-x-large);
  font-weight: 700;
  line-height: var(--line-height-medium);
  text-align: center;
}

/* detail */
.top-k-guide-detail01 {
  background-color: var(--color-white);
  border-radius: 8px;
  margin-top: 32px;
  padding: 20px;
}

@media all and (min-width: 768px), print {
  .top-k-guide-detail01 {
    margin-top: 40px;
  }
}

.top-k-guide-detail01__title {
  font-size: var(--text-medium);
  font-weight: 700;
  line-height: var(--line-height-medium);
  text-align: center;
}

.top-k-guide-detail01__title span {
  background: linear-gradient(transparent 50%, var(--color-cv-yellow) 50%);
  display: inline-block;
  line-height: 1;
}

.top-k-guide-detail01__description {
  margin-top: 8px;
}

.top-k-guide-detail01__grid {
  display: grid;
  gap: var(--spacing-20) 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 20px;
}

@media all and (min-width: 768px), print {
  .top-k-guide-detail01__grid {
    gap: 0 var(--spacing-16);
    grid-template-columns: 192px 1fr;
  }
}

.top-k-guide-detail01__image {
  padding: 0 28px;
  width: 100%;
}

.top-k-guide-detail01__image img {
  width: 100%;
}

@media all and (min-width: 768px), print {
  .top-k-guide-detail01__image {
    padding: 0;
  }
}

/* About
----------------*/
/* layout */
@media not print {
  @media not all and (min-width: 768px) {
    .top-k-about-layout01 {
      margin-inline: calc(var(--content-main-inline-padding) * -1);
      position: relative;
    }
  }
}

@media all and (min-width: 768px), print {
  .top-k-about-layout01 {
    padding: 60px 0;
    position: relative;
  }

  .top-k-about-layout01::before {
    background-color: var(--color-white);
    border-radius: 0 8px 8px 0;
    content: "";
    inset: 0;
    position: absolute;
    width: 61.054%;
  }
}

@media all and (min-width: 768px), print {
  .top-k-about-layout01__inner {
    margin-inline: auto;
    max-width: var(--content-main-width);
    width: 100%;
  }
}

@media all and (min-width: 768px), print {
  .top-k-about-layout01__inner {
    position: relative;
    z-index: 1;
  }
}

/* column */
.top-k-about-column01 {
  display: grid;
  gap: 34px 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media all and (min-width: 768px), print {
  .top-k-about-column01 {
    align-items: center;
    gap: 0 70px;
    grid-template-columns: minmax(0, 594px) minmax(0, 588px);
  }
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-k-about-column01__body {
      background-color: var(--color-white);
      border-radius: 0 0 8px 0;
      margin-right: var(--content-main-inline-padding);
      order: 2;
      padding: 0 var(--content-main-inline-padding) 40px;
      position: relative;
      z-index: 1;
    }

    .top-k-about-column01__body::before {
      background-color: var(--color-white);
      content: "";
      height: 110px;
      inset: 0;
      position: absolute;
      top: -100px;
      z-index: -1;
    }
  }
}

.top-k-about-column01__body-button {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--spacing-12);
}

@media all and (min-width: 768px), print {
  .top-k-about-column01__body-button {
    margin-top: var(--spacing-32);
  }
}

.top-k-about-column01__image {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray02);
  border-radius: 8px 0 0 8px;
  display: grid;
  height: 224px;
  overflow: hidden;
  padding: 20px;
  place-content: center;
}

.top-k-about-column01__image img {
  width: 100%;
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-k-about-column01__image {
      border-right: none;
      margin-left: var(--content-main-inline-padding);
      order: 1;
      position: relative;
      z-index: 2;
    }
  }
}

@media all and (min-width: 768px), print {
  .top-k-about-column01__image {
    border-radius: 8px;
    height: 370px;
    padding: 0;
    width: minmax(0, 588px);
  }
}

/* Sustainability（sa）
----------------*/
/* column */
.top-k-sa-column01 {
  display: grid;
  gap: var(--spacing-32) 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media all and (min-width: 768px), print {
  .top-k-sa-column01 {
    gap: 0 var(--spacing-36);
    grid-template-columns: minmax(0, 588px) minmax(0, 1fr);
    margin: 0 -10px 0 -30px;
  }
}

@media print {
  .top-k-sa-column01 {
    margin: 0;
  }
}

.top-k-sa-column01__body {
  order: 2;
}

.top-k-sa-column01__body-button {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--spacing-12);
}

@media all and (min-width: 768px), print {
  .top-k-sa-column01__body-button {
    margin-top: var(--spacing-32);
  }
}

.top-k-sa-column01__image {
  order: 1;
}

.top-k-sa-column01__image img {
  filter: var(--drop-shadow-type03);
  width: 100%;
}

/* Recommend
----------------*/
.top-k-recommend-wrapper {
  display: grid;
  gap: var(--spacing-56) 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.top-k-recommend-wrapper:not(:first-child) {
  margin-top: var(--spacing-40);
}

@media all and (min-width: 768px), print {
  .top-k-recommend-wrapper {
    gap: 0 var(--spacing-80);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-k-recommend-wrapper:not(:first-child) {
    margin-top: var(--spacing-80);
  }
}

/* section */
@media all and (min-width: 768px), print {
  .top-k-recommend-section {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }

  @supports not (grid-template-columns: subgrid) {
    .top-k-recommend-section>*:only-child {
      height: 100%;
    }
  }
}

.top-k-recommend-section--deco-donut01 {
  position: relative;
}

.top-k-recommend-section--deco-donut01::before {
  aspect-ratio: 1/1;
  background-color: #f8f7ef;
  bottom: -132px;
  clip-path: circle(50%);
  content: "";
  height: 322px;
  -webkit-mask-image: radial-gradient(transparent 35%, black 35%);
  mask-image: radial-gradient(transparent 35%, black 35%);
  position: absolute;
  right: -190px;
  width: 322px;
  z-index: -1;
}

@media all and (min-width: 768px), print {
  .top-k-recommend-section--deco-donut01::before {
    bottom: auto;
    height: 865px;
    right: -614px;
    top: -432px;
    width: 865px;
  }
}

.top-k-recommend-section__heading img {
  width: 100%;
}

.top-k-recommend-section__heading--type01 {
  width: 218px;
}

@media all and (min-width: 768px), print {
  .top-k-recommend-section__heading--type01 {
    width: 279px;
  }
}

.top-k-recommend-section__heading--type02 {
  width: 189px;
}

@media all and (min-width: 768px), print {
  .top-k-recommend-section__heading--type02 {
    width: 203px;
  }
}

/* panel */
@media all and (min-width: 768px), print {

  .c-slider:not(.is-active) .top-k-recommend-panel-layout,
  .c-slider.is-initialized:not(.is-active) .top-k-recommend-panel-layout {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: var(--spacing-32);
  }
}

.top-k-recommend-panel {
  transition: opacity 0.4s 0s ease;
  display: block;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-recommend-panel:hover {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-k-recommend-panel:active {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-k-recommend-panel:hover .top-k-recommend-panel__title {
    text-decoration: none;
  }
}

@media (hover: none) {
  .top-k-recommend-panel:active .top-k-recommend-panel__title {
    text-decoration: none;
  }
}

@media all and (min-width: 768px), print {
  .top-k-recommend-panel {
    column-gap: var(--spacing-12);
    display: grid;
    grid-template-columns: 225px 1fr;
    place-items: flex-start;
  }
}

.top-k-recommend-panel__image {
  border: 1px solid var(--color-gray02);
  border-radius: 8px;
  filter: var(--drop-shadow-type01);
  overflow: hidden;
}

.top-k-recommend-panel__image img {
  width: 100%;
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-k-recommend-panel__body {
      margin-top: var(--spacing-20);
    }
  }
}

.top-k-recommend-panel__list {
  display: flex;
}

.top-k-recommend-panel__label {
  align-items: center;
  border: 1px solid var(--color-mufg-gray);
  border-radius: 15px;
  display: inline-flex;
  font-size: 1.2rem;
  justify-content: center;
  min-height: 27px;
  padding: 0 10px;
}

.top-k-recommend-panel__detail {
  margin-top: var(--spacing-12);
}

.top-k-recommend-panel__title {
  color: var(--color-link-blue);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: underline;
}

.top-k-recommend-panel__description {
  font-size: 1.4rem;
}

.top-k-recommend-panel__description:not(:first-child) {
  margin-top: var(--spacing-8);
}

.top-k-recommend-panel:where([target="_blank"], [href*=".pdf"]) .top-k-recommend-panel__description::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  position: relative;
  /* Necessary if the componees are nested, e.g. if they are used in a list componee. */
  vertical-align: text-top;
}

.top-k-recommend-panel[target="_blank"] .top-k-recommend-panel__description::after {
  background: var(--bg-ico-blank);
  height: var(--icon-size-small);
  top: calc((1em * var(--line-height-medium) - var(--icon-size-small)) / 2);
  width: var(--icon-size-small);
}

.top-k-recommend-panel[href*=".pdf"] .top-k-recommend-panel__description::after {
  background: var(--bg-ico-pdf);
  height: var(--icon-size-large);
  top: calc((1em * var(--line-height-medium) - var(--icon-size-large)) / 2);
  width: var(--icon-size-large);
}

/*------------------------------
  Area parts in Houjin（`.top-h-*`）
--------------------------------*/
/* Guide
----------------*/
/* list */
.top-h-guide-list01 {
  display: grid;
  gap: var(--spacing-16) 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media all and (min-width: 768px), print {
  .top-h-guide-list01 {
    gap: var(--spacing-40) var(--spacing-24);
    grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (min-width: 768px), print {
  .top-h-guide-list01__item>*:only-child {
    height: 100%;
  }
}

/* panel */
.top-h-guide-panel01 {
  overflow: hidden;
  position: relative;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-type01);
  border: 1px solid var(--color-gray02);
  border-radius: 8px;
  break-inside: avoid;
  display: block;
  padding: 20px 0;
}

.top-h-guide-panel01::before {
  transition: opacity 0.4s 0s ease;
  background-color: var(--color-white);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-h-guide-panel01:hover::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-h-guide-panel01:active::before {
    opacity: var(--opacity-hover-50per);
  }
}

@media all and (min-width: 768px), print {
  .top-h-guide-panel01 {
    border-radius: 10px;
    padding: 0;
  }
}

@media all and (min-width: 768px), print {
  .top-h-guide-panel01__detail {
    padding: 52.34375% 30px 24px;
    position: relative;
  }
}

.top-h-guide-panel01__title {
  font-size: var(--text-medium);
  font-weight: 700;
  line-height: var(--line-height-medium);
}

@media all and (min-width: 768px), print {
  .top-h-guide-panel01__title {
    margin-top: 20px;
  }
}

[class*="top-h-guide-panel01__title--ico"] {
  align-items: center;
  display: flex;
  justify-content: center;
}

[class*="top-h-guide-panel01__title--ico"]::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 28px;
  margin-right: 8px;
  width: 28px;
}

@media all and (min-width: 768px), print {
  [class*="top-h-guide-panel01__title--ico"] {
    justify-content: flex-start;
  }

  [class*="top-h-guide-panel01__title--ico"]::before {
    height: 32px;
    margin-right: 12px;
    width: 32px;
  }
}

.top-h-guide-panel01__title--ico-operation::before {
  background: var(--bg-btn-ico-operation);
}

.top-h-guide-panel01__title--ico-hr-solutions::before {
  background: var(--bg-btn-ico-hr-solutions);
}

.top-h-guide-panel01__title--ico-transfer-agent::before {
  background: var(--bg-btn-ico-transfer-agent);
}

.top-h-guide-panel01__title--ico-real-estate-business::before {
  background: var(--bg-btn-ico-real-estate-business);
}

.top-h-guide-panel01__title--ico-accumulate::before {
  background: var(--bg-btn-ico-accumulate);
}

.top-h-guide-panel01__title--ico-web-system-shares::before {
  background: var(--bg-btn-ico-web-system-shares);
}

.top-h-guide-panel01__description {
  font-size: var(--text-medium);
  line-height: var(--line-height-medium);
  column-gap: var(--spacing-12);
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  place-items: center;
}

.top-h-guide-panel01__description:not(:first-child) {
  margin-top: 12px;
}

@media all and (min-width: 768px), print {
  .top-h-guide-panel01__description {
    display: block;
  }

  .top-h-guide-panel01__description:not(:first-child) {
    margin-top: 20px;
  }
}

.top-h-guide-panel01__image {
  border-radius: 0 8px 8px 0;
  overflow: hidden;
}

@media all and (min-width: 768px), print {
  .top-h-guide-panel01__image {
    border-radius: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

.top-h-guide-panel01__text {
  font-size: var(--text-medium);
  line-height: var(--line-height-medium);
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-h-guide-panel01__text {
      padding-right: 12px;
    }
  }
}

/* Report
----------------*/
/* report01 */
.top-h-report01 {
  display: none;
  padding: 0 15px;
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-h-report01 {
      margin-inline: calc(var(--content-main-inline-padding) * -1);
      position: relative;
    }
  }
}

@media all and (min-width: 768px), print {
  .top-h-report01 {
    margin-inline: auto;
    max-width: var(--content-main-width);
    width: 100%;
  }
}

.top-h-report01:not(:first-child) {
  margin-top: var(--spacing-16);
}

.top-h-report01.is-active {
  display: block;
}

@media all and (min-width: 768px), print {
  .top-h-report01 {
    padding: 0;
  }
}

.top-h-report01__detail {
  background-color: var(--color-light-gray02);
  border-radius: 4px;
  display: grid;
  gap: var(--spacing-20) 0;
  grid-template-columns: 1fr;
  padding: 20px;
  position: relative;
}

@media all and (min-width: 768px), print {
  .top-h-report01__detail {
    gap: 0 var(--spacing-40);
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 16px 20px;
  }
}

.top-h-report01__title {
  align-items: center;
  display: flex;
  /* To avoid generating line breaks at a screen size of 320px. */
  font-size: clamp(1.2rem, 4.266vw, 1.6rem);
  font-weight: 500;
}

.top-h-report01__title::before {
  background: url("../image/ico-report.svg") no-repeat center/contain;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: var(--icon-size-large);
  margin-right: 4px;
  width: var(--icon-size-large);
}

@media all and (min-width: 768px), print {
  .top-h-report01__title {
    font-size: 1.6rem;
  }
}

@media all and (min-width: 768px), print {
  .top-h-report01__description {
    column-gap: var(--spacing-40);
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
  }
}

.top-h-report01__report {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-8) 0;
}

@media all and (min-width: 768px), print {
  .top-h-report01__report {
    gap: 0 var(--spacing-20);
    grid-template-columns: max-content 1fr;
  }
}

.top-h-report01__text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-h-report01__text:has(a:focus-visible) {
  outline: var(--color-light-red02) solid var(--outline-width);
  outline-offset: calc(-1 * var(--outline-width));
}

.top-h-report01__text a {
  transition: opacity 0.4s 0s ease;
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-h-report01__text a:hover {
    opacity: var(--opacity-hover-50per);
    text-decoration: none;
  }
}

@media (hover: none) {
  .top-h-report01__text a:active {
    opacity: var(--opacity-hover-50per);
    text-decoration: none;
  }
}

.top-h-report01__text a:focus-visible {
  outline: none;
}

@media not print {
  @media not all and (min-width: 768px) {
    .top-h-report01__text {
      align-items: center;
      display: flex;
    }

    .top-h-report01__text a {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }
  }
}

@media all and (min-width: 768px), print {
  .top-h-report01__text {
    white-space: nowrap;
  }
}

.top-h-report01__more {
  transition: opacity 0.4s 0s ease;
  align-items: center;
  display: flex;
  /* To avoid generating line breaks at a screen size of 320px. */
  font-size: clamp(1rem, 3.733vw, 1.4rem);
  position: absolute;
  right: 20px;
  top: 22px;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-h-report01__more:hover {
    opacity: var(--opacity-hover-50per);
  }
}

@media (hover: none) {
  .top-h-report01__more:active {
    opacity: var(--opacity-hover-50per);
  }
}

.top-h-report01__more::before {
  background: var(--bg-ico-chevron-round-right);
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 18px;
  margin-right: 5px;
  transform: rotate(90deg);
  width: 18px;
}

@media all and (min-width: 768px), print {
  .top-h-report01__more {
    font-size: 1.6rem;
    position: static;
  }

  .top-h-report01__more::before {
    height: var(--icon-size-medium);
    margin-right: 10px;
    width: var(--icon-size-medium);
  }
}

/* report02 */
.top-h-report02__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: var(--spacing-12);
}

.top-h-report02__list[hidden] {
  display: none;
}

.top-h-report02__item {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray02);
  border-radius: 8px;
  box-shadow: var(--box-shadow-type01);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-12) 0;
  padding: 20px calc(10px + var(--icon-size-large) + 15px) 12px 20px;
  position: relative;
}

.top-h-report02__item::after {
  background: var(--bg-ico-chevron-right);
  content: "";
  height: var(--icon-size-large);
  margin-top: calc(var(--icon-size-large) / 2 * -1);
  position: absolute;
  right: 15px;
  top: 50%;
  width: var(--icon-size-large);
}

@media all and (min-width: 768px), print {
  .top-h-report02__item {
    gap: 0 var(--spacing-20);
    grid-template-columns: minmax(120px, auto) 1fr;
    padding: 20px calc(var(--icon-size-large) + 30px) 20px 30px;
    place-items: center start;
  }

  .top-h-report02__item::after {
    right: 30px;
  }
}

.top-h-report02__head {
  font-size: var(--text-medium);
  line-height: var(--line-height-medium);
}

.top-h-report02__body {
  font-size: var(--text-large);
  line-height: var(--line-height-large);
}

.top-h-report02__body a {
  transition: opacity 0.4s 0s ease;
  text-decoration: underline;
  color: var(--color-link-blue);
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .top-h-report02__body a:hover {
    opacity: var(--opacity-hover-50per);
    text-decoration: none;
  }
}

@media (hover: none) {
  .top-h-report02__body a:active {
    opacity: var(--opacity-hover-50per);
    text-decoration: none;
  }
}

.top-h-report02__body a:where([target="_blank"], [href*=".pdf"])::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  position: relative;
  /* Necessary if the componees are nested, e.g. if they are used in a list componee. */
  vertical-align: text-top;
}

.top-h-report02__body a[target="_blank"]::after {
  background: var(--bg-ico-blank);
  height: var(--icon-size-small);
  top: calc((1em * var(--line-height-medium) - var(--icon-size-small)) / 2);
  width: var(--icon-size-small);
}

.top-h-report02__body a[href*=".pdf"]::after {
  background: var(--bg-ico-pdf);
  height: var(--icon-size-large);
  top: calc((1em * var(--line-height-medium) - var(--icon-size-large)) / 2);
  width: var(--icon-size-large);
}

.top-h-report02__nodata {
  font-size: var(--text-large);
  line-height: var(--line-height-large);
}

.top-h-report02__nodata[hidden] {
  display: none;
}

.top-h-report02__script,
.top-h-report02__template {
  display: none;
}

/* report03 */
.top-h-report03 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

@media all and (min-width: 768px), print {
  .top-h-report03 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-h-report03__item:nth-child(odd) {
  padding-bottom: 24px;
}

.top-h-report03__item:nth-child(even) {
  padding-top: 24px;
}

.top-h-report03__item+.top-h-report03__item {
  position: relative;
}

.top-h-report03__item+.top-h-report03__item::before {
  background-color: var(--color-mufg-gray-75per);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media all and (min-width: 768px), print {
  .top-h-report03__item:nth-child(odd) {
    padding: 0 40px 0 0;
  }

  .top-h-report03__item:nth-child(even) {
    padding: 0 0 0 40px;
  }

  .top-h-report03__item+.top-h-report03__item::before {
    height: 330px;
    margin-top: -165px;
    top: 50%;
    width: 1px;
  }
}

.top-h-report03__title {
  font-size: 1.6rem;
  font-weight: 700;
}

@media all and (min-width: 768px), print {
  .top-h-report03__title {
    font-size: 2rem;
  }
}

[class*="top-h-report03__title--ico"] {
  align-items: center;
  display: flex;
  justify-content: center;
}

[class*="top-h-report03__title--ico"]::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: var(--icon-size-x-large);
  margin-right: 12px;
  width: var(--icon-size-x-large);
}

.top-h-report03__title--ico-operation::before {
  background: var(--bg-btn-ico-operation);
}

.top-h-report03__title--ico-real-estate-business::before {
  background: var(--bg-btn-ico-real-estate-business);
}

.top-h-report03__description:not(:first-child) {
  margin-top: 24px;
}

@media all and (min-width: 768px), print {
  .top-h-report03__description:not(:first-child) {
    margin-top: 24px;
  }
}