@charset "UTF-8";
/* ============================== font */
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff"), url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff") format("woff"), url("../font/NotoSansJP-Medium.woff2") format("woff2"), url("../font/NotoSansJP-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff"), url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "ZenMaruGothic";
  font-style: normal;
  font-weight: 400;
  src: url("../font/ZenMaruGothic-Regular.woff") format("woff"), url("../font/ZenMaruGothic-Regular.woff2") format("woff2"), url("../font/ZenMaruGothic-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "ZenMaruGothic";
  font-style: normal;
  font-weight: 700;
  src: url("../font/ZenMaruGothic-Bold.woff") format("woff"), url("../font/ZenMaruGothic-Bold.woff2") format("woff2"), url("../font/ZenMaruGothic-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "ZenMaruGothic";
  font-style: normal;
  font-weight: 900;
  src: url("../font/ZenMaruGothic-Black.woff") format("woff"), url("../font/ZenMaruGothic-Black.woff2") format("woff2"), url("../font/ZenMaruGothic-Black.ttf") format("truetype");
}
/* ============================== common */
html {
  font-size: 62.5%; /*1.0rem=10px*/
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  font-family: "NotoSansJP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
  padding: 178px 0 0;
  position: relative;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
    padding-top: 0;
  }
}

:where(a) {
  color: #263F88;
  text-decoration: underline;
}
:where(a):hover {
  cursor: pointer;
  text-decoration: none;
}
:where(a):hover img {
  opacity: 0.8;
  transition: all 0.25s ease;
}

@media screen and (max-width: 768px) {
  :where(img) {
    height: auto;
    width: 100%;
  }
}
:where(img).img_responsive {
  height: auto;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none;
  }
}
@media print {
  .spOnly {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
}
/* ============================== header */
header {
  background: #fff;
  border-top: #263F88 solid 16px;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width: 769px) {
  header {
    position: fixed;
    left: 0;
    top: 0;
    transition: top 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  header {
    border-top-width: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: visible;
    height: auto;
  }
  header::after {
    background: #fff;
    content: "";
    -webkit-clip-path: inset(0 -50vw 100%);
            clip-path: inset(0 -50vw 100%);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    transform: translateY(-100%);
    transition: -webkit-clip-path 0.3s ease;
    transition: clip-path 0.3s ease;
    transition: clip-path 0.3s ease, -webkit-clip-path 0.3s ease;
    height: 100%;
    width: 100%;
    z-index: 500;
    pointer-events: none;
  }
}
.top header {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.h_upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "ZenMaruGothic", sans-serif;
  font-weight: bold;
  padding: 15px 20px 15px 50px;
  height: 92px;
}
.h_upper a {
  opacity: 1;
  transition: all 0.25s ease;
  text-decoration: none;
}
.h_upper a:hover {
  opacity: 0.8;
  transition: all 0.25s ease;
}
.h_upper .logo {
  max-width: clamp(250px, 16.875vw, 270px);
}
@media screen and (max-width: 768px) {
  .h_upper {
    flex-shrink: 0;
    padding: 11px 10px 12px;
    height: auto;
    z-index: 999;
  }
  .h_upper .logo {
    padding: 4px 0;
    max-width: 176px;
  }
}

.h_upper-menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .h_upper-menu {
    -webkit-clip-path: inset(0 -50vw 100%);
            clip-path: inset(0 -50vw 100%);
    opacity: 0;
    transition: opacity 0.3s ease, -webkit-clip-path 0.3s ease;
    transition: clip-path 0.3s ease, opacity 0.3s ease;
    transition: clip-path 0.3s ease, opacity 0.3s ease, -webkit-clip-path 0.3s ease;
    visibility: hidden;
    z-index: 999;
    flex-wrap: wrap;
    justify-content: space-between;
    order: 3;
    padding: 15px 5px 3px;
    position: absolute;
    left: 0;
    top: 100%;
  }
}

.menu-btn_green-style {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* アイコン */
}
@media screen and (max-width: 768px) {
  .menu-btn_green-style {
    align-items: stretch;
    width: 100%;
  }
}
.menu-btn_green-style li {
  flex-basis: calc((100% - min(1.25vw, 20px)) / 3);
}
@media screen and (max-width: 768px) {
  .menu-btn_green-style li {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}
.menu-btn_green-style li:not(:first-child) {
  margin-left: min(1.25vw, 20px);
}
@media screen and (max-width: 768px) {
  .menu-btn_green-style li:not(:first-child) {
    margin-left: 0;
  }
}
.menu-btn_green-style li a {
  background: #E1F2F3;
  border: #8AC2D4 solid 1px;
  border-radius: 9999px;
  color: #333;
  display: inline-block;
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  line-height: 1;
  padding: 10px min(2.5vw, 40px) 10px min(2.8125vw, 45px);
  position: relative;
  text-align: center;
  width: 100%;
  max-width: min(12.5vw, 200px);
  min-width: max(10vw, 160px);
}
.menu-btn_green-style li a::before {
  position: absolute;
  left: min(0.625vw, 10px);
  top: 70%;
  transform: translateY(-70%);
}
@media screen and (max-width: 768px) {
  .menu-btn_green-style li a {
    border-radius: 10px;
    font-size: 17px;
    padding: 7px 5px 8px;
    height: 64px;
    width: 100%;
    max-width: none;
    min-width: auto;
  }
  .menu-btn_green-style li a::before {
    display: block;
    position: relative;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
  }
}
.menu-btn_green-style .btn_ico-shop a::before {
  content: url(/assets/images/common/icon_map.svg);
}
.menu-btn_green-style .btn_ico-kinri a::before {
  content: url(/assets/images/common/icon_kinri.svg);
}
.menu-btn_green-style .btn_ico-fee a::before {
  content: url(/assets/images/common/icon_fee.svg);
}

.menu-btn_company {
  margin-left: min(1.25vw, 20px);
}
.menu-btn_company a {
  background: #fff;
  border: #A2ADCB solid 3px;
  border-radius: 9999px;
  color: #333;
  display: block;
  font-size: min(1.25vw, 2rem);
  line-height: 1;
  padding: 18px 39px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .menu-btn_company {
    flex-basis: 38%;
    margin-left: 0;
    margin-top: 20px;
    order: 3;
  }
  .menu-btn_company a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 13px 20px;
    height: 50px;
  }
}

.menu-btn_adoption {
  margin-left: min(1.25vw, 20px);
}
.menu-btn_adoption a {
  background: rgb(255, 137, 93);
  background: linear-gradient(140deg, rgb(255, 137, 93) 0%, rgb(248, 220, 35) 100%);
  border-radius: 9999px;
  color: #fff;
  display: block;
  font-size: min(1.5vw, 2.4rem);
  line-height: 1;
  padding: 19px min(4.875vw, 78px);
  text-align: center;
  max-width: 253px;
}
@media screen and (max-width: 768px) {
  .menu-btn_adoption {
    flex-basis: 58.25%;
    margin-left: 0;
    margin-top: 20px;
  }
  .menu-btn_adoption a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 10px 20px;
    height: 50px;
  }
}

/* グローバルメニュー関連 */
.h_bottom {
  background-color: #F1F1F1;
}
@media screen and (max-width: 768px) {
  .h_bottom {
    background-color: transparent;
    -webkit-clip-path: inset(0 -50vw 100%);
            clip-path: inset(0 -50vw 100%);
    flex-grow: 1;
    opacity: 0;
    padding-bottom: 65px;
    transition: opacity 0.3s ease, -webkit-clip-path 0.3s ease;
    transition: clip-path 0.3s ease, opacity 0.3s ease;
    transition: clip-path 0.3s ease, opacity 0.3s ease, -webkit-clip-path 0.3s ease;
    visibility: hidden;
    z-index: 999;
    position: absolute;
  }
}

.globalnavigation {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .globalnavigation {
    padding-bottom: 47px;
  }
}

ul.gnavi-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1500px;
}
@media screen and (max-width: 768px) {
  ul.gnavi-list {
    display: none;
  }
}
ul.gnavi-list .list_gmenu {
  padding: 7px 5px 0;
  position: relative;
}
ul.gnavi-list .list_gmenu:nth-child(1), ul.gnavi-list .list_gmenu:nth-child(4) {
  flex-basis: calc((100% - min(44.125vw, 706px)) / 2);
}
ul.gnavi-list .list_gmenu:nth-child(2), ul.gnavi-list .list_gmenu:nth-child(3) {
  flex-basis: min(22.0625vw, 353px);
}
ul.gnavi-list .list_gmenu:nth-child(-n+3)::after {
  background: #919191;
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 45.7142857143%;
  width: 1px;
}
ul.gnavi-list .list_gmenu .btn_gmenu,
ul.gnavi-list .list_gmenu > a {
  background-color: transparent;
  border: none;
  border-radius: 10px 10px 0 0;
  color: #263F88;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "ZenMaruGothic", sans-serif;
  font-weight: bold;
  padding: 3px 0;
  text-align: center;
  text-decoration: none;
  height: 63px;
  width: 100%;
}
ul.gnavi-list .list_gmenu .btn_gmenu:hover,
ul.gnavi-list .list_gmenu > a:hover {
  opacity: 0.8;
  transition: all 0.25s ease;
}
ul.gnavi-list .list_gmenu.is-open .btn_gmenu {
  background: #fff;
}
ul.gnavi-list .list_gmenu span {
  display: inline-block;
}
ul.gnavi-list .list_gmenu span::before {
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 1px;
  vertical-align: middle;
}
ul.gnavi-list .list_gmenu:nth-child(-n+2) span::after {
  content: url(/assets/images/common/icon_arrow-b_line.svg);
  display: inline-block;
  margin-left: 13px;
  position: relative;
  top: 20%;
  transform: translateY(-20%);
  vertical-align: middle;
}
ul.gnavi-list .list_ico-saving span::before {
  content: url(/assets/images/common/main-icon_saving.svg);
}
ul.gnavi-list .list_ico-loan span::before {
  content: url(/assets/images/common/main-icon_loan.svg);
}
ul.gnavi-list .list_ico-fund span::before {
  content: url(/assets/images/common/main-icon_fund.svg);
}
ul.gnavi-list .list_ico-service span::before {
  content: url(/assets/images/common/main-icon_service.svg);
}

.gmenu_child {
  background: #fff;
  display: flex;
  margin-left: 0;
  padding: 49px 10px 51px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1260px;
  z-index: 99;
  -webkit-clip-path: inset(0 -50vw 100%);
          clip-path: inset(0 -50vw 100%);
  transition: all 0.4s;
  visibility: hidden;
}
.gmenu_child::before, .gmenu_child::after {
  background: #fff;
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  width: 9999px;
  z-index: -1;
}
.gmenu_child::before {
  left: -9999px;
}
.gmenu_child::after {
  right: -9999px;
}
.gmenu_child.is-open {
  -webkit-clip-path: inset(0 -50vw);
          clip-path: inset(0 -50vw);
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .gmenu_child {
    background-color: transparent;
    -webkit-clip-path: none;
            clip-path: none;
    display: block;
    padding: 18px 15px;
    position: static;
    transform: translateX(0);
    visibility: visible;
  }
  .gmenu_child::before, .gmenu_child::after {
    content: none;
  }
}

.gmenu_child ul.gmenu_child_type-list li {
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  padding-left: 23px;
  position: relative;
}
.gmenu_child ul.gmenu_child_type-list li::before {
  background: #32A299;
  border-radius: 9999px;
  content: "";
  display: inline-block;
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: calc(0.5lh - 2px);
  height: 3px;
  width: 10px;
}
.gmenu_child ul.gmenu_child_type-list li a {
  color: #333;
  text-decoration: none;
}

.gmenu_cate {
  color: #263F88;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 12.380952381%;
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
  padding-left: 10px;
  text-align: center;
}
.gmenu_cate::before {
  content: "";
  display: block;
  height: 95px;
  width: 146px;
}
#menu_saving .gmenu_cate::before {
  background: url(/assets/images/top/icon_servicettl_saving.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  #menu_saving .gmenu_cate::before {
    background: url(/assets/images/common/main-icon_saving.svg) no-repeat center/contain;
  }
}
#menu_loan .gmenu_cate::before {
  background: url(/assets/images/top/icon_servicettl_loan.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  #menu_loan .gmenu_cate::before {
    background: url(/assets/images/common/main-icon_loan.svg) no-repeat center/contain;
  }
}
@media screen and (max-width: 768px) {
  #menu_fund .gmenu_cate::before {
    background: url(/assets/images/common/main-icon_fund.svg) no-repeat center/contain;
  }
}
@media screen and (max-width: 768px) {
  #menu_service .gmenu_cate::before {
    background: url(/assets/images/common/main-icon_service.svg) no-repeat center/contain;
    left: -1px;
  }
}
#menu_service .gmenu_cate a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .gmenu_cate {
    display: block;
    font-size: 2.6rem;
    padding-left: 0;
    text-align: left;
  }
  .gmenu_cate::before {
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    height: 50px;
    width: 60px;
  }
}

#menu_service {
  padding-left: 10px;
}

ul.gmenu_child_list {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 30px 33px;
  margin-left: 3.8888888889%;
}
@media screen and (max-width: 768px) {
  ul.gmenu_child_list {
    gap: 9px 0;
    margin-left: 0;
    margin-top: 11px;
  }
}
ul.gmenu_child_list .btn_boxshadow-style {
  flex-basis: calc((100% - 99px) / 4);
}
ul.gmenu_child_list .btn_boxshadow-style a {
  border-radius: 15px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.35);
  font-size: 2rem;
  padding: 11px 20px 10px;
  height: 70px;
}
ul.gmenu_child_list .btn_boxshadow-style.btn_simulation a {
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  ul.gmenu_child_list .btn_boxshadow-style {
    flex-basis: 50%;
    flex-grow: 1;
    padding-left: 23px;
    position: relative;
  }
  ul.gmenu_child_list .btn_boxshadow-style::before {
    background: #32A299;
    border-radius: 9999px;
    content: "";
    display: inline-block;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: calc(0.5lh - 2px);
    height: 3px;
    width: 10px;
  }
  ul.gmenu_child_list .btn_boxshadow-style:nth-child(2n+1) {
    padding-right: 5px;
  }
  ul.gmenu_child_list .btn_boxshadow-style.btn_simulation {
    order: 5;
  }
  ul.gmenu_child_list .btn_boxshadow-style.btn_simulation a {
    padding-right: 0;
  }
  ul.gmenu_child_list .btn_boxshadow-style a {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #333;
    font-family: "NotoSansJP", sans-serif;
    font-weight: normal;
    padding: 0;
    height: auto;
  }
  ul.gmenu_child_list .btn_boxshadow-style a::after {
    content: none;
  }
}
ul.gmenu_child_list .btn_loanplan {
  flex-basis: calc(100% - (100% - 99px) / 4 - 33px);
}
ul.gmenu_child_list .btn_loanplan a {
  border: #526DBC solid 1px;
  border-radius: 15px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.35), 0 0 0 8px #EBEBEB inset;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  height: 70px;
  width: 100%;
  opacity: 1;
  transition: all 0.25s ease;
}
ul.gmenu_child_list .btn_loanplan a::before {
  background: url(/assets/images/top/main-icon_loanplan.svg) no-repeat center/contain;
  background-position-y: -1px;
  content: "";
  margin-right: 22px;
  height: 65px;
  width: 96px;
}
ul.gmenu_child_list .btn_loanplan a:hover {
  opacity: 0.8;
  transition: all 0.25s ease;
}
ul.gmenu_child_list .btn_loanplan a .small {
  color: #333;
  display: inline-block;
  font-size: 1.9rem;
  font-weight: 700;
  margin-right: 2.7rem;
}
ul.gmenu_child_list .btn_loanplan a .color {
  color: #32A299;
}
@media screen and (max-width: 768px) {
  ul.gmenu_child_list .btn_loanplan {
    display: none;
  }
}

.menu-open {
  position: relative;
}
.menu-open::before {
  animation: menu-open 0.5s;
  background-color: rgba(51, 51, 51, 0.4);
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
}

@keyframes menu-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ぱんくず */
.breadcrumbs {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  padding: 9px 10px;
  position: relative;
  z-index: 88;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1240px;
}
.breadcrumbs li {
  color: #707070;
  font-size: 1.3rem;
}
.breadcrumbs li:nth-child(n+2)::before {
  content: url(/assets/images/common/icon_arrow_breadcrumbs.svg);
  margin: 0 9px;
}
.breadcrumbs li a {
  color: #707070;
  text-decoration: none;
}
.breadcrumbs li a:hover {
  opacity: 0.8;
  transition: all 0.25s ease;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}

/* SP ハンバーガー */
.hamburger {
  background: rgb(50, 162, 153);
  background: linear-gradient(135deg, rgb(50, 162, 153) 0%, rgb(24, 178, 226) 100%);
  border: none;
  border-radius: 6px;
  color: #fff;
  display: block;
  position: fixed;
  right: 10px;
  top: 19px;
  height: 48px;
  width: 57px;
  z-index: 10000;
}
.hamburger:focus {
  outline: none;
}
@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

.is-active .hamburger {
  position: relative;
  right: 0;
  top: 0;
}

.hamburger_line {
  background: #fff;
  border-radius: 1px;
  display: block;
  position: absolute;
  left: 50%;
  top: 19px;
  transform: translateX(-50%);
  transition: all 0.4s ease;
  height: 2px;
  width: 21px;
}
.hamburger_line::before, .hamburger_line::after {
  background-color: #fff;
  border-radius: 1px;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(0);
  transition: all 0.4s ease;
  height: 100%;
  width: 100%;
}
.hamburger_line::before {
  top: -6px;
}
.hamburger_line::after {
  top: 6px;
}

.is-active .hamburger_line {
  background-color: transparent;
}
.is-active .hamburger_line::before, .is-active .hamburger_line::after {
  top: 0;
}
.is-active .hamburger_line::before {
  transform: translateX(-50%) rotate(45deg);
}
.is-active .hamburger_line::after {
  transform: translateX(-50%) rotate(-45deg);
}

.hamburger_text {
  background: url(/assets/images/common/txt_menu_sp.svg) no-repeat center/contain;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  text-indent: 100%;
  white-space: nowrap;
  height: 10px;
  width: 32px;
}

/* SP メニュー表示状態 */
header.is-active {
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 9999;
  -webkit-overflow-scrolling: touch;
}
header.is-active::after {
  -webkit-clip-path: inset(0 -50vw 0);
          clip-path: inset(0 -50vw 0);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.is-active .h_upper {
  flex-shrink: 0;
  flex-wrap: wrap;
}

.is-active .h_upper-menu,
.is-active .h_bottom {
  -webkit-clip-path: none;
          clip-path: none;
  opacity: 1;
  position: relative;
  top: auto;
  flex-shrink: 0;
  width: 100%;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  visibility: visible;
}

.is-active .h_upper-menu {
  transition-delay: 0s;
}

.is-active .h_bottom {
  padding-bottom: 2.5lh;
  transition-delay: 0.1s;
}

.is-active .breadcrumbs {
  display: none;
}

.is-active .sp_fixmenu {
  opacity: 0;
  visibility: hidden;
}

/* SP FIXメニュー */
.sp_fixmenu {
  border-bottom: #8AC2D4 solid 2px;
  border-top: #8AC2D4 solid 2px;
  display: flex;
  opacity: 1;
  position: fixed;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
  height: 70px;
  width: 100%;
  z-index: 99;
}
@media screen and (min-width: 769px) {
  .sp_fixmenu {
    display: none;
  }
}
.sp_fixmenu li {
  flex-basis: 31.25%;
}
.sp_fixmenu li.btn_ico-kinri {
  border-left: #8AC2D4 solid 2px;
  border-right: #8AC2D4 solid 2px;
  flex-basis: 37.5%;
}
.sp_fixmenu li a {
  background: #E1F2F3;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  padding: 8px 10px 9px;
  position: relative;
  text-decoration: none;
  height: 100%;
}
.sp_fixmenu li a::before {
  height: 29px;
  width: 33px;
}
.sp_fixmenu li.btn_ico-shop a::before {
  content: url(/assets/images/common/icon_map.svg);
}
.sp_fixmenu li.btn_ico-kinri a::before {
  content: url(/assets/images/common/icon_kinri.svg);
}
.sp_fixmenu li.btn_ico-fee a::before {
  content: url(/assets/images/common/icon_fee.svg);
}

/* ============================== footer */
footer {
  background: url(/assets/images/common/footer_bk_pc.jpg) no-repeat center top;
  background-size: contain;
  padding-top: 17.25vw;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  opacity: 0.8;
  transition: all 0.25s ease;
}
@media screen and (max-width: 768px) {
  footer {
    background-image: url(/assets/images/common/footer_bk_sp.jpg);
    padding-bottom: 70px;
    padding-top: 35.8139534884vw;
  }
}

.f_upper {
  margin: 0 auto;
  padding: 40px 20px 50px;
  max-width: 1280px;
}
.f_upper .logo {
  max-width: 222px;
}
@media screen and (max-width: 768px) {
  .f_upper {
    padding: 21px 15px 40px;
    max-width: 100%;
  }
  .f_upper .logo {
    max-width: 175px;
  }
}

.f_upper-menu {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .f_upper-menu {
    flex-direction: column;
    align-items: normal;
    justify-content: flex-start;
    margin-top: 26px;
  }
}

ul.f_menu-type1 {
  flex-shrink: 0;
  padding-top: 8px;
  /* アイコン */
}
@media screen and (max-width: 768px) {
  ul.f_menu-type1 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0;
    padding-top: 0;
  }
}
ul.f_menu-type1 li {
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 49px;
  position: relative;
}
ul.f_menu-type1 li::before {
  position: absolute;
  left: 0;
  top: 2px;
}
ul.f_menu-type1 li:nth-child(n+2) {
  margin-top: 14px;
}
ul.f_menu-type1 li a {
  color: #333;
}
@media screen and (max-width: 768px) {
  ul.f_menu-type1 li {
    flex: 0 0 50%;
  }
  ul.f_menu-type1 li:nth-child(n+2) {
    margin-top: 0;
  }
}
ul.f_menu-type1 .list_ico-shop::before {
  content: url(/assets/images/common/icon_map.svg);
}
ul.f_menu-type1 .list_ico-kinri::before {
  content: url(/assets/images/common/icon_kinri.svg);
}
ul.f_menu-type1 .list_ico-fee::before {
  content: url(/assets/images/common/icon_fee.svg);
}

.f_menu-type2 {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin-left: 9.6774193548%;
}
@media screen and (max-width: 768px) {
  .f_menu-type2 {
    flex-wrap: wrap;
    gap: 39px 0;
    margin-left: 0;
    margin-top: 35px;
  }
}
.f_menu-type2 dt {
  color: #263F88;
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
}
.f_menu-type2 dt::before {
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 1px;
  vertical-align: middle;
}
.f_menu-type2 .list_ico-saving::before {
  content: url(/assets/images/common/main-icon_saving.svg);
}
.f_menu-type2 .list_ico-loan::before {
  content: url(/assets/images/common/main-icon_loan.svg);
}
.f_menu-type2 .list_ico-fund::before {
  content: url(/assets/images/common/main-icon_fund.svg);
  left: -5px;
}
.f_menu-type2 .list_ico-service {
  margin-top: 34px;
  text-indent: -8px;
}
@media screen and (max-width: 768px) {
  .f_menu-type2 .list_ico-service {
    line-height: 1.2;
    margin-top: 0;
    padding: 0.4lh 0 0 50px;
    position: relative;
    text-indent: 0;
  }
  .f_menu-type2 .list_ico-service a {
    display: inline-block;
    line-height: 1.2;
  }
}
.f_menu-type2 .list_ico-service::before {
  content: url(/assets/images/common/main-icon_service.svg);
  margin-right: 2px;
}
@media screen and (max-width: 768px) {
  .f_menu-type2 .list_ico-service::before {
    position: absolute;
    left: -15px;
  }
}
.f_menu-type2 .f_menu-group1 {
  flex-shrink: 0;
}
.f_menu-type2 .f_menu-group1:nth-of-type(2) {
  margin-left: 14.745308311%;
}
.f_menu-type2 .f_menu-group2 {
  flex-shrink: 0;
  margin-left: 84px;
}
@media screen and (max-width: 768px) {
  .f_menu-type2 .f_menu-group1 {
    flex: 0 0 50%;
  }
  .f_menu-type2 .f_menu-group1:nth-of-type(2) {
    margin-left: 0;
  }
  .f_menu-type2 .f_menu-group2 {
    display: flex;
    flex: 0 0 100%;
    margin-left: 0;
  }
  .f_menu-type2 .f_menu-innegroup {
    flex: 0 0 50%;
  }
}
.f_menu-type2 dd ul {
  list-style: none;
  margin: 0 0 0 2px;
  padding: 0;
}
.f_menu-type2 dd li {
  font-size: 1.6rem;
  line-height: 2.1;
  padding-left: 23px;
  position: relative;
}
.f_menu-type2 dd li::before {
  content: url(/assets/images/common/icon_list_dash_s.svg);
  position: absolute;
  left: 0;
  top: 4px;
}
.f_menu-type2 dd li a {
  color: #333;
}

ul.f_menu-type3 {
  flex-shrink: 0;
  margin: 8px 0 0 8.064516129%;
}
@media screen and (max-width: 768px) {
  ul.f_menu-type3 {
    margin: 50px 0 0 0;
  }
}
ul.f_menu-type3 li {
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.5;
  padding-left: 21px;
  position: relative;
}
ul.f_menu-type3 li::before {
  content: url(/assets/images/common/icon_list_dash.svg);
  position: absolute;
  left: 0;
  top: -4px;
}
ul.f_menu-type3 li a {
  color: #333;
}

.f_middle {
  background: #f1f1f1;
  padding: 26px;
}
@media screen and (max-width: 768px) {
  .f_middle {
    padding: 20px 14px 28px;
  }
}
.f_middle ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  max-width: 1240px;
}
.f_middle li {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2;
}
.f_middle li:nth-child(n+2)::before {
  content: "｜";
  display: inline-block;
  margin: 0 1em;
}
.f_middle li a {
  color: #666;
}
@media screen and (max-width: 768px) {
  .f_middle li {
    font-size: 1.4rem;
    margin: 0 0.35em;
  }
  .f_middle li:nth-child(n+2)::before {
    content: none;
  }
}

.f_bottom {
  background: #263F88;
  color: #fff;
  padding: 20px 20px 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .f_bottom {
    padding: 30px 15px 20px;
  }
}
.f_bottom ul {
  list-style: none;
  margin: 0 auto;
  padding: 0 25.75em 0 0;
  max-width: 1240px;
}
@media screen and (max-width: 768px) {
  .f_bottom ul {
    padding: 0;
  }
}
.f_bottom li {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .f_bottom li {
    font-size: 1.2rem;
  }
}
.f_bottom .copyright {
  margin: auto;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1240px;
}
.f_bottom .copyright small {
  font-size: 1.6rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
.f_bottom .copyright .copyright_symbol {
  font-size: 1em;
}
@media screen and (max-width: 768px) {
  .f_bottom .copyright {
    margin-top: 20px;
    position: static;
  }
  .f_bottom .copyright small {
    font-size: 1.2rem;
    position: static;
  }
}

/*ページトップへもどる*/
#btn_pagetop {
  opacity: 0;
  position: fixed;
  bottom: -100px;
  right: 33px;
  transition: bottom 0.3s, opacity 0.8s ease;
  z-index: 99;
}
#btn_pagetop a {
  background: url(/assets/images/common/icon_arrow-t_circle.svg) no-repeat center center/contain;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  height: 70px;
  width: 70px;
  opacity: 1;
  transition: all 0.25s ease;
}
#btn_pagetop a:hover {
  opacity: 0.8;
  transition: all 0.25s ease;
}
@media screen and (max-width: 768px) {
  #btn_pagetop {
    right: 15px;
  }
  #btn_pagetop a {
    height: 53px;
    width: 53px;
  }
}
#btn_pagetop.is-active {
  opacity: 1;
  bottom: 115px;
  right: 33px;
}
@media screen and (max-width: 768px) {
  #btn_pagetop.is-active {
    bottom: 16.0944206009%;
    right: 15px;
  }
}
#btn_pagetop.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ============================== main */
main {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  main {
    padding-bottom: 30px;
  }
}

.m_wrapper {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1280px;
}
.m_wrapper:first-of-type {
  margin-top: 30px;
}
.m_wrapper:not(:last-of-type) {
  padding-bottom: 80px;
}
.m_wrapper.start_text {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .m_wrapper:not(:last-of-type) {
    padding-bottom: 60px;
  }
}

.common_btn-set::after {
  clear: both;
  content: "";
  display: block;
}
.common_btn-set > * {
  float: left;
}
.common_btn-set > *:nth-child(n+2) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .common_btn-set {
    text-align: center;
  }
  .common_btn-set > * {
    float: none;
  }
  .common_btn-set > *:nth-child(n+2) {
    margin-left: 0;
    margin-top: 15px;
  }
}

/* ============================== title */
/* h1 */
.h1_small-style, .h1_large-style {
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 23px 20px 19px;
  min-height: 130px;
}
.h1_small-style > *, .h1_large-style > * {
  margin: 0 auto;
  padding-right: 24.375vw;
  width: 100%;
  max-width: 1240px;
}
@media screen and (min-width: 769px) {
  .h1_small-style.loan, .loan.h1_large-style {
    background-image: url(/assets/images/common/h1_bk_loan_s.jpg);
  }
  .h1_small-style.custom, .custom.h1_large-style {
    background-image: url(/assets/images/common/h1_bk_custom.jpg);
  }
  .h1_small-style.fee, .fee.h1_large-style {
    background-image: url(/assets/images/common/h1_bk_fee.jpg);
  }
  .h1_small-style.other, .other.h1_large-style {
    background-image: url(/assets/images/common/h1_bk_other.jpg);
  }
  .h1_small-style.other .h1_discription, .other.h1_large-style .h1_discription {
    margin-top: 16px;
  }
  .h1_small-style.qa, .qa.h1_large-style {
    background-image: url(/assets/images/common/h1_bk_qa.jpg);
  }
  .h1_small-style.ib, .ib.h1_large-style {
    background-image: url(/assets/images/common/h1_bk_ib.jpg);
  }
  .h1_small-style.ib .h1_main-ttl span, .ib.h1_large-style .h1_main-ttl span {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 5px;
  }
  .h1_small-style.webfb, .webfb.h1_large-style {
    background-image: url(/assets/images/common/h1_bk_webfb.jpg);
  }
  .h1_small-style.webfb .h1_main-ttl span, .webfb.h1_large-style .h1_main-ttl span {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .h1_small-style, .h1_large-style {
    background: #ABE6D8;
    background: linear-gradient(90deg, rgb(171, 230, 216) -20%, rgb(209, 238, 176) 85%, rgba(211, 214, 132, 0.41) 150%);
    display: block;
    padding: 0 0 25px;
    min-height: auto;
    width: 100%;
  }
  .h1_small-style::before, .h1_large-style::before {
    aspect-ratio: 430/100;
    background-size: cover;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
  }
  .business .h1_small-style, .business .h1_large-style {
    background: #9BE1EB;
    background: linear-gradient(90deg, rgb(152, 222, 241) -20%, rgb(166, 239, 214) 90%, rgba(157, 242, 236, 0.24) 130%, rgba(211, 214, 132, 0) 200%), #41C5E1;
  }
  .h1_small-style > *, .h1_large-style > * {
    padding-left: 15px;
    padding-right: 15px;
  }
  .h1_small-style.loan::before, .loan.h1_large-style::before {
    background-image: url(/assets/images/common/h1_bk_loan_s_sp.jpg);
  }
  .h1_small-style.custom::before, .custom.h1_large-style::before {
    background-image: url(/assets/images/common/h1_bk_custom_sp.jpg);
  }
  .h1_small-style.fee::before, .fee.h1_large-style::before {
    background-image: url(/assets/images/common/h1_bk_fee_sp.jpg);
  }
  .h1_small-style.other::before, .other.h1_large-style::before {
    background-image: url(/assets/images/common/h1_bk_other_sp.jpg);
  }
  .h1_small-style.other::before .h1_discription, .other.h1_large-style::before .h1_discription {
    margin-top: 16px;
  }
  .h1_small-style.qa::before, .qa.h1_large-style::before {
    background-image: url(/assets/images/common/h1_bk_qa_sp.jpg);
  }
  .h1_small-style.ib::before, .ib.h1_large-style::before, .h1_small-style.webfb::before, .webfb.h1_large-style::before {
    background-image: url(/assets/images/common/h1_bk_ib_sp.jpg);
  }
  .h1_small-style.ib .h1_main-ttl span, .ib.h1_large-style .h1_main-ttl span, .h1_small-style.webfb .h1_main-ttl span, .webfb.h1_large-style .h1_main-ttl span {
    font-size: 1.8rem;
    display: block;
  }
}

.h1_large-style {
  padding-bottom: 33px;
  min-height: 210px;
}
@media screen and (min-width: 769px) {
  .h1_large-style.saving {
    background-image: url(/assets/images/common/h1_bk_saving.jpg);
  }
  .h1_large-style.loan {
    background-image: url(/assets/images/common/h1_bk_loan.jpg);
  }
}
@media screen and (max-width: 768px) {
  .h1_large-style {
    padding-bottom: 25px;
  }
  .h1_large-style::before {
    aspect-ratio: 430/160;
  }
  .h1_large-style.saving::before {
    background-image: url(/assets/images/common/h1_bk_saving_sp.jpg);
  }
  .h1_large-style.loan::before {
    background-image: url(/assets/images/common/h1_bk_loan_sp.jpg);
  }
}

.h1_main-ttl {
  color: #263F88;
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .h1_main-ttl {
    font-size: 2.5rem;
    line-height: 1.28;
    padding-top: 15px;
  }
}

.h1_sub-ttl {
  font-size: 2rem;
  font-weight: normal;
  line-height: 2.4;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .h1_sub-ttl {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 10px;
  }
}

.h1_discription {
  font-size: 1.8rem;
  font-weight: normal;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .h1_discription {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

/* h2 */
.h2_ttl-style {
  color: #263F88;
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 3.6rem;
  margin: 0 auto 40px;
  max-width: 1240px;
}
.h2_ttl-style.h2_mb-small {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .h2_ttl-style {
    font-size: 2.8rem;
    line-height: 1.14;
    margin-bottom: 20px;
  }
  .h2_ttl-style.h2_mb-small {
    margin-bottom: 15px;
  }
}

article > .h2_ttl-style {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  article > .h2_ttl-style {
    padding: 0 15px;
  }
}

/* h3 */
.h3_ttl-style, .h3_ttl-style2 {
  color: #263F88;
  display: flex;
  align-items: flex-end;
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 30px;
  padding-bottom: 37px;
  position: relative;
}
.h3_ttl-style::before, .h3_ttl-style2::before, .h3_ttl-style::after, .h3_ttl-style2::after {
  border-radius: 9999px;
  content: "";
  display: block;
  position: absolute;
  height: 10px;
}
.h3_ttl-style::before, .h3_ttl-style2::before {
  background-color: #41C5E1;
  bottom: 10px;
  left: 0;
  width: 28.2258064516%;
}
.h3_ttl-style::after, .h3_ttl-style2::after {
  background: rgb(198, 239, 229);
  background: linear-gradient(140deg, rgb(198, 239, 229) 0%, rgb(210, 238, 171) 150%);
  bottom: 0;
  left: 70px;
  width: 94.3548387097%;
}
@media screen and (max-width: 768px) {
  .h3_ttl-style, .h3_ttl-style2 {
    align-items: flex-start;
    flex-direction: column;
    font-size: 2.2rem;
    margin-bottom: 15px;
    padding-bottom: 0;
  }
  .h3_ttl-style::before, .h3_ttl-style2::before, .h3_ttl-style::after, .h3_ttl-style2::after {
    position: static;
    height: 8px;
  }
  .h3_ttl-style::before, .h3_ttl-style2::before {
    margin-top: 11px;
    order: 2;
    width: 45.5%;
  }
  .h3_ttl-style::after, .h3_ttl-style2::after {
    align-self: flex-end;
    order: 3;
    width: 82.5%;
  }
}
.h3_ttl-style > span:not([class]), .h3_ttl-style2 > span:not([class]) {
  display: inline-block;
  padding-left: 37px;
  position: relative;
  flex-shrink: 0;
}
.h3_ttl-style > span:not([class])::before, .h3_ttl-style2 > span:not([class])::before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.1em;
}
@media screen and (max-width: 768px) {
  .h3_ttl-style > span:not([class]), .h3_ttl-style2 > span:not([class]) {
    padding-left: 26px;
  }
}
.h3_ttl-style:has(.h3_subtxt) > span:not([class]), .h3_ttl-style2:has(.h3_subtxt) > span:not([class]) {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .h3_ttl-style:has(.h3_subtxt) > span:not([class]), .h3_ttl-style2:has(.h3_subtxt) > span:not([class]) {
    margin-right: 0;
  }
}
.h3_ttl-style > span.h3_subtxt, .h3_ttl-style2 > span.h3_subtxt {
  color: #333;
  flex-grow: 1;
  font-family: "NotoSansJP", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  padding-left: 0;
}
.h3_ttl-style > span.h3_subtxt::before, .h3_ttl-style2 > span.h3_subtxt::before {
  content: none !important;
}
@media screen and (max-width: 768px) {
  .h3_ttl-style > span.h3_subtxt, .h3_ttl-style2 > span.h3_subtxt {
    font-size: 1.6rem;
    margin-left: 26px;
    margin-top: 5px;
  }
}
.h3_ttl-style:not(:first-child), .h3_ttl-style2:not(:first-child) {
  margin-top: 60px;
}
.h3_ttl-style.h3_border-none, .h3_border-none.h3_ttl-style2 {
  padding-bottom: 0;
}
.h3_ttl-style.h3_border-none::before, .h3_border-none.h3_ttl-style2::before, .h3_ttl-style.h3_border-none::after, .h3_border-none.h3_ttl-style2::after {
  content: none;
}

.h3_ttl-style2 {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .h3_ttl-style2 {
    justify-content: flex-start;
  }
}
.h3_ttl-style2 dl {
  display: inline-flex;
  align-items: center;
  gap: 10px 20px;
  margin-left: 1em;
  position: relative;
  bottom: -0.35em;
}
.h3_ttl-style2 dl .item_inner-ttl {
  display: inline-flex;
  align-items: center;
}
.h3_ttl-style2 dl dt {
  background: #F89523;
  border-radius: 9999px;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  margin-right: 10px;
  padding: 5px 15px 7px 18px;
  flex-shrink: 0;
}
.h3_ttl-style2 dl dt::before {
  content: url(/assets/images/common/icon_checkmark.svg);
  display: inline-block;
  margin-right: 8px;
  position: relative;
}
.h3_ttl-style2 dl dd {
  color: #333;
  line-height: 1;
  position: relative;
  top: -0.1em;
}
.h3_ttl-style2 dl dd > span {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .h3_ttl-style2 dl {
    flex-basis: 100%;
    flex-wrap: wrap;
    margin-left: 0;
    margin-top: 15px;
    position: static;
    order: 4;
    width: 100%;
  }
  .h3_ttl-style2 dl::after {
    clear: both;
    content: "";
    display: block;
  }
  .h3_ttl-style2 dl .item_inner-ttl {
    flex: 1 0 auto;
  }
  .h3_ttl-style2 dl dt {
    aspect-ratio: 56/48;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.2;
    margin-right: 7px;
    padding: 4px;
    text-align: center;
    height: 100%;
    width: 100%;
    max-width: 56px;
  }
  .h3_ttl-style2 dl dt::before {
    content: none;
  }
  .h3_ttl-style2 dl dd {
    flex-grow: 1;
  }
  .h3_ttl-style2 dl dd > span {
    font-size: 14px;
  }
}

.parsonal .h3_ttl-style > span::before, .parsonal .h3_ttl-style2 > span::before,
.h3_ttl-style.parsonal > span::before,
.parsonal.h3_ttl-style2 > span::before {
  background: url(/assets/images/common/icon_doublebox_parsonal.svg) no-repeat center/contain;
  content: "";
  height: 24px;
  width: 25px;
}
@media screen and (max-width: 768px) {
  .parsonal .h3_ttl-style > span::before, .parsonal .h3_ttl-style2 > span::before,
  .h3_ttl-style.parsonal > span::before,
  .parsonal.h3_ttl-style2 > span::before {
    height: 20px;
    width: 20px;
  }
}

.business .h3_ttl-style > span::before, .business .h3_ttl-style2 > span::before,
.h3_ttl-style.business > span::before,
.business.h3_ttl-style2 > span::before {
  background: url(/assets/images/common/icon_doublebox_business.svg) no-repeat center/contain;
  content: "";
  height: 24px;
  width: 25px;
}
@media screen and (max-width: 768px) {
  .business .h3_ttl-style > span::before, .business .h3_ttl-style2 > span::before,
  .h3_ttl-style.business > span::before,
  .business.h3_ttl-style2 > span::before {
    height: 20px;
    width: 20px;
  }
}

/* ============================== table */
.tbl_basic-style {
  border-spacing: 0;
  width: 100%;
}
.tbl_basic-style th, .tbl_basic-style td {
  border-bottom: #919191 solid 1px;
  border-left: #919191 solid 1px;
  font-size: 2rem;
}
.tbl_basic-style thead th {
  border-bottom: none;
  padding: 13px 42px;
}
.tbl_basic-style tbody th,
.tbl_basic-style tbody td {
  padding: 30px 42px;
  text-align: left;
}
.tbl_basic-style tr:first-of-type > * {
  border-top: #919191 solid 1px;
}
.tbl_basic-style tr > *:last-child {
  border-right: #919191 solid 1px;
}
.tbl_basic-style thead th {
  background: #99CCFF;
}
.tbl_basic-style tbody th {
  background: #E1F2F3;
}
.tbl_basic-style td {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .tbl_basic-style th, .tbl_basic-style td {
    font-size: 1.8rem;
  }
  .tbl_basic-style thead th {
    padding: 13px;
  }
  .tbl_basic-style tbody th,
  .tbl_basic-style tbody td {
    padding: 20px;
  }
}

.tbl_basic-style_radius {
  border-left: #919191 1px solid;
  border-top: #919191 1px solid;
  width: 100%;
}
.tbl_basic-style_radius th, .tbl_basic-style_radius td {
  border-bottom: #919191 1px solid;
  border-right: #919191 1px solid;
}

:where(.tbl_basic-style) th, :where(.tbl_basic-style) td,
:where(.tbl_basic-style_radius) th,
:where(.tbl_basic-style_radius) td {
  font-size: 2rem;
}
:where(.tbl_basic-style) thead th,
:where(.tbl_basic-style_radius) thead th {
  background: #99CCFF;
  padding: 13px 42px;
}
:where(.tbl_basic-style) tbody th,
:where(.tbl_basic-style) tbody td,
:where(.tbl_basic-style_radius) tbody th,
:where(.tbl_basic-style_radius) tbody td {
  padding: 30px 42px;
  text-align: left;
}
:where(.tbl_basic-style) tbody th,
:where(.tbl_basic-style_radius) tbody th {
  background: #E1F2F3;
}
:where(.tbl_basic-style) td,
:where(.tbl_basic-style_radius) td {
  background: #fff;
}
@media screen and (max-width: 768px) {
  :where(.tbl_basic-style) th,
  :where(.tbl_basic-style_radius) th {
    font-size: 1.8rem;
  }
  :where(.tbl_basic-style) td,
  :where(.tbl_basic-style_radius) td {
    font-size: 1.6rem;
  }
  :where(.tbl_basic-style) thead th,
  :where(.tbl_basic-style_radius) thead th {
    padding: 13px;
  }
  :where(.tbl_basic-style) tbody th,
  :where(.tbl_basic-style) tbody td,
  :where(.tbl_basic-style_radius) tbody th,
  :where(.tbl_basic-style_radius) tbody td {
    padding: 15px;
    text-align: justify;
  }
  :where(.tbl_basic-style) tbody th,
  :where(.tbl_basic-style_radius) tbody th {
    text-align: center;
  }
}

/* 角丸のテーブル */
:where(.tbl_basic-style_radius) {
  border-collapse: separate;
  border-radius: 10px;
  border-spacing: 0;
}
:where(.tbl_basic-style_radius):not(thead) tbody tr:first-child > *:first-child {
  border-radius: 10px 0 0 0;
}
:where(.tbl_basic-style_radius):not(thead) tbody tr:first-child > *:last-child {
  border-radius: 0 10px 0 0;
}
:where(.tbl_basic-style_radius):not(thead) tbody tr:last-child > *:first-child {
  border-radius: 0 0 0 10px;
}
:where(.tbl_basic-style_radius):not(thead) tbody tr:last-child > *:last-child {
  border-radius: 0 0 10px 0;
}
:where(.tbl_basic-style_radius):not(thead) tbody tr:only-child > *:first-child {
  border-radius: 10px 0 0 10px;
}
:where(.tbl_basic-style_radius):not(thead) tbody tr:only-child > *:last-child {
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  :where(.tbl_basic-style_radius):not(thead) th, :where(.tbl_basic-style_radius):not(thead) td {
    display: block;
  }
  :where(.tbl_basic-style_radius):not(thead) tbody tr:first-child > *:first-child {
    border-radius: 10px 10px 0 0;
  }
  :where(.tbl_basic-style_radius):not(thead) tbody tr:first-child > *:last-child {
    border-radius: 0;
  }
  :where(.tbl_basic-style_radius):not(thead) tbody tr:last-child > *:first-child {
    border-radius: 0;
  }
  :where(.tbl_basic-style_radius):not(thead) tbody tr:last-child > *:last-child {
    border-radius: 0 0 10px 10px;
  }
  :where(.tbl_basic-style_radius):not(thead) tbody tr:only-child > *:first-child {
    border-radius: 10px 10px 0 0;
  }
  :where(.tbl_basic-style_radius):not(thead) tbody tr:only-child > *:last-child {
    border-radius: 0 0 10px 10px;
  }
}
:where(.tbl_basic-style_radius):has(thead) thead tr:first-child > *:first-child {
  border-radius: 10px 0 0 0;
}
:where(.tbl_basic-style_radius):has(thead) thead tr:first-child > *:last-child {
  border-radius: 0 10px 0 0;
}
:where(.tbl_basic-style_radius):has(thead) tbody tr:first-child > *:first-child {
  border-radius: 0;
}
:where(.tbl_basic-style_radius):has(thead) tbody tr:first-child > *:last-child {
  border-radius: 0;
}
:where(.tbl_basic-style_radius):has(thead) tbody tr:last-child > :where(.tbl_basic-style_radius):has(thead) tbody tr:last-child > *:first-child {
  border-radius: 0 0 0 10px;
}
:where(.tbl_basic-style_radius):has(thead) tbody tr:last-child > :where(.tbl_basic-style_radius):has(thead) tbody tr:last-child > *:last-child {
  border-radius: 0 0 10px 0;
}

/* ============================== table option */
/* border-radius */
.br_tl {
  border-top-left-radius: 10px;
}

.br_tr {
  border-top-right-radius: 10px;
}

.br_bl {
  border-bottom-left-radius: 10px;
}

.br_br {
  border-bottom-right-radius: 10px;
}

/* border none */
.bn_top {
  border-top: none !important;
}

.bn_right {
  border-right: none !important;
}

.bn_bottom {
  border-bottom: none !important;
}

.bn_left {
  border-left: none !important;
}

/* border plus */
.bp_top {
  border-top: #919191 solid 1px;
}

.bp_right {
  border-top: #919191 solid 1px;
}

.bp_bottom {
  border-top: #919191 solid 1px;
}

.bp_left {
  border-top: #919191 solid 1px;
}

/* 個別 */
.tbl_saving,
.tbl_loan {
  margin-top: 30px;
}
.tbl_saving th,
.tbl_loan th {
  width: 21.6129032258%;
}
@media screen and (max-width: 768px) {
  .tbl_saving,
  .tbl_loan {
    margin-top: 20px;
  }
  .tbl_saving th,
  .tbl_loan th {
    width: 100%;
  }
}

/* ============================== list */
ul.list_basic-style,
ol.list_basic-style {
  padding-left: 5px;
}
ul.list_basic-style li,
ol.list_basic-style li {
  padding-left: 1em;
  position: relative;
}
ul.list_basic-style li::before,
ol.list_basic-style li::before {
  background-color: #333;
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.4rem);
  height: 0.8rem;
  width: 0.8rem;
}

ul.list_basicnum-style,
ol.list_basicnum-style {
  counter-reset: basic-num;
}
ul.list_basicnum-style > li,
ol.list_basicnum-style > li {
  counter-increment: basic-num;
  padding-left: 1.5em;
  position: relative;
}
ul.list_basicnum-style > li::before,
ol.list_basicnum-style > li::before {
  content: counter(basic-num) ".";
  position: absolute;
  left: 0;
  top: 0;
}

/* ============================== link */
:where(main a:not([class])[target=_blank]),
:where(main a:not([href$=".pdf"])[target=_blank]) {
  color: #333;
  text-decoration: none;
}
:where(main a:not([class])[target=_blank])::after,
:where(main a:not([href$=".pdf"])[target=_blank])::after {
  background: url(/assets/images/common/icon_blank.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  margin-left: 7px;
  position: relative;
  top: 2px;
  height: 18px;
  width: 24px;
}
:where(main a:not([class])[target=_blank]):hover,
:where(main a:not([href$=".pdf"])[target=_blank]):hover {
  opacity: 0.8;
  transition: all 0.25s ease;
}
@media screen and (max-width: 768px) {
  :where(main a:not([class])[target=_blank])::after,
  :where(main a:not([href$=".pdf"])[target=_blank])::after {
    margin-left: 10px;
  }
}

:where(main a:not([class])[href$=".pdf"]) {
  color: #333;
  text-decoration: none;
}
:where(main a:not([class])[href$=".pdf"])::after {
  background: url(/assets/images/common/icon_pdf_S.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  margin-left: 15px;
  position: relative;
  top: -2px;
  vertical-align: middle;
  height: 22px;
  width: 46px;
}
:where(main a:not([class])[href$=".pdf"]):hover {
  opacity: 0.8;
  transition: all 0.25s ease;
}
@media screen and (max-width: 768px) {
  :where(main a:not([class])[href$=".pdf"])::after {
    margin-left: 10px;
  }
}

a.link_pdf {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  padding-left: 53px;
  position: relative;
}
a.link_pdf::before {
  background: url(/assets/images/common/icon_pdf_L.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-55%);
  height: 30px;
  width: 38px;
}
@media screen and (max-width: 768px) {
  a.link_pdf {
    font-size: 1.8rem;
    line-height: 1.3;
    padding-left: 48px;
  }
  a.link_pdf::before {
    height: 25px;
    width: 35px;
  }
}

/* ============================== button */
.btn_simple-style a {
  background: #fff;
  border: #707070 solid 1px;
  border-radius: 10px;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  padding: 5px 20px 5px 18px;
  text-decoration: none;
  height: 50px;
  opacity: 1;
  transition: all 0.25s ease;
}
.btn_simple-style a::before {
  display: inline-block;
  position: relative;
}
.btn_simple-style a:hover {
  opacity: 0.8;
  transition: all 0.25s ease;
}
@media screen and (max-width: 768px) {
  .btn_simple-style a {
    font-size: 1.8rem;
    padding-bottom: 9px;
  }
}

.btn_simple-style.btn_ico-shop a {
  padding-left: 13px;
}
.btn_simple-style.btn_ico-shop a::before {
  content: url(/assets/images/common/icon_map.svg);
  margin-right: 9px;
  top: 0.15em;
}
.btn_simple-style.btn_ico-kinri a::before {
  content: url(/assets/images/common/icon_kinri.svg);
  margin-right: 13px;
  top: 0.15em;
}
.btn_simple-style.btn_ico-simulation a::before {
  content: url(/assets/images/common/icon_simulation.svg);
  margin-right: 19px;
  top: 0.1em;
}
.btn_simple-style.btn_ico-print a::before {
  content: url(/assets/images/common/icon_print.svg);
  margin-right: 19px;
  top: 0.1em;
}
.btn_simple-style.btn_ico-pam a::before, .btn_simple-style.btn_ico-fax a::before {
  background: url(/assets/images/common/icon_pdf_L.svg) no-repeat center/contain;
  content: "";
  margin-right: 13px;
  top: 0.1em;
  height: 26px;
  width: 33px;
}
.btn_simple-style.btn_ico-pam a::after, .btn_simple-style.btn_ico-fax a::after {
  content: none;
}

.btn_boxshadow-style a {
  background: #fff;
  border: #526DBC solid 1px;
  border-radius: 20px;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "ZenMaruGothic", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 9px 45px 14px;
  position: relative;
  text-align: center;
  text-decoration: none;
  height: 80px;
  opacity: 1;
  transition: all 0.25s ease;
}
.btn_boxshadow-style a::after {
  aspect-ratio: 1/1;
  background: url(/assets/images/common/icon_arrow-r_circle.svg) no-repeat center center/contain;
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
}
.btn_boxshadow-style a:hover {
  opacity: 0.8;
  transition: all 0.25s ease;
}
@media screen and (max-width: 768px) {
  .btn_boxshadow-style a {
    border-radius: 15px;
    justify-content: space-between;
    font-size: 1.8rem;
    line-height: 1.2;
    padding: 12px;
    text-align: left;
    height: 70px;
  }
  .btn_boxshadow-style a::after {
    right: 14px;
  }
}

/* ============================== text */
/* color */
.txt_color-red {
  color: #D0230E;
}

/* note */
.txt_kome {
  padding-left: 1em;
  position: relative;
}
.txt_kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/* weight */
.txt_nomal {
  font-weight: normal;
}

.txt_bold {
  font-weight: bold;
}

/* text-align */
.txt_center {
  text-align: center !important;
}

.txt_left {
  text-align: left !important;
}

.txt_right {
  text-align: right !important;
}

/* font-size */
.fs_25 {
  font-size: 2.5rem !important;
}

.fs_24 {
  font-size: 2.4rem !important;
}

.fs_23 {
  font-size: 2.3rem !important;
}

.fs_22 {
  font-size: 2.2rem !important;
}

.fs_21 {
  font-size: 2.1rem !important;
}

.fs_20 {
  font-size: 2rem !important;
}

.fs_19 {
  font-size: 1.9rem !important;
}

.fs_18 {
  font-size: 1.8rem !important;
}

.fs_17 {
  font-size: 1.7rem !important;
}

.fs_16 {
  font-size: 1.6rem !important;
}

.fs_15 {
  font-size: 1.5rem !important;
}

.fs_14 {
  font-size: 1.4rem !important;
}

.fs_13 {
  font-size: 1.3rem !important;
}

.fs_12 {
  font-size: 1.2rem !important;
}

.fs_11 {
  font-size: 1.1rem !important;
}

.fs_10 {
  font-size: 1rem !important;
}

/* ============================== margin */
.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

/* ============================== padding */
.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pt100 {
  padding-top: 100px !important;
}

@media print {
  header {
    position: absolute;
    left: 0;
    top: 0;
    transition: top 0.3s ease;
  }
  .hamburger,
  .sp_fixmenu {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */