@charset "utf-8";
/* ==================================================
elements
================================================== */
a {
  text-decoration: none;
}


/* ==================================================
contents
================================================== */
.content_main {
  padding-bottom: 40px;
}


/* ==================================================
既存コンポネの上書き
================================================== */
.stdTab_btn {
  font-weight: 700;
}




/* ==================================================
mv下
================================================== */
.sv {
  --secGap: 16px;
}
/* --- 山形銀行の支店を装った偽アカウントにご注意ください！ --- */
.sv_alert {
  min-height: 234px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--colorAlert);
  border-radius: 8px;
}
.sv_alert_heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sv_alert_icon {
  width: 23px;
  height: 20px;
  flex-shrink: 0;
}
.sv_alert_title {
  color: var(--colorAlert);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sv_alert_body {
  color: var(--defColor);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.sv_alert_body > p:nth-child(n+2) {
  margin-top: 0;
}
/* --- 法人・事業主のお客さま / 個人のお客さま --- */
.sv_customer {
  margin-top: 20px;
  padding: 20px;
  display: block;
  background-color: var(--colorLightGray);
  border-radius: 16px;
}
.sv_customer_heading {
  display: none;
}
.sv_customer_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sv_customer_btn {
  --icon: url(/common_v2/images/icon/icon_logon.svg);
  --iconSize: 32px;
  --iconColor: #fff;
  width: 100%;
  min-height: 64px;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  color: #fff;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}
.sv_customer_btn::before {
  content: '';
  width: var(--iconSize);
  height: var(--iconSize);
  flex-shrink: 0;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  background-color: var(--iconColor);
  -webkit-mask: no-repeat center / contain var(--icon);
  mask: no-repeat center / contain var(--icon);
}
.sv_customer_btn-red {
  background-color: var(--colorRed);
}
.sv_customer_btn-blue {
  background-color: #224080;
}
.sv_customer_btn_text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}
.sv_customer_btn_sub {
  font-size: 12px;
  letter-spacing: 0.05em;
}
.sv_customer_btn_main {
  font-size: 18px;
  letter-spacing: 0.05em;
}
.sv_customer_links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sv_customer_links_link {
  padding-left: 22px;
  display: block;
  position: relative;
  color: var(--colorBlue);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.sv_customer_links_link::before {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(/common_v2/images/icon/icon_arrow.svg) no-repeat center / contain;
}
/* --- 既存コンポネの上書き --- */
.sv .stdTab_btns {
  background: #fff;
}


/* ==================================================
法人ソリューションメニュー
================================================== */
.solutionMenu {
  --secGap: 48px;
}

.solutionMenu_title {
  color: var(--colorBlue);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
/* --- タブナビ --- */
.solutionMenu_nav {
  --col: 3;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
}
.solutionMenu_nav_item {
  position: relative;
}
/* 縦線（右側） */
.solutionMenu_nav_item::before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--colorGray);
}
.solutionMenu_nav_item:nth-child(3n)::before { content: none; }
/* 横線（下側）- 最終行以外に表示 */
.solutionMenu_nav_item::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--colorGray);
}
.solutionMenu_nav_item:nth-child(3n+1):nth-last-child(-n+3)::after,
.solutionMenu_nav_item:nth-child(3n+1):nth-last-child(-n+3) ~ .solutionMenu_nav_item::after { content: none; }
.solutionMenu_nav_btn {
  width: 100%;
  height: 100%;
  min-height: 100px;
  padding: 12px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--defColor);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
}
.solutionMenu_nav_btn.is-active {
  background-color: var(--colorLightBlue);
}
.solutionMenu_nav_icon {
  width: auto;
  max-height: 40px;
  display: flex;
  justify-content: center;
}
.solutionMenu_nav_text {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.4;
}
.solutionMenu_nav_text::after {
  --icon: url(/common_v2/images/icon/icon_cir_plus.svg);
  --iconSize: 12px;
  content: '';
  width: var(--iconSize);
  height: var(--iconSize);
  flex-shrink: 0;
  background-color: var(--colorBlue);
  -webkit-mask: no-repeat center / contain var(--icon);
  mask: no-repeat center / contain var(--icon);
}
.solutionMenu_nav_btn.is-active .solutionMenu_nav_text::after {
  --icon: url(/common_v2/images/icon/icon_cir_minus.svg);
}
/* --- リンクボタン --- */
a.solutionMenu_nav_btn .solutionMenu_nav_text::after {
  --icon: url(/common_v2/images/icon/icon_arrow.svg);
}
/* --- メニュー一覧 --- */
.solutionMenu_body {
  margin-top: 16px;
  padding: 24px 16px;
  background-color: var(--colorLightBlue);
  border-radius: 16px;
}
.solutionMenu_body .linkIcon {
  margin: 0;
}
.solutionMenu_grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.solutionMenu_col_title {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 1px solid #333;
}
.solutionMenu_col_title a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--defColor);
  text-decoration: none;
  padding: 0 8px 12px 0;
}
.solutionMenu_list {
  display: grid;
  gap: 0 8px;
  grid-template-columns: repeat(2, 1fr);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.solutionMenu_list li {
  border-bottom: 1px solid var(--colorGray);
}
.solutionMenu_list a {
  height: 100%;
  padding: 12px 8px 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  color: var(--colorBlue);
  text-decoration: none;
}
/* --- 閉じるボタン --- */
.solutionMenu_closeBtn {
  --icon: url(/common_v2/images/icon/icon_close.svg);
  width: 140px;
  height: 36px;
  margin: 20px auto 0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--defColor);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: #fff;
  border: 1px solid var(--colorGray);
  border-radius: 80px;
  cursor: pointer;
}
.solutionMenu_closeBtn::before {
  content: '';
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-color: var(--defColor);
  -webkit-mask: no-repeat center / contain var(--icon);
  mask: no-repeat center / contain var(--icon);
}


/* ==================================================
お知らせ
================================================== */
.news {
  --secGap: 56px;
  --secPaddingB: 56px;
}
.news_box {
  padding: 40px 20px;
  position: relative;
  background: linear-gradient(115deg, rgba(247, 247, 247, 0.80) 0%, rgba(247, 247, 247, 0.60) 100%);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}
/* --- タブコンテンツ --- */
.news_empty {
  padding: 20px 0;
  color: var(--defColor);
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
}
/* --- ボタン --- */
.news_btn {
  --icon: url(/common_v2/images/icon/icon_arrow.svg);
  --iconSize: 16px;
  width: 100%;
  min-height: 56px;
  margin: 24px auto 0;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  background-color: var(--colorBlue);
  border: 1px solid var(--colorBlue);
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}
.news_btn::after {
  content: '';
  width: var(--iconSize);
  height: var(--iconSize);
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  -webkit-mask: no-repeat center / contain var(--icon);
  mask: no-repeat center / contain var(--icon);
}
/* --- 既存コンポネの上書き --- */
.news .stdTab_btns {
  background-color: #fff;
}


