@charset "utf-8";
/* ==================================================
装飾
================================================== */
.sticky_image {
  z-index: -1;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 83%;
}
.sticky_image img {
  width: 100%;
}
.bg_blur {
  z-index: 1;
  position: relative;
  background-color: rgba(255, 255, 255, 0.55); /* #fff（白）の不透明度55% */
  backdrop-filter: blur(5px); /* ぼかし量5 */
  -webkit-backdrop-filter: blur(5px);
}
.bg_blur::before {
  position: absolute;
  content: '';
  z-index: -1;
  top: 0;
  left: 0;
  height: 880px;
  width: 100%;
  background: linear-gradient(
    to bottom,
    #ffffff 0px,
    #ffffff 409px,
    rgba(255, 255, 255, 0) 880px
  );
}


/* ==================================================
各セクション共通
================================================== */
.h2_title {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
.h2_title_inner {
  display: inline-block;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(230,0,0,1) 0%, rgba(242,205,0,1) 36%, rgba(0,169,224,1) 69%, rgba(0,65,180,1) 100%) 1;
  padding-bottom: 21px;
}
.h2_title_main {
  display: inline-block;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 8px;
}
.h2_title_main:first-child { margin-top: 0; }
.h2_title_sub {
  display: block;
  color: #0041B4;
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 500;
}


/* ==================================================
スライダー
================================================== */
.js-sliderWrap .swiper-container a {
  display: block;
}
.js-sliderWrap .bx-wrapper .bx-pager {
  bottom: -43px;
}
.js-sliderWrap .bx-wrapper .bx-controls-direction a {
  width: 20px;
  height: 32px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
}
.swiper-container {
  --swiper-navigation-size: 32px;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  color: transparent;
  background-size: contain;
}
.swiper-container .swiper-button-next {
  background: url(/top_v2/images/arrow_next.svg) no-repeat center center;
}
.swiper-container .swiper-button-prev {
  background: url(/top_v2/images/arrow_prev.svg) no-repeat center center;
}
.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
  content: none;
}


.swiper-container .bx-wrapper .bx-controls-direction a:hover{
  opacity: .7;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
bottom: 5px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}
.swiper-container .swiper-pagination-bullet{
  background: #BFC2D3;
  opacity: 1;
  width: 10px;
  height: 10px;
}
.swiper-container .swiper-pagination-bullet-active {
  background: #0041B4;
}

.swiper-container .slider-controls .swiper-pagination {
  position: static;
  width: auto;
  margin: 0 -6px;
}
.swiper-container .slider-controls .playButton {
  display: none; /* 初期状態では再生ボタンを非表示 */
}
.swiper-container .slider-controls .control-button {
  width: 8px;
  height: 10px;
}
.swiper-container .slider-controls .control-button img {
  display: block;
}
.slider-controls-wrap {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  width: var(--cntWidth);
  margin: 0 auto;
}
.slider-controls {
  width: fit-content;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 21px 5px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}


/* ==================================================
MV
================================================== */
.mv {
  height: 425px;
}
.mv_listWrap {
  height: 100%;
  position: relative;
}
/* mv_list */
.mv_list {
  overflow: hidden;
}
.mv_item {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1 !important;
}
.mv_item_inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mv_item_innerCnt {
  width: calc(var(--cntWidth) + var(--cntPaddingXDouble));
  max-width: var(--cntWidth);
  display: flex;
  margin: auto;
}
.mv_textWrap {
}
/* スライド1枚目 */
.mv_item.brand {
  position: relative;
  background-image: url(/top_v2/images/mv_01.jpg);
  background-size: cover;
}
.mv_item.brand::before {
  position: absolute;
  content: '';
  display: block;
  background-image: url(/top_v2/images/deco.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100px;
  width: 720px;
  bottom: 0;
  right: 0;
}
.mv_item.brand .mv_item_inner {
}
.mv_item.brand .mv_item_innerCnt {
  gap: 0 39px;
}
.mv_item.brand .mv_title{
  width: 400px;
}
.mv_item.brand .mv_text{
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  color: #0041B4;
}
/* スライド2枚目 */
.mv_item.no02 {
  background-image: url(/top_v2/images/mv_02.jpg);
  background-size: auto;
  background-color: #fff;
  padding: 0 60px;
}
.mv_item.no02 .mv_item_innerCnt {
  padding-bottom: 30px;
}
.mv_item.no02 .mv_textWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 0;
  border-bottom: none;
}
.mv_item.no02 .mv_title {
  font-size: 48px;
  font-weight: 500;
  color: #0041B4;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  line-height: 1.625;
}
.mv_item.no02 .mv_text {
  font-size: 18px;
  line-height: 2;
  color: #000;
  letter-spacing: 0;
}
.mv_item.no02 .mv_logos {
  margin-top: 12px;
}


/* ==================================================
お知らせ
================================================== */
.news {
  --secGap: 100px;
  background: #F5F5F5;
}
.news .cntSec_inner {
  padding-bottom: var(--secGap);
}
.news_h2 {
  display: flex;
  align-items: center;
  border-bottom: none;
  margin-top: 0;
  padding-bottom: 0;
  font-size: 26px;
  text-align: left;
  font-weight: bold;
}
.news_h2::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  margin-left: 10px;
  background-color: #0041B4;
}
.news_inner {
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, .1);
  border-radius: 8px;
  padding: 32px;
  background: #fff;
}


/* ==================================================
誰もが抱えるお金の悩み、専門家に相談してみませんか？
================================================== */
.problem {
  --secGap: 120px;
}
.problem_point {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.problem_point .cirList {
  font-size: 18px;
  margin-top: 0;
}
.problem_point .cirList > li { margin-top: 0; }
.problem_point_item {
  width: 360px;
  aspect-ratio: 1 / 1;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #0041B4;
  border-radius: 50%;
  padding: 8px 54px;
}
.problem_point_ttl {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.03em;
  text-align: center;
}
.problem_point_list {
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 1.77;
}


/* ==================================================
資産運用の疑問や不安などお気軽にご相談ください
================================================== */
.solution {
  --secGap: 120px;
}
.solution .cntSec_inner {
  padding-bottom: 134px;
}
.solution_content {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.solution_content:first-child { margin-top: 0; }
.solution_content-reverse { 
  flex-direction: row-reverse;
}
.solution_contentItem-img {
  flex: 0 0 auto;
}
.solution_ttl {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.03em;
}
.solution_ttl_icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.solution_txt {
  line-height: 1.6875;
  margin-top: 24px;
}
.solution_txt:first-child { margin-top: 0; }


/* ==================================================
オンライン個別相談
================================================== */
.webConsult {
  --secPaddingB: 80px;
  background-color: #F5F5F5;
}
.webConsult .nmlBtn {
  width: 280px;
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.webConsult_content {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: var(--defColor);
  background: url(/top_v2/images/webconsult_bg.jpg) no-repeat center center;
  border-radius: 16px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 16px 80px;
  transition: var(--transOpac);
}
.webConsult_content:hover {
  opacity: var(--hoverOpac);
}
.webConsult_heading {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-shadow: 0px 0px 20px #fff;
}
.webConsult_heading_icon {
  flex-shrink: 0;
}
.webConsult_txt {
  font-size: 18px;
  margin-top: 24px;
}
.webConsult_txt strong {
  color: var(--defColor);
  font-weight: bold;
}


/* ==================================================
ひろぎんライフパートナーズについて
================================================== */
.company {
  --secGap: 100px;
  --secPaddingB: 120px;
}
.company .nmlBtn {
  --marginTop: 30px;
}
.company_content {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.company_content:first-child { margin-top: 0; }
.company_contentItem-img {
  flex: 0 0 auto;
}
.company_txt {
  line-height: 1.77;
  margin-top: 24px;
}
.company_txt:first-child { margin-top: 0; }
/* - ご留意点 - */
.company_note {
  background-color: #fff;
  border: 1px solid #e60000;
  border-radius: 16px;
  margin-top: 80px;
  padding: 40px;
}
.company_note_heading {
  color: #e60000;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.03em;
  line-height: 32px;
  text-align: center;
}
.company_note_body {
  margin-top: 40px;
}
.company_note_ttl {
  position: relative;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-top: 32px;
  padding-top: 32px;
}
.company_note_ttl:first-child { margin-top: 0; padding-top: 0; }
.company_note_ttl::before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: #BFC2D3;
}
.company_note_ttl:first-child:before { content: none; }


/* ==================================================
ひろぎんグループ
================================================== */
.groupArea {
  background-image: url(/top_v2/images/bg_group_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
.groupArea .cntSec_inner {
  padding-top: 99px;
}
.groupArea_h2 {
  letter-spacing: 0.025em;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 15px #fff;
}
/* nmlBtn2 */
.groupArea .nmlBtn2 {
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
  padding: 47px 0 102px;
}
.groupArea .nmlBtn2_item {
  flex: 0 0 auto;
  width: 380px;
  min-height: 80px;
}
.groupArea .nmlBtn2_item_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px 36px;
  color: #000;
  font-weight: bold;
  background-color: #fff;
  transition: 300ms;
  border: 1px solid #BFC2D3;
}
.groupArea .nmlBtn2_item_inner:hover {
  color: #0041B4;
}
.groupArea .nmlBtn2_linkIcon {
  position: absolute;
  top: auto;
  right: 7px;
  bottom: 7px;
  margin: auto;
}
.groupArea .nmlBtn2_linkIcon-blank {
  width: 15px;
  height: 15px;
}
.groupArea .nmlBtn2_linkIcon-arrow {
  width: 12px;
  height: 12px;
}
.groupArea .nmlBtn2_linkIcon::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: transparent;
}
.groupArea .nmlBtn2_linkIcon-blank::after {
  background-image: url(/common_v2/images/icon/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 15px;
  height: 15px;
  mask-image: none;
}
.groupArea .nmlBtn2_linkIcon-arrow::after {
  border-top: 6px solid transparent;
  border-right: 6px solid #0041B4;
  border-bottom: 6px solid #0041B4;
  border-left: 6px solid transparent;
  width: 12px;
  height: 12px;
}
.groupArea .nmlBtn2_text_main {
  font-size: 16px;
  letter-spacing: 0.025em;
}
.groupArea .nmlBtn2_image {
  transition: 300ms;
}
.groupArea .nmlBtn2_item_inner:hover .nmlBtn2_image {
  opacity: 0.5;
}


/* ==================================================
お問い合わせ
================================================== */
.contact {
  --secGap: 48px;
  --secPaddingB: 100px;
  text-align: center;
  background: #fff url(/top_v2/images/deco.png) no-repeat bottom right / 711px 100px;
}
.contact_heading {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.03em;
  line-height: 1.1875;
  text-align: center;
}
.contact_tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  margin-top: 25px;
}
.contact_icon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_telNumber {
  font-size: 56px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  color: #0041B4;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-top: 0;
}
.contact_txt {
  font-weight: 500;
  text-align: center;
  margin-top: 8px;
}
.contact_time {
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  margin-top: 7px;
}




