@charset "UTF-8";
/*
  custom_top.css
  ------------------------------------------------------------
  ルール：ページ固有 / デザイン寄せ / 微調整はここ
  - base.css：共通パーツ（header/menu/footer）と挙動に関わる最低限
  - custom_top.css：TOPページの見た目を調整

  NOTE:
  - パスは必ず /assets/... のルート相対
  - 追加の色は基本 CSS変数（--c-primary など）を優先
*/
/* ======================================================
  ここから下は「TOPページ」のみで使うスタイル
  メディアクエリはSPファースト
====================================================== */
/* ---------- base variables ---------- */
:root {
  /* spacing base */
  --gap-sp: 16px;
  --gap-pc: 24px;
  --mt-sp: 20px;
  --mt-pc: 40px;
  /* 個人向け（デフォルト） */
  --c-personal: #39A7AA;
  --c-business: #3C7EC8;
}

.c-personal {
  color: var(--c-personal);
}

.c-business {
  color: var(--c-business);
}

/* ---------- ボタンの共通マージン ---------- */
.u-mt-button {
  margin-top: 20px;
}

@media (min-width: 968px) {
  .u-mt-button {
    margin-top: 40px;
  }
}
/* ---------- page ---------- */
.page {
  max-width: 1440px;
  margin-inline: auto;
}

/* ---------- main（既存HTML対応） ---------- */
/* <main id="main" class="pageMain"> */
/* ---------- grid ---------- */
.grid {
  display: grid;
  -moz-column-gap: var(--gap-sp);
       column-gap: var(--gap-sp);
}
@media (min-width: 968px) {
  .grid {
    -moz-column-gap: var(--gap-pc);
         column-gap: var(--gap-pc);
  }
}

.grid-1 {
  grid-template-columns: 1fr;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-2--media {
  grid-template-columns: auto 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 968px) {
  .md-grid-1 {
    grid-template-columns: 1fr;
  }
  .md-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* ---------- flex ---------- */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

/* ======================================================
  Accessibility (COMMON)
====================================================== */
/* スキップリンク：フォーカス時のみ表示 */
.skipLink {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  z-index: 3000;
}

.skipLink:focus {
  left: 12px;
}

/* ======================================================
  Buttons (COMMON)
====================================================== */
.btnPrimary,
.btnOutline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  /* iOS推奨タップ領域 */
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.btnPrimary {
  background: var(--c-primary);
  color: #fff;
  border: 1px solid var(--c-primary);
}

.btnOutline {
  background: #fff;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}

.btnPrimary:focus-visible,
.btnOutline:focus-visible {
  outline: 3px solid rgba(47, 111, 191, 0.25);
  outline-offset: 2px;
}

/* hover（タッチ端末で暴れないよう hover: hover で限定） */
@media (hover: hover) {
  .btnPrimary:hover {
    filter: brightness(0.95);
  }
  .btnOutline:hover {
    background: var(--c-primary-weak);
  }
}
/* ======================================================
  TOP PAGE ONLY
  ------------------------------------------------------
  ここから下は「TOPページ専用」のスタイル
  - index.html の .pageHome / .homeFv* / .homeSection* など
  - 他ページで使わない（使う場合は共通側へ移動）
====================================================== */
.pageHome {
  /* まずはスマホ基準 */
  padding-bottom: 24px;
}

/* --- FV --- */
.homeFv__inner {
  margin: 0 auto;
}

.homeFv__media {
  width: 100%;
}

.homeFv__media {
  aspect-ratio: 390/296;
  overflow: hidden;
}

.homeFv__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.homeFv__media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.homeFv__copy {
  background: #fff;
}

.homeFv__title {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.homeFv__lead {
  margin: 0;
  color: var(--c-muted);
}

.homeFv__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.homeFv__media {
  margin: 0;
}

/* --- Sections --- */
.homeSection {
  margin: 60px auto 0;
}
.homeSection.homeSection__m0 {
  margin: 0 auto;
}

.homeSection__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
}

.homeSection__sbutitle {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 4px;
}
@media (min-width: 968px) {
  .homeSection__sbutitle {
    font-size: 16px;
  }
}
.homeSection__sbutitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.4em;
  height: 0.4em;
  background-color: currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.homeSection__title.homeSection__title--alert {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c1304f;
  font-weight: bold;
}
@media (min-width: 968px) {
  .homeSection__title.homeSection__title--alert {
    font-size: 20px;
    align-items: baseline;
    width: 14.8%;
    min-width: 172px;
  }
}

.homeSection__icon {
  color: #c1304f;
  flex-shrink: 0;
}

.homeSection__text {
  margin: 12px var(--gap-sp) 0;
  line-height: 2;
}
@media (min-width: 968px) {
  .homeSection__text {
    margin: 24px var(--gap-pc) 0;
  }
}

/* News list（仮） */
.homeNews {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.homeNews__item a {
  display: block;
  padding: 12px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
}

@media (hover: hover) {
  .homeNews__item a:hover {
    background: var(--c-primary-weak);
    border-color: rgba(0, 0, 0, 0.06);
  }
}
.layout-margin {
  margin-top: 24px;
}
@media (min-width: 968px) {
  .layout-margin {
    margin-top: 40px;
  }
}

/* ======================================================
  TOP: FV placeholder（画像未配置時）
====================================================== */
.homeFv__placeholder {
  display: block;
  width: 100%;
  height: auto;
}

/* ======================================================
  TOP: キャンペーン（バナー）
====================================================== */
.homeBannerSlider {
  padding: 24px 0 56px;
}

.homeBannerSlider__item {
  width: 72.4%;
  margin-inline: auto;
}

.homeBannerSlider__item img {
  width: 100%;
  height: auto;
  /* aspect-ratio は指定しない：画像本来の比(1012:560)で表示し、潰れを防ぐ
     （PCは下の @media で height/object-fit を指定してトリミング表示） */
  display: block;
  border-radius: 16px;
}

@media (min-width: 968px) {
  .homeBannerSlider__item {
    width: clamp(420px, 48.3vw, 720px);
    margin-inline: auto;
  }
  .homeBannerSlider__item img {
    width: 100%;
    height: 220px;
    aspect-ratio: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#banner-slider .splide__slide {
  width: 72.4% !important;
}
@media (min-width: 968px) {
  #banner-slider .splide__slide {
    width: auto !important;
  }
}

.splide__pagination.splide__pagination--ltr {
  bottom: -32px;
}

.splide__pagination__page.is-active {
  background: #726D69 !important;
  transform: initial !important;
}

.splide__pagination__page {
  border: 1px solid #726D69 !important;
  background-color: transparent !important;
}

.splide__arrow {
  background: #726d69 !important;
}

.splide__arrow svg {
  fill: #ffffff !important;
}

@media (min-width: 968px) {
  .splide__arrow--prev {
    /* 表示エリア左端から40px（Splide標準の1emを上書き。splide.min.cssが後ろで読まれるため!important必須） */
    left: 40px !important;
  }
}

@media (min-width: 968px) {
  .splide__arrow--next {
    /* 表示エリア右端から40px */
    right: 40px !important;
  }
}

@media (hover: hover) {
  .homeBannerSlider__item a:hover {
    background: var(--c-primary-weak);
  }
}
/* ======================================================
  TOP: 重要なお知らせ
====================================================== */
.layout-padding {
  padding: 0 4.36vw;
}

.homeAlerts__bg {
  background: #f9ebee;
}

.homeAlerts__inner {
  padding: 24px 4.36vw;
}
@media (min-width: 968px) {
  .homeAlerts__inner {
    padding: 40px 4.36vw;
    display: flex;
  }
}

.homeAlerts__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #C1304F;
  font-weight: bold;
  font-size: 16px;
  margin-top: 12px;
  padding: 0 0 0 3%;
  gap: 12px;
}
@media (min-width: 968px) {
  .homeAlerts__list {
    width: 100%;
    margin-top: 0;
    padding: 0 0 0 6.4%;
  }
}

.homeAlerts__item a {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.homeAlerts__item a[data-link-type=pdf]::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #C1304F;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M12.5 20H2.5A2.5 2.5 0 0 1 0 17.5V7.5a.5.5 0 0 1 1 0v10A1.5 1.5 0 0 0 2.5 19h10a.5.5 0 1 1 0 1' fill='%23000'/%3E%3Cpath d='M17.5 17H5.5A2.5 2.5 0 0 1 3 14.5V2.5A2.5 2.5 0 0 1 5.5 0h12A2.5 2.5 0 0 1 20 2.5v12A2.5 2.5 0 0 1 17.5 17M5.5 1A1.5 1.5 0 0 0 4 2.5v12A1.5 1.5 0 0 0 5.5 16h12A1.5 1.5 0 0 0 19 14.5V2.5A1.5 1.5 0 0 0 17.5 1Z' fill='%23000'/%3E%3Cpath d='M8.374 6.681A1.522 1.522 0 0 1 9 7.325a2.091 2.091 0 0 1 .218.98A2.1 2.1 0 0 1 9 9.286a1.52 1.52 0 0 1-.622.643 1.91 1.91 0 0 1-.946.224H6.862v1.2H5.541v-4.9H7.428a1.92 1.92 0 0 1 .946.223M7.747 8.729a.733.733 0 0 0 0-.848.518.518 0 0 0-.4-.15H6.862V8.879h.482a.514.514 0 0 0 .4-.15' fill='%23000'/%3E%3Cpath d='M9.7 6.457h1.932a2.229 2.229 0 0 1 1.157.3 2.011 2.011 0 0 1 .778.85 2.872 2.872 0 0 1 .278 1.3 2.876 2.876 0 0 1-.278 1.3 2.011 2.011 0 0 1-.778.85 2.229 2.229 0 0 1-1.157.3H9.7Zm1.876 3.611a.846.846 0 0 0 .681-.3 1.3 1.3 0 0 0 .255-.858 1.3 1.3 0 0 0-.255-.857.84.84 0 0 0-.681-.3h-.555v2.323Z' fill='%23000'/%3E%3Cpath d='M15.648 7.7v.84h1.635V9.789H15.648v1.567H14.327v-4.9h3.185V7.7Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M12.5 20H2.5A2.5 2.5 0 0 1 0 17.5V7.5a.5.5 0 0 1 1 0v10A1.5 1.5 0 0 0 2.5 19h10a.5.5 0 1 1 0 1' fill='%23000'/%3E%3Cpath d='M17.5 17H5.5A2.5 2.5 0 0 1 3 14.5V2.5A2.5 2.5 0 0 1 5.5 0h12A2.5 2.5 0 0 1 20 2.5v12A2.5 2.5 0 0 1 17.5 17M5.5 1A1.5 1.5 0 0 0 4 2.5v12A1.5 1.5 0 0 0 5.5 16h12A1.5 1.5 0 0 0 19 14.5V2.5A1.5 1.5 0 0 0 17.5 1Z' fill='%23000'/%3E%3Cpath d='M8.374 6.681A1.522 1.522 0 0 1 9 7.325a2.091 2.091 0 0 1 .218.98A2.1 2.1 0 0 1 9 9.286a1.52 1.52 0 0 1-.622.643 1.91 1.91 0 0 1-.946.224H6.862v1.2H5.541v-4.9H7.428a1.92 1.92 0 0 1 .946.223M7.747 8.729a.733.733 0 0 0 0-.848.518.518 0 0 0-.4-.15H6.862V8.879h.482a.514.514 0 0 0 .4-.15' fill='%23000'/%3E%3Cpath d='M9.7 6.457h1.932a2.229 2.229 0 0 1 1.157.3 2.011 2.011 0 0 1 .778.85 2.872 2.872 0 0 1 .278 1.3 2.876 2.876 0 0 1-.278 1.3 2.011 2.011 0 0 1-.778.85 2.229 2.229 0 0 1-1.157.3H9.7Zm1.876 3.611a.846.846 0 0 0 .681-.3 1.3 1.3 0 0 0 .255-.858 1.3 1.3 0 0 0-.255-.857.84.84 0 0 0-.681-.3h-.555v2.323Z' fill='%23000'/%3E%3Cpath d='M15.648 7.7v.84h1.635V9.789H15.648v1.567H14.327v-4.9h3.185V7.7Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
}

@media (hover: hover) {
  .homeAlerts__item a:hover {
    color: #CE5A73;
  }
}
/* ======================================================
  TOP: 主要導線
====================================================== */
.homeheading {
  display: flex;
  flex-direction: column;
}

.homeheading__reverse {
  flex-direction: column-reverse;
}

.homePrimaryLinks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.homePrimaryLinks__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  background-image: url(/assets/img/top/bg_homePrimaryLinks__contentRecruit.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
  font-weight: 900;
}
.homePrimaryLinks__card:hover {
  border-color: var(--c-personal);
  box-shadow: 0 0 0 1px var(--c-personal), 0px 4px 16px rgba(60, 126, 200, 0.2);
}
.homePrimaryLinks__card.homePrimaryLinks__card__business {
  border: 2px solid var(--c-business);
  background: #fff;
}
.homePrimaryLinks__card.homePrimaryLinks__card__business:hover {
  border-color: var(--c-business);
  box-shadow: 0 0 0 1px var(--c-business), 0px 4px 16px rgba(60, 126, 200, 0.2);
}
.homePrimaryLinks__card.homePrimaryLinks__card__business img {
  max-width: 48px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.homePrimaryLinks__card {
  border: 2px solid #39A7AA;
}

.homePrimaryLinks__content {
  margin-left: 12px;
}

.homePrimaryLinks__contentRecruit {
  margin-left: 20px;
}

.homePrimaryLinks__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
}

/* ======================================================
  TOP: 信用組合のこと、知っていますか？
====================================================== */
.homeAbout__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.homeAbout__point {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 22px 14px 8px;
  text-align: center;
  margin-top: 25px;
}
@media (min-width: 968px) {
  .homeAbout__point {
    padding: 24px 20px 20px;
  }
}

.homeAbout__pointLabel {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #2aa198;
  color: #fff;
  font-size: 10px;
  font-family: Montserrat;
  padding: 2px 15px;
  border-radius: 4px;
  font-weight: bold;
  white-space: nowrap;
}
@media (min-width: 968px) {
  .homeAbout__pointLabel {
    font-size: 16px;
    line-height: 1;
    padding: 3px 30px;
  }
}

.homeAbout__pointGroup {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 968px) {
  .homeAbout__pointGroup {
    grid-template-columns: 37.88% 57.58%;
    gap: 12px;
    align-items: center;
  }
}

.homeAbout__pointImage {
  width: 100%;
  height: auto;
  aspect-ratio: 80/44;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 80px;
  margin: 0 auto;
}
@media (min-width: 968px) {
  .homeAbout__pointImage {
    aspect-ratio: 100/55;
    max-width: 100px;
  }
}

.homeAbout__pointBody {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 4px;
}
@media (min-width: 968px) {
  .homeAbout__pointBody {
    align-items: center;
    font-size: 20px;
  }
  .homeAbout__pointBody br {
    display: none;
  }
}

.homeAbout__summary {
  margin: 20px 16px 0;
  line-height: 2;
}
@media (min-width: 968px) {
  .homeAbout__summary {
    margin: 40px 24px 0;
  }
}

/* ======================================================
  TOP: ご相談（カテゴリ導線）
====================================================== */
.homeConsult {
  background: #D9F1EF;
  padding: 24px 0 0;
}

.homeConsult__illust {
  max-width: 100px;
  height: auto;
  aspect-ratio: 1/1;
}

.homeConsult__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  margin: 20px auto 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .homeConsult__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 24px auto 0;
  }
}

.homeConsult__item {
  position: relative;
}

.homeConsult__link {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  color: #333;
  box-shadow: 0px 4px 16px rgba(0, 163, 149, 0.2);
  transition: box-shadow 0.3s ease;
  height: 100%;
}
@media (min-width: 968px) {
  .homeConsult__link {
    padding: 12px 20px 10px;
  }
}

.homeConsult__link {
  border: 2px solid transparent;
  box-sizing: border-box;
}
.homeConsult__link:hover {
  border-color: var(--c-personal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.homeConsult__media {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
  margin-bottom: 12px;
}
.homeConsult__media img {
  max-width: 108px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  aspect-ratio: 108/64;
}

.homeConsult__group {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
}

.homeConsult__content {
  flex: 1;
}

.homeConsult__title {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}
@media (min-width: 968px) {
  .homeConsult__title {
    font-size: 15px;
  }
}
.homeConsult__title strong {
  font-weight: bold;
  font-size: 16px;
}

.homeConsult__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homeConsult__arrow svg {
  width: 20px;
  height: 20px;
}

@media (hover: hover) {
  .homeConsult__item:hover {
    background: var(--c-primary-weak);
  }
}
.boder__round {
  background: #39A7AA;
  border-radius: 100vh;
  color: #fff;
  padding: 4px 16px;
  font-weight: bold;
}
@media (min-width: 968px) {
  .boder__round {
    font-size: 20px;
    padding: 6px 24px;
  }
}

.homeConsult__scene {
  margin-top: 40px;
}

/* ======================================================
  TOP: ライフプラン（タイル）
====================================================== */
.homeLifePlan__bg {
  background-position: 0px 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M23 0V24 M0 23H24' fill='none' stroke='%2339A7AA' stroke-opacity='0.2' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  padding-bottom: 40px;
}
@media (min-width: 968px) {
  .homeLifePlan__bg {
    padding-bottom: 200px;
  }
}

.homeLifePlan__icon {
  position: relative;
}
.homeLifePlan__icon::before {
  content: "";
  width: 50.256vw;
  height: 15.897vw;
  position: absolute;
  z-index: 2;
  right: 4.36%;
  top: clamp(4px, 1.28vw, 8px);
  z-index: 2;
  transform: rotate(-10deg);
  background-image: url("/assets/img/top/homeLifePlan__icon1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 968px) {
  .homeLifePlan__icon::before {
    width: 25.41vw;
    height: 8.06vw;
    right: 5.8%;
    top: 8.2px;
  }
}
.homeLifePlan__icon::after {
  content: "";
  width: 42.05vw;
  height: 12.31vw;
  position: absolute;
  z-index: 2;
  left: 4.36%;
  bottom: clamp(32px, 11.03vw, 48px);
  transform: rotate(-11deg);
  background-image: url("/assets/img/top/homeLifePlan__icon2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 968px) {
  .homeLifePlan__icon::after {
    width: 22.71vw;
    height: 6.55vw;
    left: 4.36vw;
    bottom: max(-11vw,-146px);
  }
}

.homeLifePlan__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px 0 120px 0;
  margin: 20px auto 0;
  list-style: none;
}
@media (min-width: 968px) {
  .homeLifePlan__tiles {
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 0 0 0;
  }
}

.homeLifePlan__tiles > li {
  display: contents;
}
.homeLifePlan__tiles > li a {
  box-shadow: 0px 4px 16px rgba(0, 163, 149, 0.2);
}

.homeLifePlan__tiles li:nth-child(2) a,
.homeLifePlan__tiles li:nth-child(4) a,
.homeLifePlan__tiles li:nth-child(6) a {
  transform: translateY(80px);
}
@media (min-width: 968px) {
  .homeLifePlan__tiles li:nth-child(2) a,
  .homeLifePlan__tiles li:nth-child(4) a,
  .homeLifePlan__tiles li:nth-child(6) a {
    transform: translateY(0);
  }
}

@media (min-width: 968px) {
  .homeLifePlan__tiles li:nth-child(2) a,
  .homeLifePlan__tiles li:nth-child(5) a {
    transform: translateY(60px);
  }
}

@media (min-width: 968px) {
  .homeLifePlan__tiles li:nth-child(3) a,
  .homeLifePlan__tiles li:nth-child(6) a {
    transform: translateY(120px);
  }
}

.homeLifePlan__tile {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0px 4px 16px rgba(0, 163, 149, 0.2);
  border: 2px solid transparent;
  box-sizing: border-box;
}
.homeLifePlan__tile:hover {
  border-color: var(--c-personal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.homeLifePlan__tile-image {
  margin: 7px 7px 0 7px;
  aspect-ratio: 156/117;
}
.homeLifePlan__tile-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.homeLifePlan__tile-content {
  padding: 12px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.homeLifePlan__tile-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  font-weight: bold;
}
@media (min-width: 968px) {
  .homeLifePlan__tile-text br {
    display: none;
  }
}

.homeLifePlan__tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PC: 3列表示 */
@media (min-width: 968px) {
  .homeLifePlan__tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .homeLifePlan__tile-text {
    font-size: 18px;
  }
  .homeLifePlan__tile-content {
    padding: 12px 12px 16px;
  }
}
@media (min-width: 1024px) {
  .homeLifePlan__tiles {
    gap: 24px;
  }
}
/* ======================================================
  TOP: お知らせ（CTA）
====================================================== */
.homeNewsWrap__cta {
  margin-top: 12px;
}

.articleList {
  margin: 0;
  padding: 0;
}

.articleItem:hover {
  color: var(--c-personal);
}

.homeNews__list svg {
  fill: #726d69;
  margin-left: 4px;
}
.homeNews__list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #726d69;
  font-size: 14px;
  font-weight: bold;
}
.homeNews__list a:hover {
  color: #160D06;
}

/* ======================================================
  TOP: 店舗・ATM
====================================================== */
.homeShopAtm__actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ======================================================
  TOP: 採用
====================================================== */
.homeRecruit {
  margin-top: 60px;
}
@media (min-width: 968px) {
  .homeRecruit {
    margin-top: 80px;
  }
}

.homeRecruit__bg {
  background-image: url(/assets/img/top/recruit_bg_sp.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 968px) {
  .homeRecruit__bg {
    background-image: url(/assets/img/top/recruit_bg_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.homeRecruit__text {
  line-height: 2;
  margin: 20px 0 0;
}
@media (min-width: 968px) {
  .homeRecruit__text {
    margin: 40px 0 0;
  }
  .homeRecruit__text .homeRecruit__text__br {
    display: none;
  }
}

.homeSection__titleRecruit {
  font-size: 20px;
}
@media (min-width: 968px) {
  .homeSection__titleRecruit {
    font-size: 32px;
  }
}
@media (min-width: 968px) {
  .homeSection__titleRecruit br {
    display: none;
  }
}

.btnRow__recruit {
  justify-content: center;
}
@media (min-width: 968px) {
  .btnRow__recruit {
    justify-content: end;
  }
}

/* ======================================================
  TOP: スライドバナー
====================================================== */
.splide__arrow {
  background: #726d69;
}
.splide__arrow svg {
  fill: #ffffff;
}
.splide__arrow:hover {
  background: #160D06 !important;
}

#banner-slider .homeBannerSlider__item {
  width: 72.4%;
}
@media (min-width: 968px) {
  #banner-slider .homeBannerSlider__item {
    width: clamp(420px, 48.3vw, 720px);
    margin-inline: auto;
  }
}
#banner-slider .splide__slide {
  width: 72.4% !important;
}
@media (min-width: 968px) {
  #banner-slider .splide__slide {
    width: auto !important;
  }
}
#banner-slider .splide__pagination.splide__pagination--ltr {
  bottom: -32px;
}
#banner-slider .splide__pagination__page.is-active {
  background: #726D69;
  transform: initial;
}
#banner-slider .splide__pagination__page {
  border: 1px solid #726D69;
  background-color: transparent;
}
@media (min-width: 968px) {
  #banner-slider .splide__arrow--prev {
    left: 40px;
  }
}
@media (min-width: 968px) {
  #banner-slider .splide__arrow--next {
    right: 40px;
  }
}

.homeBannerSlider__item a {
  padding: 2px;
  display: block;
}

@media (hover: hover) {
  .homeBannerSlider__item a:hover {
    padding: 0;
    border: 2px solid var(--c-personal);
    border-radius: 18px;
  }
}
.homeInitiatives__banners a {
  padding: 2px;
  display: block;
}

@media (hover: hover) {
  .homeInitiatives__banners a:hover {
    padding: 0;
    border: 2px solid var(--c-personal);
    border-radius: 4px;
  }
}
.homeInitiatives__slideArea {
  padding-bottom: 40px;
}

/* ======================================================
  Responsive (tablet+)
====================================================== */
@media (min-width: 968px) {
  .homeFv__media {
    aspect-ratio: 1161/653;
  }
  .homeFv__title {
    font-size: 34px;
  }
  .homePrimaryLinks__grid {
    grid-template-columns: 1fr 1fr;
  }
  .homeLifePlan__tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
.homeSection__title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
}
@media (min-width: 968px) {
  .homeSection__title {
    font-size: 32px;
  }
}