@charset "UTF-8";
/* -------------------------------------------
    ユーティリティ
------------------------------------------- */
:root {
  --color-primary: #313C95;
}
.pc_show {
  display: block;
}
.sp_show {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc_show {
    display: none;
  }
  .sp_show {
    display: block;
  }
}

/* フェード */
.u-fadein {
  transition: opacity 1.2s, transform 1.2s;
  transform: translateY(20px);
  opacity: 0;
}

.is-fadein {
  transform: translateX(0);
  opacity: 1;
}

/* セクション角丸 */
/* 左上 */
.u-rounded-tl-80 {
  border-radius: 80px 0 0 0;
}
/* 右上 */
.u-rounded-tr-80 {
  border-radius: 0 80px 0 0;
}
/* 右下 */
.u-rounded-br-80 {
  border-radius: 0 0 80px 0;
}
/* 左下 */
.u-rounded-bl-80 {
  border-radius:  0 0 0 80px;
}

.u-radius-tr {
  position: relative;
  border-top-right-radius: 80px;
}
.u-radius-bl {
  position: relative;
  border-bottom-left-radius: 80px;
}
.u-radius-tr::before,
.u-radius-tr::after,
.u-radius-bl::before,
.u-radius-bl::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
}
.u-radius-tr::before,
.u-radius-tr::after {
  top: 0;
  right: 0;
}
.u-radius-bl::before,
.u-radius-bl::after {
  bottom: 0;
  left: 0;
}
.u-radius-tr::before {
  background-color: var(--color-light-gray);
}
.u-radius-tr::after {
  background-color: var(--color-white);
  border-top-right-radius: 80px;
}
.u-radius-bl::before {
  background-color: var(--color-light-gray);
}
.u-radius-bl::after {
  background-color: var(--color-white);
  border-bottom-left-radius: 80px;
}
@media (max-width: 767px)  {
  .u-radius-tr {
    border-top-right-radius: 60px;
  }
  .u-radius-bl {
    border-bottom-left-radius: 60px;
  }
  .u-radius-tr::before,
  .u-radius-tr::after,
  .u-radius-bl::before,
  .u-radius-bl::after {
    width: 56px;
    height: 56px;
  }
}

/* ------------------------------
  Font foundation.cssに追加
------------------------------ */

@font-face {
  font-family: 'ZenKaku Gothic New';
  src: url('../fonts/ZenKakuGothicNew/ZenKakuGothicNew-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ZenKaku Gothic New';
  src: url('../fonts/ZenKakuGothicNew/ZenKakuGothicNew-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Zen Maru Gothic';
  src: url('../fonts/ZenMaruGothic/ZenMaruGothic-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zen Maru Gothic';
  src: url('../fonts/ZenMaruGothic/ZenMaruGothic-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------
  見出し・テキストベース
------------------------------ */
h1 { font-family: var(--font-family-head); font-size: var(--fs-32); line-height: var(--lh-md); font-weight: var(--fw-bold); }
h2 { font-family: var(--font-family-head); font-size: var(--fs-28); line-height: var(--lh-md); font-weight: var(--fw-bold); }
h3 { font-family: var(--font-family-head); font-size: var(--fs-24); line-height: var(--lh-md); font-weight: var(--fw-bold); }
h4 { font-family: var(--font-family-head); font-size: var(--fs-20); line-height: var(--lh-md); font-weight: var(--fw-bold); }
h5 { font-family: var(--font-family-head); font-size: var(--fs-16); line-height: var(--lh-md); font-weight: var(--fw-bold); }
h6 { font-family: var(--font-family-head); font-size: var(--fs-14); line-height: var(--lh-md); font-weight: var(--fw-bold); }


/* -------------------------------------------
    common
------------------------------------------- */
/* button
------------- */
.c-top_btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  box-shadow: 2px 2px 4px 0px rgba(34, 46, 127, 0.08);
  width: 100%;
  padding: 24px;
  border-radius: 20px;
  font-size: var(--fs-18);
  background-color: var(--color-white);
}

.c-top_btn__text {
  flex: 1;
  line-height: 1.4;
  text-align: center;
}

.c-top_btn:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .c-top_btn {
    width: 100%;
    height: auto;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
  }
  .c-top_btn__text {
    font-size: var(--fs-18);
  }
  .c-top_btn__icon-main {
    width: 44px;
    height: 44px;
  }
}

/* --yellow
-------------- */
.c-top_btn--yellow {
  background-color: #fed804;
  border: 1px solid #fed804;
}
.c-top_btn--yellow:hover {
  background-color: #FAC800;
  border: 1px solid var(--color-primary);
}
.c-top_btn--yellow:hover .c-top_btn__arrow--medium {
  transform: scale(1.2);
}
.c-top_btn--yellow:hover .c-top_btn__arrow--medium::after {
  transform: rotate(45deg) translate(-25%, -25%) scale(1);
}

/* --simple
-------------- */
.c-top_btn--simple {
  border: none;
  background: none;
  box-shadow: none;
  width: auto;
  height: auto;
  color: #222e7f;
  padding: 0;
  border-radius: 0;
}
.c-top_btn--simple .c-top_btn__text{
  padding: 7px 0 8px;
}
.c-top_btn--simple .c-top_btn__arrow {
  margin-left: 16px;
}

.c-top_btn--simple:hover .c-top_btn__text{
  border-bottom: 1px solid var(--color-primary);
  padding: 7px 0;
}
.c-top_btn--simple:hover .c-top_btn__arrow--large {
  background-color: #F8FAFB;
  border: 1px solid var(--color-primary);
}
.c-top_btn--simple:hover .c-top_btn__arrow--large::after {
  border-top: 3px solid var(--color-primary);
  border-right: 3px solid var(--color-primary);
}

@media screen and (min-width: 768px) {
  .c-top_btn--simple {
    font-size: 22px;
  }
  .c-top_btn--simple .c-top_btn__arrow {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .c-top_btn--simple .c-top_btn__arrow {
    margin-left: 8px;
  }
}

/* --primary
---------------*/
.c-top_btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 50px;
  max-width: 300px;
  padding: 21px;
  box-shadow: 2px 2px 20px #222E7F66;
}
.c-top_btn--primary:hover {
  color: var(--color-primary);
}
.c-top_btn--circle:hover .c-top_btn__arrow--gray,
.c-top_btn--primary:hover .c-top_btn__arrow--white {
  background: var(--color-primary);
}
.c-top_btn--circle:hover .c-top_btn__arrow--gray::after,
.c-top_btn--primary:hover .c-top_btn__arrow--white::after {
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
}

/* --circle
---------------*/
  .c-top_btn--circle {
    border-radius: 50px;
  }

/* --square
-------------- */
.c-top_btn--card {
  flex-direction: column;
  position: relative;
}
.c-top_btn--card .c-top_btn__text {
  /* margin-top: 16px; */
}
.c-top_btn--card .c-top_btn__arrow--small {
  position: absolute;
  content: "";
  bottom: 10px;
  right: 10px;
}

@media screen and (max-width: 767px) {
  .c-top_btn--card {
    padding: 12px 18px 18px;
  }
  .c-top_btn--card .c-top_btn__text {
      margin-top: 0;
      font-size: var(--fs-14);
      min-height: 44px;
      display: flex;
      align-items: center;
  }
}


/* hover 共通
------------------ */
.c-top_btn--base:hover,
.c-top_btn--primary:hover,
.c-top_btn--circle:hover,
.c-top_btn--card:hover
{
  background-color: #F8FAFB;
  border: 1px solid var(--color-primary);
  box-shadow: none;
}
.c-top_btn--base:hover .c-top_btn__arrow--medium,
.c-top_btn--primary:hover .c-top_btn__arrow--medium,
.c-top_btn--circle:hover .c-top_btn__arrow--medium,
.c-top_btn--card:hover .c-top_btn__arrow--small {
  transform: scale(1.2);
}
.c-top_btn--base:hover .c-top_btn__arrow--medium::after,
.c-top_btn--primary:hover .c-top_btn__arrow--medium::after,
.c-top_btn--circle:hover .c-top_btn__arrow--medium::after,
.c-top_btn--card:hover .c-top_btn__arrow--small::after {
  transform: rotate(45deg) translate(-25%, -25%) scale(1);
}


/* ---------------------------
    矢印アイコン
------------------------------- */
.c-top_btn__arrow {
  display: block;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.c-top_btn__arrow::after {
  content: '';
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(-25%, -25%);
  position: absolute;
  top: 48%;
  left: 37%;
}

/*バリエーション
------------------------ */

/* Small: 20px */
.c-top_btn__arrow--small {
  width: 20px;
  height: 20px;
}
.c-top_btn__arrow--small::after {
  width: 5px;
  height: 5px;
}

/* Medium: 30px */
.c-top_btn__arrow--medium {
  width: 30px;
  height: 30px;
}
.c-top_btn__arrow--medium::after {
  width: 7px;
  height: 7px;
}

/* Large: 48px */
.c-top_btn__arrow--large {
  width: 48px;
  height: 48px;
}
.c-top_btn__arrow--large::after {
  width: 9px;
  height: 9px;
  border-width: 3px;
}

/* bg_white */
.c-top_btn__arrow--white {
  background-color: var(--color-white);
}
.c-top_btn__arrow--white::after {
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
}

/* bg_gray */
.c-top_btn__arrow--gray {
  background-color: var(--color-light-gray);
}
.c-top_btn__arrow--gray::after {
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
}


@media screen and (max-width: 767px) {
  .c-top_btn__arrow--large {
    width: 40px;
    height: 40px;
  }
}

/* ------------------------------
  TOP見出し
------------------------------ */
#top {
  font-family: 'ZenKaku Gothic New',sans-serif;
}
#top h1,
#top h2 {
  font-family: 'Zen Maru Gothic',sans-serif;
}
#top h3 {
  font-family: 'ZenKaku Gothic New',sans-serif;
}
#top h2.c-heading--h2 {
  padding-left: 0;
}
#top h2::before,
#top h2::after {
  content: none;
}
#top .l-main{
  padding-top: 0;
  min-width: 1280px;
}
@media (max-width: 767px) {
  #top .l-main{
    min-width: auto;
  }
}


/* -------------------------------------------
    KVセクション
------------------------------------------- */
.l-section.p-main-visual {
    width: 100%;
    position: relative;
    padding: 0 0 30px;
    overflow: hidden;
    background-color: var(--color-light-gray);
}
.p-mv_video-container {
  position: relative;
  aspect-ratio: 1440 / 634;
  margin-top: 110px;
}
.p-mv_video-container video {
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* .p-mv__image-wrapper {
  width: 100%;
  aspect-ratio: 1440 / 700;
  position: relative;
  overflow: hidden;
} */
.p-mv_video-container video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.p-mv_video-container::after {
    position: absolute;
    content: "";
    background: url(/assets/images/top/img_decoration-01.png) center / contain no-repeat;
    height: 215px;
    width: 498px;
    bottom: -1px;
    left: 0;
}

.p-mv_play-btn {
  position: absolute;
  left: 15px;
  bottom: 110px;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--color-white), transparent 20%);
  border-radius: 50px;
  cursor: pointer;
  z-index: 10;
  border: none;
}
.p-mv_play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 14px;
  display: inline-block;
  background: url(/assets/images/top/icon_stop.svg) no-repeat;
  transform: translate(-50%, -50%);;
}
.p-mv_play-btn.is-stop::after {
  left: 54%;
  background: url(/assets/images/top/icon_start.svg) no-repeat;
}

.p-mv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-mv__content {
  position: absolute;
  bottom: 20%;
  left: 9.3%;
}
.p-mv__catchcopy {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-white);
  margin: 0;
  text-shadow: 0 4px 30px #2E2F34CC;
}

@media (max-width: 767px) {
  .l-section.p-main-visual {
    padding: 70px 0 0;
  }
  .p-mv_video-container {
    aspect-ratio: 1 / 1;
    margin-top: 0;
  }
  .p-mv_video-container::after {
    width: 198px;
    height: 86px;
  }
  .p-mv_play-btn {
    top: auto;
    width: 40px;
    height: 40px;
    bottom: 10px;
    left: 5px;
  }
  .p-mv__content {
    position: unset;
    padding-left: 20px;
  }
  .p-mv__catchcopy {
    font-size: 30px;
    color: var(--color-black);
    text-shadow: none;
  }
}


/* -------------------------------------------
    大事なお知らせ
------------------------------------------- */
.p-top--attention {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;
  width: 404px;
  border-right: none;
  background-color: #FFF2F3E5;
  border-radius: 10px 0 0 10px;
  z-index: 10;
  overflow: hidden;
}
.p-top--attention__headline {
  display: flex;
  font-size: var(--fs-14);
  align-items: center;
  writing-mode: vertical-rl;
  color: #fff;
  border: 1px solid #df1111;
  background-color: #df1111;
  border-radius: 8px 0 0 8px;
  justify-content: center;
  gap: 4px;
  padding: 4px;
}
.p-top--attention__headline::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 12px;
  background: url(/assets/images/top/icon_attention.svg) no-repeat;
}
.p-top--attention_content {
  width: 374px;
  padding: 20px;
  border: 1px solid #DF1111;
}
.p-top--attention__item a {
  display: block;
}
.p-top--attention__item a:hover {
  text-decoration: none;
}
.p-top--attention__date {
  font-size: var(--fs-14);
}
.p-top--attention_content p {
  font-size: var(--fs-14);
}
.p-carousel-attention {
  max-width: 92px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.p-carousel-attention .slick-prev,
.p-carousel-attention .slick-next {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 0;
    flex-shrink: 0;
    margin-top: 18px;
}
/* 並び順の指定 */
.p-carousel-attention .slick-prev { order: 1; }
.p-carousel-attention__pause { order: 2; }
.p-carousel-attention .slick-next { order: 3; }
.p-carousel-attention .slick-prev::before,
.p-carousel-attention .slick-next::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #df1111;
    border-right: 3px solid #df1111;
    opacity: 1 !important;
}
.p-carousel-attention .slick-prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.p-carousel-attention .slick-next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* 停止・再生ボタン */
.p-carousel-attention__pause {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-carousel-attention__pause::before {
    content: "";
    display: block;
    width: 8px;
    height: 12px;
    border-left: 2px solid #DF1111;
    border-right: 2px solid #DF1111;
}
.p-carousel-attention.is-paused .p-carousel-attention__pause::before {
    border: none;
    width: 0; height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #DF1111;
    margin-left: 4px;
}
.p-top--attention__link {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.p-top--attention .c-small_btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 92px;
  height: 34px;
  font-size: var(--fs-14);
  font-weight: var(--fw-bold);
  color: #DF1111;;
  padding: 6px 0 5px 16px;
  background-color: var(--color-white);
  border: 1px solid #DF1111;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.p-top--attention .c-small_btn .c-top_btn__arrow {
  background-color: transparent;
  margin-bottom: 4px;
}
.p-top--attention .c-small_btn .c-top_btn__arrow::after {
  border-top: 2px solid #DF1111;
  border-right: 2px solid #DF1111;
}
.p-top--attention .c-small_btn:hover {
  text-decoration: none;
  color: var(--color-white);
  background-color: #DF1111;
}
.p-top--attention .c-small_btn:hover .c-top_btn__arrow::after {
    border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
}

@media (max-width: 767px) {
  .p-top--attention-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-top--attention {
    position: unset;
    display: block;
    width: 100%;
    border-radius: 10px;
  }
  .p-top--attention__headline {
    writing-mode: unset;
    border-radius: 8px 8px 0 0;
  }
  .p-top--attention_content {
    position: relative;
    width: 100%;
    padding: 16px;
    border-radius: 0 0 10px 10px;
  }
  .p-top--attention__date {
    font-size: 12px;
  }
}


/* -------------------------------------------
   ネットバンキング
------------------------------------------- */
.p-banking-feature-section {
  position: relative;
  background-color: var(--color-light-gray);
  padding-top: 34px;
}
.p-banking-links-area {
  display: flex;
  background-color: var(--color-white);
  border-radius: 20px;
}
.p-banking-card {
    padding: 40px 50px;
    color: var(--color-white);
}
.p-banking-card--personal{
  flex-shrink: 1;
  flex-basis: 63%;
  padding: 40px 54px 40px 64px;
  position: relative;
}
.p-banking-card--personal::before{
  border-right: 1px solid var(--color-border);
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  width: auto;
  height: 187px;
}
.p-banking-card--corporate{
  flex-grow: 1;
}
.p-banking-card__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-text);
    text-align: center;
}

.p-banking-links-area .c-btn {
  padding: 28px 24px;
  font-size: var(--fs-17);
  border-radius: 20px;
  gap: 9px;
}
.p-banking-links-area .c-btn:not(.c-btn--disabled)[class*="c-btn--icon-link"]::after {
    width: 30px;
    height: 30px
}
.p-banking-links-area .c-btn:not(.c-btn--disabled)[class*="c-btn--icon-link"]::before {
    right: 31px;
}
.p-banking-links-area .c-top_btn {
  height: 129px;
}
.p-banking-card--personal .c-top_btn__img {
  width: 72px;
  height: auto;
}
.p-banking-card--corporate .c-top_btn__img {
  width: 70px;
  height: auto;
}
.p-banking-card .p-img--btn-title {
    width: 168px;
}

@media (max-width: 767px) {
  .p-banking-links-area {
    flex-direction: column;
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }
  .p-banking-card {
    padding: 32px 20px;
  }
  .p-banking-card__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .p-banking-links-area .c-btn {
      padding: 14px;
      font-size: var(--fs-16);
      border-radius: 12px;
      gap: 16px;
  }
    .p-banking-links-area .c-top_btn {
    height: 84px;
  }
  .p-banking-card .c-hero-banner--2col img {
      max-width: 56px;
  }
  .p-banking-card .p-img--btn-title {
      max-width: 140px !important;
  }
  .p-banking-card--personal::before {
      border-bottom: 1px solid var(--color-border);
      border-right:none;
      right: 0;
      left: 0;
      margin: 0 auto;
      width: 88%;
      height: auto;
  }
    .p-banking-card--personal .l-col:nth-last-of-type(2) .c-top_btn__img,
    .p-banking-card--corporate .c-top_btn__img {
    width: 56px;
    height: auto;
  }
}

.p-bnr-area .o-media-block {
  gap: 40px;
}

@media (max-width: 767px) {
  .p-bnr-area .o-media-block {
    gap: 16px;
  }
  .p-bnr-area {
    margin: 0 auto;
  }
  .p-bnr,
  .p-bnr img {
    width: 100%;
  }
}

/*ドット */
.p-feature-pagination {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-feature-pagination.slick-dots li {
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    width: auto;
    height: auto;
}
.p-feature-pagination.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border: none;
    padding: 0;
    border-radius: 50%;
    transition: background-color 0.3s;
}
.p-feature-pagination.slick-dots li button:before{
  display: none;
}
.p-feature-pagination li.slick-active button {
  background-color: var(--color-primary); 
}
/* -------------------------------------------
   お知らせ
------------------------------------------- */
.p-news-section{
  background-color: var(--color-light-gray);
  border-radius: 0;
}
.p-news-section.u-radius-tr::before {
  background-color: var(--color-white);
}
.p-news-section.u-radius-tr::after {
  background-color: var(--color-light-gray);
}
.p-news-container {
    display: flex;
    flex-direction: row;
    gap: 140px;
}
@media (max-width: 1280px) {
    .p-news-container {
      gap: 10%;
  }
}
@media (max-width: 767px) {
  .c-section-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-left: 16px;
  }
  .p-news-container {
    flex-direction: column;
  }
}

#top .p-news-section .p-news-head {
  align-items: center;
}

#top .p-news-section .c-heading--h2 {
  min-width: 220px;
}

/* フィルター/タブエリア  */

#top .p-news-section .p-news-filter__list {
    padding-left: 0;
}

#top .p-news-section .p-news-filter__list {
  margin-bottom: 0;
}
#top .p-news-filter__list > label {
  width: auto;
  min-width: 76px;
  font-size: 13px;
  font-weight: bold;
  background-color: var(--color-gray);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
  line-height: var(--lh-xs);
  text-align: center;
  padding: 10px 20px;
}

#top .p-news-filter__list input[type=radio] {
  /* display: none; */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#top .p-news-filter__list input[type=radio]:checked + label,
#top .p-news-filter__list label:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

#top .p-news-section:has(#p-news-indibidual:checked) .o-news-list__item:not(.p-news-filter-indibidual) {
    display: none;
}
#top .p-news-section:has(#p-news-corporate:checked) .o-news-list__item:not(.p-news-filter-corporate) {
    display: none;
}
#top .p-news-section:has(#p-news-ir:checked) .o-news-list__item:not(.p-news-filter-ir) {
    display: none;
}

.p-news--btn-area {
  display: flex;
  justify-content: flex-end;
}
.p-news--btn-area .c-top_btn--simple {
  font-size: var(--fs-16);
}


/* ニュースリストエリア */
#top .p-news-section .o-news-container {
  gap: 0;
}
#top .p-news-section .o-news-list-wrapper {
  flex: auto;
}
@media (max-width: 767px) {
  .p-news-section.u-radius-tr::before,
  .p-news-section.u-radius-tr::after {
    content: none;
  }
  .p-news-section .c-news-card {
    gap: 8px;
  }
  .p-news-section .c-news-card .c-news-card__info {
    display: block;
  }
  .p-news-section .c-news-card .c-news-card__tag-group {
    margin-top: 4px;
  }
}

/* すべてのニュースを見るリンク */
.c-readmore-link {
    text-align: right;
    margin-top: 40px;
}
.c-readmore-link__text {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    padding: 0 60px 0 0;
    position: relative;
}
.c-readmore-link__text::before{
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-readmore-link__text::after{
  content: "";
  width: 22px;
  height: 12px;
  mask-image: var(--icon-arrow-right);
  background-color: #fff;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}
.c-readmore-link__item{
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .c-readmore-link a:hover  {
    opacity: 0.7;
  }
}

/* -------------------------------------------
   キャンペーンカルーセル
------------------------------------------- */
.p-top--carousel {
  max-width: 100%;
  padding: 0;
}
.p-top--carousel.u-radius-bl::before {
  background-color: var(--color-white);
}
.p-top--carousel.u-radius-bl::after {
  background-color: var(--color-light-gray);
}
/* カルーセル本体 */
.p-carousel-list {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.p-carousel-list .slick-list{
    overflow: visible;
}
.p-carousel-list__item {
    margin-left: 10px;
    margin-right: 10px;
}
.p-carousel-card {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.p-carousel-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}
.p-carousel-card:hover img {
    transform: scale(1.02);
}
/* インジケーター全体のコンテナ */
.p-carousel-indicator {
    max-width: 90%;
    margin: 0 auto;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
}

.p-carousel-indicator .slick-prev,
.p-carousel-indicator .slick-next {
    position: static !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    background: transparent !important;
    cursor: pointer;
    font-size: 0;
    flex-shrink: 0;
    margin-top: 18px;
}

/* 並び順の指定 */
.p-carousel-indicator .slick-prev { order: 1; }
.p-carousel-indicator .slick-dots { order: 2; }
.p-carousel-indicator__pause { order: 3; }
.p-carousel-indicator .slick-next { order: 4; }

/* 矢印アイコン（デザイン重視で少し太めに） */
.p-carousel-indicator .slick-prev::before,
.p-carousel-indicator .slick-next::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #223a87;
    border-right: 3px solid #223a87;
    opacity: 1 !important;
}
.p-carousel-indicator .slick-prev::before { transform: rotate(-135deg); margin-left: 4px; }
.p-carousel-indicator .slick-next::before { transform: rotate(45deg); margin-right: 4px; }

/* ドット(ゲージ)エリア */
.p-carousel-indicator .slick-dots {
    display: flex !important;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
    position: static;
    width: auto;
    transform: none;
  }
  
  .p-carousel-indicator .slick-dots li {
    margin: 0;
    width: 10px;
    height: 10px;
    /* position: relative;
    width: 10px;
    height: 10px;
    background-color: #dcdcdc;
    border-radius: 10px;
    overflow: hidden;
    transition: width 0.3s ease;
    margin: 0; */
  }
  
  /* アクティブなドットは長く */
.p-carousel-indicator .slick-dots li.slick-active,
.p-carousel-indicator .slick-dots li.slick-active button {
    width: 50px;
    cursor: pointer;
}

/* 青いタイマーゲージ */
.p-carousel-indicator .slick-dots li button::before {
  content: none !important;
  color: transparent !important;
}
.p-carousel-indicator .slick-dots li.slick-active button::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	border-radius: 4px;
	background-color: #223a87;
	overflow: hidden;
	animation: slick_dot 2s 1s linear forwards;
}

@keyframes slick_dot {
	0% {width: 4px;}
	100% {width: 100%;}
}

/* slickのデフォルトボタン隠し */
.p-carousel-indicator .slick-dots li button {
    position: relative;
    width: 10px;
    height: 10px;
    background-color: #dcdcdc;
    border-radius: 10px;
    overflow: hidden;
    transition: width 0.3s ease;
    margin: 0;
}
.p-carousel-indicator .slick-dots li button {
  /* color: transparent; */
  /* display: none; */
}

/* 停止・再生ボタン */
.p-carousel-indicator__pause {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-carousel-indicator__pause::before {
    content: "";
    display: block;
    width: 8px;
    height: 12px;
    border-left: 2px solid #223a87;
    border-right: 2px solid #223a87;
}

.p-carousel-indicator.is-paused .p-carousel-indicator__pause::before {
    border: none;
    width: 0; height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #223a87;
    margin-left: 4px;
}
.p-carousel-indicator.is-paused .slick-dots li.slick-active button::after {
    animation-play-state: paused;
}

/* -------------------------------------------
   企業・IR
------------------------------------------- */
.p-top-ir-area {
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-top-ir__contents {
    width: 60%;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .p-top-ir-area {
      flex-direction: column;
    }
  .p-top-ir-area .p-top-ir__image  {
    width: 252px;
  }
    .p-top-ir__contents {
      width: 100%;
      align-items: center;
    }
}

/* -------------------------------------------
    まるごと
------------------------------------------- */
.p-total--support {
  background: linear-gradient(to bottom, var(--color-light-gray) 0%, #ffffff 100%);
}
.p-total--support .l-container {
  position: relative;
  height: 100%;
}
.p-section_bg {
  position: relative;
  background: url(/assets/images/top/bg_top-pc.svg) center / cover no-repeat;
  height: 960px;
}
.p-img-cloud-01 {
  position: absolute;
  top: 13px;
  left: -2.8%;
}
.p-img-cloud-02 {
  position: absolute;
  top: 205px;
  right: 3.96%;
}
.p-img-cloud-03 {
  position: absolute;
  top: 210px;
  left: 40.54%;
}
.p-img-cloud-04 {
  position: absolute;
  bottom: 16px;
  right: 7.08%;
}
.p-img-cloud-01 img {
  width: 331px;
  height: auto;
}
.p-img-cloud-02 img {
  width: 150px;
  height: auto;
}
.p-img-cloud-03 img {
  width: 190px;
  height: auto;
}
.p-img-cloud-04 img {
  width: 331px;
  height: auto;
}
.p-read-left {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 246px 0 0 40px ;
}
.p-textarea {
    max-width: 537px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.p-textarea .c-text {
    line-height: 2.1;
    font-size: var(--fs-18);
}
@media (max-width: 767px) {
  .p-total--support {
    position: relative;
    overflow: hidden;
  }
  .p-section_bg {
    position: relative;
    background: url(/assets/images/top/bg_top-sp.svg) center / cover no-repeat;
    max-height: 812px;
  }
  .p-total--support .l-container {
    max-width: 546px;
  }
  .p-read-left {
    display: block;
    min-height: auto;
    padding: 0;
  }
  .p-textarea {
    padding-top: 80px;
  }
  .p-textarea .c-text {
    font-size: var(--fs-16);
  }
  .p-img-cloud-01 img {
    width: 152px;
  }
  .p-img-cloud-01 {
    top: -1.2%;
    left: -8.53%;
  }
  .p-img-cloud-02 img {
    width: 85px;
  }
  .p-img-cloud-02 {
    top: 320px;
    right: 2.13%;
  }
  .p-img-cloud-03 img {
    width: 85px;
  }
  .p-img-cloud-03 {
    top: 450px;
    left: 5%;
  }
  .p-img-cloud-04 img {
    width: 152px;
  }
  .p-img-cloud-04 {
    bottom: -0.2%;
    right: -4.8%;
    z-index: 20;
  }
  .p-total--support_btn {
    position: absolute;
    width: 100%;
    bottom: 70px;
    left: 0;
    right: 0;
    text-align: center;
  }
}

@media (max-width: 374px) {
  .p-total--support::before {
    top: 20px;
  }
  .p-total--support::after {
    bottom: 20px;
  }
}


/* -------------------------------------------
    よく利用される商品・サービス
------------------------------------------- */
.p-top--service .p-bg--top-service {
  background-color: var(--color-primary);
  border-radius: 30px;
  padding: 64px 63px;
  position: relative;
}
.p-top--service .p-bg--top-service::before {
  position: absolute;
  content: "";
  background: url(/assets/images/top/img_decoration-02.png) center / contain no-repeat;
  height: 345px;
  width: 800px;
  bottom: 0;
  right: 0;
}
.p-top--service .c-heading--h2 {
  color: var(--color-white);
  text-align: center;
}
.p-top--service .l-row .l-col .c-top-img_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 86px;
  height: 86px;
}
.p-top--service .l-row .l-col:nth-of-type(4) .c-top-img_wrap {
  width: 92px;
}
.p-top--service .l-row .l-col:nth-of-type(5) img {
  width: 76px;
}

@media (max-width: 767px) {
  .p-top--service {
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-light-gray) 80%);
  }
  .p-top--service.u-radius-bl::before, 
  .p-top--service.u-radius-bl::after {
    content: none;
  }
  .p-top--service .p-bg--top-service {
    padding: 40px 20px;
  }
  .p-top--service .p-bg--top-service::before {
    height: 207px;
    width: 480px;
    background-size: cover;
  }
  .p-top--service .l-row--5 > .l-col {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
  .p-top--service .l-col .c-top_btn--card {
    gap: 0;
  }
  .p-top--service .l-row .l-col .c-top-img_wrap {
    width: 76px;
    height: 76px;
  }
  .p-top--service .l-row .l-col:nth-of-type(1) img {
    width: 62px;
  }
  .p-top--service .l-row .l-col:nth-of-type(4) img {
    width: 74px;
  }
  .p-top--service .l-row .l-col:nth-of-type(5) img {
    width: 68px;
  }
}

/* -------------------------------------------
    顧客別サービス案内
------------------------------------------- */
.p-customer--service .p-service--list {
  display: flex;
  justify-content: space-between;
}
.p-customer--service .p-service--list .p-list--box:first-of-type {
  border-right: 1px solid var(--color-border);
}
.p-customer--service .p-list--box {
  width: 50%;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-customer--service .p-list--box:nt img {
  max-width: 246px;
}
.p-customer--service .p-list--box ul {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-left: 0;
}
/* ボタン */
.p-customer--service .p-list--box ul .c-top_btn--card{
  padding: 18px;
  width: 160px;
  height: 160px;
}
.p-customer--service .p-list--box ul .c-top_btn--card .c-top_btn__text {
  height: 44px;
  display: flex;
  align-items: center;
  font-size: var(--fs-16);
  margin-top: 6px;
}
.p-customer--service .p-list--box ul .c-top_btn--card img {
  width: 76px;
}
@media (max-width: 767px) {
  .p-customer--service {
  padding-bottom: 0;
  }
  .p-customer--service .p-service--list {
    flex-direction: column;
  }
  .p-customer--service .p-service--list .p-list--box:first-of-type {
    border-right: none;
    border-bottom: none;
  }
  .p-customer--service .p-list--box {
    width: 100%;
    padding: 0;
  }
  .p-customer--service .p-list--box img {
    max-width: 160px;
  }
  .p-customer--service .p-list--box ul .c-top_btn__img {
    width: 56px;
  }
  .p-customer--service .p-list--box ul {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .p-customer--service .p-list--box ul.pc_show {
    display: none !important;
  }
}

/* -------------------------------------------
  ふくジェンヌ+
------------------------------------------- */
.l-section.p-top--fukusienne {
  padding-top: 16px;
  margin-top: 120px;
}
.p-top--fukusienne {
  position: relative;
  background: #D6EEFC;
  overflow-x: clip;
}
.p-top--fukusienne .l-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.p-top--fukusienne .p-inner {
  margin-right: calc(50% - 50vw + 5px);
}
.p-top--fukusienne::after {
  position: absolute;
  content: "";
  background: url(/assets/images/top/img_decoration.png) center / cover no-repeat;
  top: -120px;
  left: 0;
  height: 136px;
  width: 100%;
}
.p-content--area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap:56px;
  margin-bottom: 40px;
}
.p-content--area::after {
  position: absolute;
  content: "";
  background: url(/assets/images/top/bg_fukusienne--taxt.png) center / contain no-repeat;
  bottom: -50px;
  left: -40px;
  height: 94px;
  max-width: 1120px;
  width: 100%;
}
.p-text--box {
  position: relative;
  z-index: 10;
  width: 472px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.p-text--box .p-description p {
  line-height: 1.8;
}
.p-visual-box {
  width: calc(100% - 472px);
  flex-shrink: 0;
  min-height: 418px;
  position: relative;
}
.p-fukusienne--img, .p-logo--fukusienne,
.p-illust {
  position: absolute;
}
.p-fukusienne--img.img-main {
  top: 68px;
  left: 0;
  z-index: 2;
}
.p-fukusienne--img.img-main img {
  width: 470px;
  height: auto;
  max-width: none;
}
.p-fukusienne--img.img-sub-top {
  top: 0;
  left: 508px;
  z-index: 3;
}
.p-fukusienne--img.img-sub-top img {
  width: 285px;
  height: auto;
  max-width: none;
}
.p-fukusienne--img.img-sub-right {
  bottom: 0px;
  left: 342px;
  z-index: 4;
}
.p-fukusienne--img.img-sub-right  img {
  width: 210px;
  height: auto;
  max-width: none;
}
.p-logo--fukusienne {
  top: -40px;
  right: 0;
}
.p-logo--fukusienne img {
  width: 110px;
  height: auto;
  max-width: none;
}
.illust-01 {
  top: 0;
  left: 270px;
  z-index: 7;
}
.illust-01 img {
  width: 211px;
  height: auto;
  max-width: none;
}
.illust-02 {
  bottom: 0;
  left: 600px;
  z-index: 7;
}
.illust-02 img {
  width: 153px;
  height: auto;
  max-width: none;
}
.illust-03 {
  bottom: -106px;
  left: -20%;
  z-index: 7;
}
.illust-03 img {
  width: 120px;
  height: auto;
  max-width: none;
}
@media (max-width: 767px) {
  .l-section.p-top--fukusienne {
    padding-top: 0;
    margin-top: 52px;
  }
  .l-section.p-top--fukusienne .l-container {
    padding: 0;
  }
  .p-top--fukusienne .p-inner {
    margin-right: auto;
  }
  .p-content--area{
    display: block;
    margin-bottom: 0;
  }
  .p-content--area .p-description .c-top_btn {
    text-align: center;
  }
  .p-text--box , .p-visual-box {
    width: 100%;
  }
  .p-text--box {
    padding: 46px 20px 0;
  }
  .p-top--fukusienne::after {
    top: -48px;
    height: 48px;
  }
  .p-logo--fukusienne {
    top: 0;
    right: 20px;
  }
  .p-btn--area {
    text-align: center;
  }
  .p-visual-box {
    min-height: 428px;
    max-width: 480px;
    margin: 0 auto;
  }
  .p-logo--fukusienne img {
    width: 80px;
  }
  .p-fukusienne--img.img-sub-top {
    top: auto;
    bottom: 0;
    left: 20px;
  }
  .p-fukusienne--img.img-sub-top img {
    width: 169px;
  }
  .p-fukusienne--img.img-sub-right img {
    width: 146px;
  }
  .p-fukusienne--img.img-sub-right {
    bottom: 114px;
    right: 20px;
    left: auto;
    right: 5.5%;
  }
  .p-fukusienne--img.img-main img {
    width: 326px;
  }
  .p-fukusienne--img.img-main {
    left: -32px;
    top: 65px;
  }
  .illust-01 {
    top: 18px;
    left: auto;
    right: 37px;
  }
  .illust-01 img {
      width: 146px;
  }
  .illust-02 {
    right: 4.5%;
    left: auto;
    bottom: 0;
  }
  .illust-02 img {
    width: 101px;
  }
  .illust-03 {
    top: 0;
    bottom: auto;
    left: 10px;
  }
  .illust-03 img {
    width: 75px;
  }
  .p-content--area::after {
    background: url(/assets/images/top/bg_fukusienne--taxt-sp.png) left / contain no-repeat;
    bottom: -43px;
    left: 0;
    height: 120px;
    width: 485px;
  }
}
/* -------------------------------------------
  追従サイドボタン
------------------------------------------- */
.p-side-btn {
  position: fixed;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.6s ease-out, opacity 0.6s ease-out;
  opacity: 0;
  z-index: 30;
}
.p-side-btn.is-show {
  right: 0;
  opacity: 1;
}
.p-side-btn.is-stopped {
  position: absolute;
  transition: none;
  right: 0 !important;
}
.p-side-btn .p-side-btn__link {
  display: flex;
  font-size: var(--fs-14);
  align-items: center;
  writing-mode: vertical-rl;
  width: 48px;
  background-color: var(--color-primary);
  color: var(--color-white);
  gap: 4px;
  padding: 16px 14px;
  box-sizing: border-box;
  border-radius: 10px 0 0 10px;
  transition: opacity 0.3s;
}
.p-side-btn .p-side-btn__link::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 18px;
  background: url(/assets/images/top/icon_alert.svg) center / cover no-repeat;
}
.p-side-btn .p-side-btn__link:hover {
  text-decoration: none;
}
.p-side-btn .p-side-btn__link:hover::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 0 0 10px;
  background-color: var(--color-white);
  opacity: 0.1;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .p-side-btn .p-side-btn__link {
    width: 40px;
    padding: 12px 8px;
  }
  .p-side-btn .p-side-btn__link::before {
    width: 13px;
    height: 16px;
  }
}

/* -------------------------------------------
  フッター
------------------------------------------- */
@media (max-width: 767px) {
  .p-top-footer-list {
    padding: 24px 10px;
  }
  .p-top-footer-list li {
    line-height: 1.2;
    margin-bottom: 0;
  }
  .p-top-footer-list li a {
    font-size: 12px;
    color: #1d3550;
    line-height: 1.2;
    font-weight: normal;
  }
}

/* -------------------------------------------
  フォーカス
------------------------------------------- */
.p-carousel-attention .slick-prev:focus-visible,
.p-carousel-attention .slick-next:focus-visible,
.p-carousel-indicator .slick-prev:focus-visible,
.p-carousel-indicator .slick-next:focus-visible {
  outline: 2px solid -webkit-focus-ring-color;
  border-radius: 2px;
}
.p-carousel-indicator .slick-dots li button:focus-visible {
  outline: 2px solid -webkit-focus-ring-color;
  outline-offset: 1px;
  border-radius: 10px;
}
#top .p-news-filter__list input[type=radio]:focus-visible + label {
  outline: 2px solid -webkit-focus-ring-color;
  border-radius: 48px;
  outline-offset: 1px;
}