@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", roboto, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #333333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: unset;
}

a {
  text-decoration: none;
  outline: none;
  color: #03c;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #eee;
}

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #eee;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

form {
  margin: 0;
  padding: 0;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  font-size: 1em;
  -webkit-appearance: none;
}

textarea:hover, textarea:focus {
  outline: none;
}
textarea:hover {
  opacity: 0.6;
}
textarea:focus {
  outline: none;
  border-color: #fff2e6;
  -webkit-box-shadow: none;
  box-shadow: none;
}
textarea ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input:focus {
  outline: none;
  border-color: #fff2e6;
  -webkit-box-shadow: none;
  box-shadow: none;
}
input[type=submit], input[type=button] {
  width: auto;
  display: inline-block;
  padding: 0.6em 2em;
  margin: 0;
  background-image: none;
  background-color: #fff2e6;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 0;
  font-size: 16px;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
input[type=submit]:hover, input[type=submit]:focus, input[type=button]:hover, input[type=button]:focus {
  outline: none;
}
input[type=submit]:hover, input[type=button]:hover {
  opacity: 0.6;
}
input[type=submit] ::-moz-focus-inner, input[type=button] ::-moz-focus-inner {
  padding: 0;
  border: none;
}
input[type=radio] {
  display: none;
}
input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 16px 0 0;
  cursor: pointer;
}
input[type=radio] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: block;
}
input[type=radio] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
input[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #707070;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: block;
  opacity: 1;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 16px 0 0;
  cursor: pointer;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
input[type=checkbox] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
  width: 26px;
  height: 26px;
  display: block;
}
input[type=checkbox] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 26px;
  height: 15.6px;
  margin-top: -0.2em;
  display: block;
  border-left: 4px solid #707070;
  border-bottom: 4px solid #707070;
  opacity: 1;
}

select {
  padding: 0.4em 2.4em 0.4em 0.8em;
  border-radius: 0;
  background-position: right 6px center;
  background-repeat: no-repeat;
  background-size: 24px;
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid #707070;
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}


#modal-overlay {
display: none;
}
#jbk-header-area {
  box-shadow: none;
}



section {
margin-bottom: 20px;
}
.img-inline {
display: inline-block;
}
.c-noteList-03 li:before {
  top: 3px;
}
.font-s-em06 {
  font-size: 0.6em;
}
.font-s-em12 {
  font-size: 1.2em;
  font-weight: bold;
  }
.font-s-em14 {
font-size: 1.4em;
font-weight: bold;
}
.font-s-em16 {
  font-size: 1.6em;
  font-weight: bold;
  }
.font-s-em2 {
  font-size: 2em;
  font-weight: bold;
}
.font-w-no {
  font-weight: normal;
  }
.font-w-bo {
font-weight: bold;
}
.color_or {
color: #eb5505;
font-weight: bold;
}
.color_gr {
color: #34a896;
font-weight: bold;
}
.color_gold {
color: #b98a39;
font-weight: bold;
}
.color_red {
  color: #e50000;
  }
.bg-gray {
background-color: #eee;
padding: 20px;
}
.lh1 {
line-height: 1;
}
.hidden-pc {
display: none;
}
.text-center {
text-align: center;
}
.text-left {
  text-align: left;
  }
  .text-right {
    text-align: right;
    }
@media only screen and (max-width: 868px) {
  .hidden-sp {
    display: none;
    }
    .hidden-pc {
    display: block;
    }
}
@media only screen and (max-width: 640px) {
.hidden-sp {
display: none;
}
.hidden-pc {
display: block;
}
.bg-gray {
  padding: 4vw;
  }
}
.c-btn-01 {
  line-height: 1;
}

.hr_img {
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}
.hr_img img {
width: 50px;
height: 50px;
}
@media only screen and (max-width: 640px) {
.hr_img img {
width: auto;
height: auto;
}
}
/* fv */


.tabs {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between;
padding: 20px 14% 0;
  }
  @media screen and (max-width: 750px) {
.tabs {
  width: 100%;
  padding: 0 2%;
}
  }
  .tab-btn {
display: inline-block;
cursor: pointer;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
margin-right: 0;
background-size: contain;
background-position: center bottom;
background-repeat: no-repeat;
position: relative;
width: 33%;
-webkit-tap-highlight-color: transparent;
border-radius: 15px 15px 0 0;
font-weight: bold;
text-align: center;
padding: 10px 5px;
  }
  .tab-btn.show {
pointer-events: none;
  }

.tab-btn:nth-of-type(1) {
color: #007dbb;
border: 2px solid #007dbb;
border-bottom: none;
  }
  .tab-btn:nth-of-type(1).show {
background-color: #007dbb;
color: #fff;
  }
  .tab-btn:nth-of-type(2) {
margin-left: 10px;
color: #338800;
border: 2px solid #338800;
border-bottom: none;
  }
  .tab-btn:nth-of-type(2).show {
background-color: #338800;
color: #fff;
  }
  .tab-btn:nth-of-type(3) {
margin-left: 10px;
color: #eb5505;
border: 2px solid #eb5505;
border-bottom: none;
  }
  .tab-btn:nth-of-type(3).show {
background-color: #eb5505;
color: #fff;
  }

  .tab-btn_link {
color: #fff;
  }


  .tab_link {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between;
padding: 0 5% 0;
  }
  @media screen and (max-width: 750px) {
.tab_link {
  width: 100%;
  padding: 0 2%;
}
  }
  .tab_link-btn {
flex: 1;
margin: 0 1%;
  }
  .tab_link-btn {
    border-radius: 15px 15px 0 0;
  }
  .tab_link-btn a {
display: inline-block;
cursor: pointer;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
margin-right: 0;
background-size: contain;
background-position: center bottom;
background-repeat: no-repeat;
position: relative;
width: 100%;
height: 100%;
-webkit-tap-highlight-color: transparent;
font-weight: bold;
text-align: center;
padding: 10px 5px;
color: #fff;
  }
  .tab_link-btn.show a {
pointer-events: none;
  }

.tab_link-btn.is-variable {
border: 2px solid #007dbb;
border-bottom: none;
  }
  .tab_link-btn.is-variable a{
    color: #007dbb;
  }
  .tab_link-btn.is-variable.show {
background-color: #007dbb;
color: #fff;
  }
  .tab_link-btn.is-variable.show a{
    color: #fff;
      }
  .tab_link-btn.is-fixed {
border: 2px solid #586bc5;
border-bottom: none;
  }
  .tab_link-btn.is-fixed.show {
background-color: #586bc5;
  }
  .tab_link-btn.is-fixed a{
    color: #586bc5;
      }
      .tab_link-btn.is-fixed.show a{
    color: #fff;
      }
.tab_link-btn.is-variable-new {
border: 2px solid #338800;
border-bottom: none;
  }
  .tab_link-btn.is-variable-new a{
    color: #338800;
  }
  .tab_link-btn.is-variable-new.show {
background-color: #338800;
color: #fff;
  }
  .tab_link-btn.is-variable-new.show a{
    color: #fff;
      }
  .tab_link-btn.is-fixed-new {
border: 2px solid #238081;
border-bottom: none;
  }
  .tab_link-btn.is-fixed-new.show {
background-color: #238081;
  }
  .tab_link-btn.is-fixed-new a{
    color: #238081;
      }
      .tab_link-btn.is-fixed-new.show a{
    color: #fff;
      }
  .tab_link-btn:nth-of-type(3) {
border: 2px solid #eb5505;
border-bottom: none;
  }
  .tab_link-btn:nth-of-type(3).show {
background-color: #eb5505;
  }
  .tab_link-btn:nth-of-type(3) a{
    color: #eb5505;
      }
      .tab_link-btn:nth-of-type(3).show a{
    color: #fff;
      }

  .tab_link-btn {
color: #fff;
  }
.fv_main {
background-color: #fffbf1;
}
.fv_inner {
  width: 868px;
  padding: 40px 0;
  margin: auto;
}

.fv_main_content--col2 {
display: flex;
justify-content: space-around;
align-items: center;
}

.fv_main_balloon {
width: 100%;
position: relative;
border: 3px solid #bcbdbd;
border-radius: 6px;
padding: 10px;
text-align: center;
margin-bottom: 20px;
background-color: #fff;
}
.fv_main_balloon::before {
content: "";
position: absolute;
bottom: -20px;
right: 0;
left: 0;
margin: auto;

width: 0;
height: 0;
border-style: solid;
border-right: 15px solid transparent;
border-left: 15px solid transparent;
border-top: 20px solid #bcbdbd;
border-bottom: 0;
}
.fv_main_balloon::after {
content: "";
position: absolute;
bottom: -16px;
right: 0;
left: 0;
margin: auto;

width: 0;
height: 0;
border-style: solid;
border-right: 15px solid transparent;
border-left: 15px solid transparent;
border-top: 20px solid #fff;
border-bottom: 0;
}

.fv_main_balloon--right {
border-color: #eb5505;
background-color: #fff;
}
.fv_main_balloon--right::before {
content: "";
position: absolute;
top: -20px;
bottom: auto;
right: 30px;
left: auto;
margin: auto;
width: 0;
height: 0;
border-style: solid;
border-right: 15px solid transparent;
border-left: 15px solid transparent;
border-top: 0;
border-bottom: 20px solid #eb5505;
}
.fv_main_balloon--right::after {
content: "";
position: absolute;
top: -16px;
bottom: auto;
right: 30px;
left: auto;
margin: auto;
width: 0;
height: 0;
border-style: solid;
border-right: 15px solid transparent;
border-left: 15px solid transparent;
border-top: 0;
border-bottom: 20px solid #fff;
}

.fv_main_title {
position: relative;
text-align: center;
color: #212426;
font-size: 22px;
min-height: 100px;
display: flex;
align-items: center;
justify-content: center;

}

.fv_main_title::before {
content: "";
display: block;
width: 110px;
height: 100px;
background-image: url('/pc/landing/homeloan/share/img/KV_img_03.png');
background-repeat: no-repeat;

position: absolute;
top: 0;
bottom: 0;
left: 0;
margin: auto;
}

.fv_main_title::after {
content: "";
display: block;
width: 110px;
height: 100px;
background-image: url('/pc/landing/homeloan/share/img/KV_img_04.png');
background-repeat: no-repeat;

position: absolute;
top: 0;
bottom: 0;
right: 0;
margin: auto;
}
.fv_main_title--none::before,.fv_main_title--none::after {
  content: none;
}
/*simulation*/
.simulation {
width: 868px;
margin: auto;
text-align: center;
}
.simulation_link {

}
.simulation_text {
text-align: center;
margin-bottom: 10px;
}
.simulation_btn {
position: relative;
display: inline-block;
width: 500px;
background-color: #eb5505;
border-radius: 50px;
padding: 8px 40px 10px 40px;
text-align: center;
color: #fff;
font-weight: bold;
font-size: 20px;
box-shadow: 0px 4px 0px 0px rgba(224, 224, 224, 1);
margin-bottom: 10px;
}
.bnr-img {
margin-bottom: 20px;
display: block;
}
.icon_self::after {
  content: "";
  position: absolute;
  mask: url(/assets/img/icon__bullet--right_nprl.svg) no-repeat center center / contain;
  -webkit-mask: url(/assets/img/icon__bullet--right_nprl.svg) no-repeat center center / contain;
  background-color: #fff;
  width: 16px;
  height: 16px;
  background-size: auto 25px;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.icon_blank::after { 
content: "";
position: absolute;
mask: url(/assets/img/icon__blank.svg) no-repeat center center / contain;
-webkit-mask: url(/assets/img/icon__blank.svg) no-repeat center center / contain;
background-color: #fff;
width: 25px;
height: 25px;
background-size: auto 25px;
   right: 20px;
top: 0;
bottom: 0;
margin: auto;
}
.anchor_link {
width: 500px;
margin: 0 auto 30px;
}
.anchor_icon {
position: relative;
padding: 10px 40px 10px 50px;
border: 2px solid #bcbdbd;
border-radius: 12px;
margin-bottom: 10px;
width: 100%;
display: inline-block;
color: #535252;
}
.anchor_icon::before {
content: "";
background-repeat: no-repeat;
background-size: 100%;
height: 36px;
width: 36px;
position: absolute;
left: 10px;
top: 0;
bottom: 0;
margin: auto;
}
.anchor_icon--timer::before {
background-image: url(/pc/landing/homeloan/share/img/icon_01.png);
}
.anchor_icon--reason::before {
background-image: url(/pc/landing/homeloan/share/img/icon_02.png);
}
.anchor_icon--question::before {
background-image: url(/pc/landing/homeloan/share/img/icon_03.png);
}
.anchor_icon::after {
content: "";
background-image: url(/assets/img/icon__bullet--right_nprl.svg);
background-repeat: no-repeat;
background-size: 100%;
position: absolute;
width: 0.8em;
height: 0.8em;
left: unset;
right: 10px;
top: 0;
bottom: 0;
margin: auto;
transform: rotate(90deg);
}
.content_m5 {
margin: 0 auto 20px;
background-color: #fffbf1;
}
.anchor_qa__inner {
  width: 868px;
  margin: auto;
  padding: 30px 10px;
}
.content_m5_title {
position: relative;
display: flex;
justify-content: center;
align-items: center;
border-bottom: 2px solid #000;
margin-bottom: 20px;
font-size: 32px;
}
.content_m5_title::before {
content: "";
background-image: url(/pc/landing/homeloan/share/img/img_01_01.png);
background-repeat: no-repeat;
background-size: 100%;
position: absolute;
width: 150px;
height: 100px;
left: 0px;
bottom: -4px;
margin: auto;
}
.content_m5_title::after {
content: "";
background-image: url(/pc/landing/homeloan/share/img/img_01_02.png);
background-repeat: no-repeat;
background-size: 100%;
position: absolute;
width: 150px;
height: 100px;
right: 0px;
bottom: -4px;
margin: auto;
}
.content_m5_title h2 {
  text-align: center;
}
.content_m5_text {
text-align: center;
margin-bottom: 20px;
font-size: 18px;
font-weight: bold;
}

.content_m5_block {
display: flex;
justify-content: space-around;
align-items: flex-start;
margin-bottom: 20px;
}
.content_m5_block--col2 .content_m5_item {
width: 46%;
}
.content_m5_item_mark {
border-radius: 50px;
background-color: #34a896;
color: #fff;
font-weight: bold;
padding: 10px;
text-align: center;
margin-bottom: 20px;
}
.content_m5_item_text {
display: flex;
justify-content: space-around;
align-items: center;
text-align: center;
font-weight: bold;
}
.content_m5_acc_cpcode {
  background-color: #fff;
  padding: 15px;
}
.content_m5_acc_cpimg {
 display: flex;
 justify-content: center; 
}
.content_m5_acc_cpcode .c-figure-01 {
  position: relative;
  display: inline-block;
}

.cpcode_01 {
  position: absolute;
  font-weight: bold;
  top: 544px;
  left: 92px;
}
.cpcode_02 {
  position: absolute;
  font-size: 1.2em;
  font-weight: bold;
  top: 702px;
  right: 70px;
}
@media only screen and (max-width: 640px){
  .cpcode_01 {
    font-size: 16px;
  }
  .cpcode_02 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 524px){
  .cpcode_01 {
    top: 101.5vw;
    left: 13vw;
    font-size: 3.73vw;
  }
  .cpcode_02 {
    top: 131vw;
    right: 11.5vw;
    font-size: 3.73vw;
  }
  .content_m5_acc_cpcode {
    padding: 4vw;
  }
}

.content_reason_block {
margin-bottom: 20px;
}

.content_reason {
width: 868px;
margin: 0 auto 40px;
}
.content_reason_title {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.content_reason_title h2 {
  display: inline-block;
  position: relative;
  padding: 0 100px;
}
.content_reason_title h2::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(/pc/landing/homeloan/share/img/img_02_01.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.content_reason_title h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(/pc/landing/homeloan/share/img/img_02_02.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.title--3 {
font-size: 20px;
}

.reason_title {
border: #34a896 2px solid;
padding: 2px;
display: block;
width: fit-content;
margin: auto;
font-size: 24px;
}
.reason_title .reason_flame {
border: #34a896 2px solid;
padding: 2px 40px;
}
.reason_text {
  font-size: 18px;
}
.reason_text--large {
font-size: 22px;
font-weight: bold;
}
.sec_conect_acc_title {
font-size: 20px;
}
.sec_conect_acc_title--col {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.sec_conect_acc_title--col > *:first-child {
  width: auto;
  max-width: 85%;
  margin-right: 3%;
}


.sec_conect_acc_title_cir {
background-color: #34a896;
border-radius: 50px;
color: #fff;
font-size: 10px;
display: inline-block;
text-align: center;
width: 84px;
height: 84px;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}

.sec_conect_acc_title_cir span {
font-size: 12px;
font-weight: bold;
}
@media only screen and (max-width: 640px){
  .sec_conect_acc_title_cir {
    width: 18.67vw;
    height: 18.67vw;
    padding: 0;
    }
    
    .sec_conect_acc_title_cir span {
    font-size: 3.73vw;
    }
}
.sec_conect_acc_point {
display: inline-block;
background-color: #34a896;
color: #fff;
padding: 5px 10px;
}

.sec_conect_acc + .sec_conect_acc {
margin-top: 20px;

}



/*acc*/
.js-acc_title {
position: relative;
border: 2px solid #bcbdbd;
background-color: #fff;
padding: 13px 10px 15px;
text-align: center;
}

.js-acc_title::before {
content:"";
position: absolute;
top: 0;
bottom: 0;
right: 10px;
width: 16px;
height: 2px;
margin: auto;
background-color: #000;
transition: .3s;
transform: rotate(-90deg);
}
.is-active::before {
transform: rotate(0deg);
}
.js-acc_title::after {
content:"";
position: absolute;
top: 0;
bottom: 0;
right: 10px;
width: 16px;
height: 2px;
margin: auto;
background-color: #000;
}
.js-acc_title p {

}
.js-acc_body {
display: none;
padding-top:20px;
}
.js-acc_body + .js-acc_title {
margin-top: 20px;
}
.js-acc--link .content_reason_acc.js-acc_title {
position: relative;
}
.content_reason_acc >  .js-acc_title {
  background-color: #34a896;
  color: #fff;
  border: none;
  font-size: 1.625em;
  }

  .content_reason_acc >  .js-acc_title::before {
    background-color: #fff;
    right: 30px;
    }
    .content_reason_acc >  .js-acc_title::after {
    background-color: #fff;
    right: 30px;
    }

.content_reason_acc > .js-acc_title span {
border-radius: 50px;
background-color: #fff;
color: #34a896;
margin: auto;
width: 36px;
height: 36px;
display: inline-block;
margin-right: 10px;
line-height: 1.2;
}

@media only screen and (max-width: 640px){
  .content_reason_acc >  .js-acc_title {
    font-size: 5.33vw;
  }
  .content_reason_acc > .js-acc_title span {
    width: 9.6vw;
    height: 9.6vw;
    line-height: 1.7;
    }
    
}

.bene_block {
padding: 20px;
}
.bene_block > .js-acc_title,.content_code_acc > .js-acc_title{
background-color: #fff;
border: #eb5505 2px solid;
color: #eb5505;
font-weight: bold;
}
.bene_block > .js-acc_title::before,.content_code_acc > .js-acc_title::before {
background-color: #000;
}
.bene_block > .js-acc_title::after,.content_code_acc > .js-acc_title::after {
background-color: #000;
}
.bene_title {
font-size: 20px;
font-weight: bold;
}
.bene_title img {
margin-top: 11px;
}
.hastext img {
  margin-top: 3px;
}
.bene_text--subtitle {
  font-size: 1.2em;
}
.bene_text {
margin-top: 20px;

}
.value_content {
margin-bottom: 40px;
}
.value_title {
text-align: center;
}



.sec_conect_icon {
display: flex;
justify-content: center;
align-items: center;
}
.sec_conect_icon_plus {
text-align: center;
position: relative;
background-color: #bcbdbd;
border-radius: 50%;
width: 60px;
height: 60px;
margin-bottom: 30px;
}
.sec_conect_icon_plus::before {
content:"";
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: 40px;
height: 6px;
margin: auto;
background-color: #fff;
transform: rotate(-90deg);
}
.sec_conect_icon_plus::after {
content:"";
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: 40px;
height: 6px;
margin: auto;
background-color: #fff;
}

.sec_conect_title--emp {
padding: 10px 30px;
text-align: center;
background-color: #535353;
color: #fff;
margin-bottom: 30px;
}

.sec_conect_block--plus {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.sec_conect_block--plus .sec_conect_item {
text-align: center;
border: #eb5505 2px solid;
border-radius: 50px;
padding: 10px 30px;
}



.sec_conect_block--plus .sec_conect_icon {
display: flex;
justify-content: center;
align-items: center;
}
.sec_conect_block--plus .sec_conect_icon_plus {
text-align: center;
position: relative;
background-color: #eb5505;
border-radius: 50%;
width: 40px;
height: 40px;
border-radius: 50%;
margin: 0 -5px;
}
.sec_conect_block--plus .sec_conect_icon_plus::before {
content:"";
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: 20px;
height: 4px;
margin: auto;
background-color: #fff;
transform: rotate(-90deg);
}
.sec_conect_block--plus .sec_conect_icon_plus::after {
content:"";
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: 20px;
height: 4px;
margin: auto;
background-color: #fff;
}


@media only screen and (max-width: 640px) {

}



/*--------------------------------------------------------------
footer
--------------------------------------------------------------*/
.footer {
background-color: #535353;
margin: 0 calc(50% - 50vw);
width: 100vw;
padding-bottom: 125px;
  }
  @media screen and (max-width: 750px) {
.footer {
  background-color: #595959;
  padding-bottom: 35vw;
}
  }
  .footer p {
width: 100%;
margin: 0 auto;
  }
  
.sty-footer_inner {
background-color: #535353;
text-align: center;
padding-top: 15px;
  }
  .sty-footer_inner p {
color: #fff;
font-size: min(0.857vw, 12px);
font-weight: normal;
  }
  .sty-footer_inner p.sty-footer_text {
font-size: 14px;
margin-bottom: 15px;
  }
  .sty-footer_inner p.sty-footer_text--min {
font-size: 12px;
  }
  .sty-footer_link li {
display: inline-block;
  }
  .sty-footer_link a {
position: relative;
display: inline-block;
  color: #fff;
  text-decoration: none;
padding: 10px 16px 10px 24px;
  }
  .sty-footer_link a:before {
width: 15px;
height: 15px;
background-image: url(/assets/img/marker_01_@2x.png);
background-repeat: no-repeat;
background-position: -180px 0;
background-size: auto 15px;
position: absolute;
left: 0;
top: 50%;
margin-top: -9px;
content: "";
  }
  @media only screen and (max-width: 640px){
.sty-footer_inner {
  background-color: #595959;
}
.sty-footer_inner {
  padding-top: 4vw;
}
   .sty-footer_inner p.sty-footer_text {
  font-size: calc(18vw / 750 * 100);
  margin-bottom: 2.67vw;
}
.sty-footer_inner p.sty-footer_text--min {
  font-size: smaller;
}
.sty-footer_link {
  margin-bottom: 4vw;
}
.sty-footer_link a {
  font-size: 3.27vw;
  padding: 0 4.27vw;
}
.sty-footer_link a:before {
  width: 4vw;
  height: 4vw;
  background-position: -48vw 0;
  background-size: auto 4vw;
  left: -5px;;
  top: 0;
  bottom: 0;
  margin: auto;
}
  }
  
  
/*--------------------------------------------------------------
topボタン
--------------------------------------------------------------*/
#fixedBtn {
display: none;
position: fixed;
padding: 10px 0;
background: rgba(0, 0, 0, 0.5);
bottom: 0;
left: 0;
right: 0;
max-width: 100%;
opacity: 1;
z-index: 1000;
  }
  #fixedBtn .inner {
width: 100%;
max-width: 700px;
margin: auto;
  }
  #fixedBtn p, #fixedBtn a {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
color: #fff;
font-weight: bold;

  }

  #fixedBtn .fixed_btn01:hover, #fixedBtn .fixed_btn02:hover {
opacity: 1;
-webkit-filter: brightness(1.1);
filter: brightness(1.1);
  }
  #fixedBtn .txt_link {
margin: 1% 0;
text-decoration: underline;
  }
  #fixedBtn .link_wrapper {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
  }
  @media screen and (min-width: 751px) {
#fixedBtn .link_wrapper .btn_wrapper {
  width: 90%;
  display: flex;
  align-items: center;
}
.left-txt{
  width: 30%;
  margin-right: 20px;
}
.right-txt{
  width: 30%;
  margin-left: 20px;
}
  }

  .tab-content.show {
display: block;
  }
  .tab-content {
display: none;
margin-bottom: 40px;
  }

  .tabs.tabs--interest50-51 {
color: #34a896;
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
margin-bottom: -6px;
border: none;
  }
  .tab-btn.tab-btn--interest50-51 {
font-size: 26px;
width: 45%;
color: #34a896;
border: #34a896 4px solid;
border-radius: 6px 6px 0 0;
padding: 5px 10px;
text-align: center;
font-weight: bold;
margin: 0 5px;
  }
  .tab-btn.tab-btn--interest50-51.show {
background-color: #34a896;
color: #fff;
  }
  @media only screen and (max-width: 640px){
.tabs.tabs--interest50-51 {
  margin-top: 30px;
  margin-bottom: -6px;
}
.tab-btn.tab-btn--interest50-51 {
  font-size: 20px;
  width: 46%;
  border: #34a896 4px solid;
  border-radius: 6px 6px 0 0;
  padding: 5px 10px;
  margin: 0 5px;
}
  }
.tab-warp {
width: 868px;
margin: auto;
}
  .gradeup_img {
padding: 20px;
background-color: #34a896;
color: #fff;
text-align: center;
font-size: 24px;
font-weight: bold;
margin: 20px auto;
  }
.sty-tab-interest50-51 {
margin-top: 30px;
  }
   #main_content .sty-tab-interest50-51__title p {
font-size: 24px;
font-weight: bold;
text-align: center;
margin-bottom: 20px;
  }
  #main_content .sty-tab-interest50-51__title p span {
color: #34a896;
  }
  @media only screen and (max-width: 640px){
#main_content .sty-tab-interest50-51__title p {
  font-size: 18px;
}
.gradeup_img { 
  margin-bottom: 4vw;
}

  }
  .sty-tab-interest50-51__block {
display: flex;
justify-content: center;
align-items: start;
  }
  .sty-tab-interest50-51__block--col2 {
justify-content: space-around;
  }
  .sty-tab-interest50-51__item {
display: block;
width: 40%;
  }
  .sty-tab-interest50-51__ballon {
position: relative;
border: #868686 solid 3px;
border-radius: 4px;
padding: 30px 10px;
text-align: center;
margin-bottom: 40px;
  }
  #main_content .sty-tab-interest50-51__ballon p {
font-size: 20px;
  }
  #main_content .sty-tab-interest50-51__ballon span {
color: #eb7000;
font-size: 1.2em;
font-weight: bold;
  }
  .sty-tab-interest50-51__ballon::before {
content: "";
position: absolute;
bottom: -26px;
right: 0;
left: 0;
margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-top: 26px solid #868686;
  border-bottom: 0;
  }
  .sty-tab-interest50-51__ballon::after {
content: "";
position: absolute;
bottom: -22px;
right: 0;
left: 0;
margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-top: 26px solid #fff;
  border-bottom: 0;
  }
  #main_content .sty-tab-interest50-51__rate-text {
font-size: 20px;
font-weight: bold;
text-align: center;
margin-bottom: 5px;
  }
  #main_content .sty-tab-interest50-51__rate-item {
color: #eb7000;
font-size: 24px;
font-weight: bold;
text-align: center;
line-height: 1.2;
  }
  #main_content .sty-tab-interest50-51__rate-item span {
font-size: 48px;
  }
  #main_content .sty-tab-interest50-51__rate-date {
font-size: 20px;
text-align: center;
  }
  .sty-hidden-pc {
display: none;
  }
  @media only screen and (max-width: 640px){
.sty-tab-interest50-51__item {
  width: 48%;
}
.sty-tab-interest50-51__ballon {
  padding: 10px 10px;
  margin-bottom: 20px;
  }
  .sty-tab-interest50-51__ballon::before {
content: "";
bottom: -16px;
border-right: 10px solid transparent;
border-left: 10px solid transparent;
border-top: 16px solid #868686;
  }
  .sty-tab-interest50-51__ballon::after {
content: "";
bottom: -12px;
border-right: 10px solid transparent;
border-left: 10px solid transparent;
border-top: 16px solid #fff;
  }
  .sty-tab-interest50-51__ballon p {
font-size: 18px;
  }
  #main_content .sty-tab-interest50-51__rate-text {
font-size: 18px;
  }
  #main_content .sty-tab-interest50-51__rate-item {
font-size: 20px;
  }
  #main_content .sty-tab-interest50-51__rate-item span {
font-size: 36px;
  }
  #main_content .sty-tab-interest50-51__rate-date {
font-size: 18px;
  }
}
.check_conect_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
}
.check_conect_list li {
  width: 35%;
position: relative;
padding-left: 20px;
margin-bottom: 20px;
}
.check_conect_list li:before {
  content: "";
width: 19px;
height: 16px;
background-image: url(/pc/landing/homeloan/share/img/icon_check.png);
background-repeat: no-repeat;
background-size: contain;
position: absolute;
top: 2px;
left: 0;
} 
@media only screen and (max-width: 640px){
  .check_conect_list {
display: block;
  }
  .check_conect_list li {
width: 100%;
  }
}
.section_qa {
  background-color: #fffbf1;
  margin: auto;
}
.qa_inner {
  width: 868px;
  margin: auto;
  padding: 30px 10px;
}
.qa_title {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  color: #eb5505;
  text-align: center;
  
  margin-bottom: 20px;
}
.qa_title_hasicon {
  position: relative;
  padding: 0 60px;
}
.qa_title_hasicon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;

  background-image: url(/pc/landing/homeloan/share/img/img_06_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 45px;
  height: 45px;
}
.qa_title_hasicon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;

  background-image: url(/pc/landing/homeloan/share/img/img_06_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 45px;
  height: 45px;
}

.content_qa_acc > .js-acc_title {
  text-align: left;
  position: relative;
  font-weight: bold;
  padding:10px 0 10px 40px;
  font-size: 18px;
}
.content_qa_acc > .js-acc_title::before {
  background-color: #535252;
  right: 30px;
}
.content_qa_acc > .js-acc_title::after {
  background-color: #535252;
  right: 30px;
}

.qa_title_hasicon--q {
  position: relative;
  padding-left: 30px;
}
.qa_title_hasicon--q::before {
  content: "Q";
  position: absolute;
  font-size: 18px;
  font-weight: bold;
  color: #757575;
  top: 0;
  bottom: 0;
  left: 0px;
  margin: auto;
  background-image: none;
  width: auto;
  height: auto;
}
.qa_title_hasicon--q::after {
  content: none;
}

.section_call {
  background-color: #eee;
}
.section_call strong {
  font-weight: bold;
  color: #eb5505;
}
.call_title {
  text-align: center;
}
.call_title_main {
  font-size: 24px;
  font-weight: bold;
}
.call_area {
  width: 868px;
margin: auto;
padding: 40px;
}
.call_title_balloon {
  width: auto;
  display: inline-block;
  position: relative;
  color: #eb5505;
  font-weight: bold;
  border: 2px solid #eb5505;
  border-radius: 50px;
  padding: 3px 30px;
  text-align: center;
  margin-bottom: 10px;
  background-color: #fff;
}
.call_title_balloon::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid #eb5505;
  border-bottom: 0;
}
.call_title_balloon::after {
  content: "";
  position: absolute;
  bottom: -7px;
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: 0;
}

.call_main-cnt {
  padding: 20px;
  border-top: #868686 solid 3px;
  border-bottom: #868686 solid 3px;
text-align: center;
}
.call_main-cnt--col2 {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media only screen and (max-width: 640px){ 
  .call_main-cnt--col2 {
    justify-content: space-between;
  }
}
.call_main-cnt + .call_main-cnt {
  border-top: none;
}
.call_main-num {
font-size: 36px;
font-weight: bold;
}
.bnr {
  width: 868px;
  margin: auto;
}

/*Pad用記述*/
@media only screen and (max-width: 868px){ 
  .fv_inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    }
    .simulation {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    }
    .anchor_qa__inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    }
    .content_reason {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    }
    .tab-warp {
    width: 100%;
    }
    .qa_inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    }
    .call_area {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    }
    .bnr {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    }
}
@media only screen and (max-width: 800px){ 
  .content_m5_title { 
    font-size: 22px;
  }
}
@media only screen and (max-width: 640px){ 
  section {
    margin-bottom: 4vw;
  }
  body {
font-size: 3.73vw;
  }
  .simulation {
width: auto;
  }
  .anchor_qa__inner {
width: auto;
  }
  .content_reason {
width: auto;
  }
  .tab-warp {
width: auto;
  }
  .qa_inner {
    padding: 8vw 2.667vw;
width: auto;
  }
  .call_area {
width: auto;
padding: 4vw;
  }
  .fv_inner {
width: auto;
  }
  .anchor_link {
width: auto;
  }
  .simulation_btn {
width: auto;
  }

.fv_inner {
  padding: 4vw;
}
  .fv_main_content--col2 {
flex-wrap: wrap;
  }
  .fv_main_img {
width: 100%;
  }
  .fv_main_img--sp-right {
width: 90%;
  }
  .fv_main_img--sp-left {
display: flex;
justify-content: end;
margin-top: -13.3vw;
  }
  .fv_main_img--sp-left img {
width: 25%;
  }
  .fv_main_title {
font-size: 4.8vw;
  }
  .fv_main_balloon {
padding: 1.33vw;
  }

  .fv_main_title::before {
width: 17.6vw;
height: 16vw;
background-size: contain;
left: 0;
  }
  .fv_main_title::after {
width: 17.6vw;
height: 16vw;
background-size: contain;
right: 0;
  }
  .hr_img img {
width: 16vw;
  }
  .bnr {
width: 100%;
padding: 0 2.667vw;
  }
  .anchor {
padding: 0 2.667vw;
  }
  .anchor_qa__inner {
padding: 8vw 2.667vw;
  }
  .content_m5 {

  }
  .content_m5_title { 
    font-size: 4.26vw;
  }
  .content_m5_title::before {
width: 17vw;
height: 14vw;
left: 0;
bottom: -3.2vw;
background-size: contain;
  }
  .content_m5_title::after {
width: 17vw;
height: 14vw;
right: 0px;
bottom: -3.2vw;
background-size: contain;
  }
  .content_reason {
padding: 2.667vw;
  }
  .content_m5_item_mark {
padding: 1.33vw;
margin-bottom: 2.67vw;
  }
  .content_m5_item_text img {
width: 30%;

  }
  .bene_block {
padding: 2.667vw 0;
  }
  .bene_title {
font-size: 4.26vw;
  }
  .bene_title img {
    height: 7.46vw;
    width: 7.46vw;
    margin-top: 1.33vw;
    }
    .hastext img {
      margin-top: 0.27vw;
    }
  .sec_conect_block--plus .sec_conect_item {
padding: 2.667vw 5.33vw;
  }
  .sec_conect_acc_title > *:first-child {
  width: 70vw;
  margin-right: 2vw;
  }

  .sec_conect_acc_title_cir span {
font-size: 1.2em;
  }
  .sec_conect_acc_inner {
padding: 4vw;
  }
  .sec_conect_block {
flex-wrap: wrap;
  }
  .sec_conect_item {
width: 100%;
  }
  .sec_conect_block--plus .sec_conect_icon_plus {
margin: -1.33vw auto;
  }
  .qa_title_hasicon {
padding: 0 8vw;
  }
  .qa_title_hasicon::before {
content: "";
position: absolute;
background-size: contain;
top: 0;
bottom: 0;
left: 0;
width: 8vw;
height: 8vw;
}
.qa_title_hasicon::after {
  content: "";
  position: absolute;
  background-size: contain;
  top: 0;
  bottom: 0;
  right: 0;
  width: 8vw;
  height: 8vw;
}
.qa_title_hasicon--q {
  padding: 0;
}
.qa_title_hasicon--q::before {
  content: "Q";
  position: absolute;
  font-size: 4.8vw;
  font-weight: bold;
  color: #757575;
  margin: auto;
  background-image: none;
  width: auto;
  height: auto;
  left: -8vw;
}
.qa_title_hasicon--q::after {
  content: none;
}
.content_qa_acc > .js-acc_title {
  font-size: 4.8vw;
  padding: 2.667vw 8vw 2.667vw 10.67vw;
}
.content_qa_acc > .js-acc_title::before {
right: 4vw;
}
.content_qa_acc > .js-acc_title::after {
  right: 4vw;
}
.sty-tab-interest50-51__rate-item {
  word-break: keep-all;
}

.content_reason_title {
  margin-top: 4vw;
  display: block;
  font-size: 4.8vw;
}
.content_reason_title h2 {
  display: block;
  position: relative;
  padding: 0 16vw;
}
.content_reason_title h2::before {
  content: "";
  display: block;
  width: 16vw;
  height: 16vw;
  background-image: url(/pc/landing/homeloan/share/img/img_02_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.content_reason_title h2::after {
  content: "";
  display: block;
  width: 16vw;
  height: 16vw;
  background-image: url(/pc/landing/homeloan/share/img/img_02_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.call_main-cnt--col2 > div {
width: 48%;
}
}


.fixedBtn_link {
font-size: 1.125em;
background-color: #eb5505;
border-radius: 50px;
padding: 5px 25px;
text-align: center;
color: #fff;
font-weight: bold;
box-shadow: 0 2px 0 rgba(168, 80, 0, 1);
margin: 5px auto;
}

a:has(> .icon) {
  line-height: 1;
}
.block_inline {
  display: inline-block;
}
.hastext {
  display: flex;
  flex-flow: column;
}
.hastext-top {
  line-height: 1;
  display: inline-block;
}
.hastext-under {
  display: inline-block;
  font-size: 9px;
}
@media only screen and (max-width: 640px){ 
  .hastext-under {
    font-size: 2.13vw;
  }
}




.list-01--smaller,.linkList-01--smaller {
  font-size: 0.75em;
}

@media only screen and (max-width: 640px){ 
  .list-01--smaller,.linkList-01--smaller {
    font-size: 3.2vw;
  }
  
}


/*table*/

.table-cnt_inner {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
}
.table-cnt_head {
  font-size: 1.5em;
  width: 100%;
  display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
background-color: #34a896;
color: #fff;
font-weight: bold;
padding: 15px;

}
.table-cnt_head > *{
  margin-right: 15px;
}
.table-cnt_head > *:last-child{
  margin-right: 0;
}
.table-cnt_head_balloon {
  font-size: 0.83em;
  background-color: #fff;
  color: #34a896;
  border-radius: 50px;
  padding: 8px 25px 5px;
}
.table-cnt_c1 {
  font-size: 1.25em;
  width: 100%;
  display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: stretch;
font-weight: bold;
border-bottom: 1px solid #bcbdbd;
}
.table-cnt_c1--subhead{
  background-color: #eee;
}
.table-cnt_block {
  height: 140px;
  width: 25%;
  border-right: 1px solid #bcbdbd;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.table-cnt_block:first-child {
  border-left: 1px solid #bcbdbd;
}
.table-cnt_block--col {
  flex-direction: column;
}
.table-cnt_block--col > *{
  border-bottom: 1px solid #bcbdbd;
}
.table-cnt_block--col > *:last-child {
  border-bottom: none;
}
.table-cnt_block--col3 {
  height: 420px;
}
.table-cnt_item--hasb {
  position: relative;
}
.table-cnt_item--hasb::before {
  content: "";
  display: block;
  width: 65px;
  height: 71px;
  background-image: url(/pc/landing/homeloan/share/img/badge.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: 5px;
}
.table-cnt_block--bo-b {
  border: 2px solid #007b94;
}
.table-cnt_item {
  width: 100%;
height: 100%;
text-align: center;
display: flex;
flex: 1;
flex-wrap: wrap;
justify-content: center;
align-items: center;

}
.table-cnt_item--row2 {
  flex: 2;
}
.table-cnt_item > * {
width: auto;
min-width: 70%;
}
.table-cnt_subhead_balloon {
  position: relative;
  font-size: 0.83em;
  background-color: #34a896;
  color: #fff;
  border-radius: 50px;
  padding: 4px 5px 1px;
}
.table-cnt_subhead_balloon::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  left: 0;
  margin: auto;
  
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 5px solid #34a896;
  border-bottom: 0;
  }

  .table-cnt_item_balloon {
    position: relative;
    font-size: 0.8em;
    background-color: #eb5505;
    color: #fff;
    border-radius: 6px;
    padding: 4px 5px 1px;
  }
  .table-cnt_item_balloon::before {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    margin: auto;
    
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 5px solid #eb5505;
    border-bottom: 0;
    }

@media only screen and (max-width: 640px){ 

    .table-cnt_head {
      font-size: 1.5em;
    padding: 15px;
    
    }
    .table-cnt_head > *{
      margin-right: 15px;
    }

    .table-cnt_head_balloon {
      border-radius: 50px;
      padding: 8px 25px 5px;
    }
    .table-cnt_c1 {
      font-size: 1.25em;
    }

    .table-cnt_block {
      height: 22.4vw;
      width: 25%;
      padding: 10px 0;
    }
    .table-cnt_c1--subhead .table-cnt_block {
  height: 26.67vw;
    }
    .table-cnt_block--col3 {
      height: 67.2vw;
    }

    .table-cnt_item--hasb::before {
      width: 10vw;
      height: 10.9vw;
      top: -20px;
      left: 5px;
    }
    .table-cnt_block--bo-b {
      border: 2px solid #007b94;
    }
    .table-cnt_item {
      width: 100%;
    height: 100%;
    font-size: 3.2vw;
  
    }
    .table-cnt_item > * {
    width: auto;
    min-width: 70%;
    }
    .table-cnt_subhead_balloon {
      font-size: 2.66vw;
      border-radius: 50px;
      padding: 4px 5px 1px;
    }
    .table-cnt_subhead_balloon::before {
      bottom: -5px;
      border-right: 8px solid transparent;
      border-left: 8px solid transparent;
      border-top: 5px solid #34a896;
      }
    
      .table-cnt_item_balloon {
        font-size: 2.13vw;
        border-radius: 6px;
        padding: 4px 3px 1px;
      }
      .table-cnt_item_balloon::before {
        bottom: -5px;
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
        border-top: 5px solid #eb5505;
        }
}


.bene_table {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #bcbdbd;
}
.bene_table_block {
width: 100%;
border-bottom: 1px solid #bcbdbd;
}
.bene_table_block:last-child {
  width: 100%;
  border-bottom: none;
  }
.bene_table_block--col2{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.bene_table_item {
  width: 100%;
padding: 15px;
}
.bene_table_block--col2 .bene_table_item {
  width: 30%;
}
.bene_table_block--col2 .bene_table_item:nth-child(2) {
  border-left: 1px solid #bcbdbd;
  width: 70%;
}
.bene_table_item--subn {
background-color: #eee;
}
.sec_content {
  margin-bottom: 15px;
}
.sec_content_loan {
  text-align: center;
  margin-top: 20px;
}
.sec_content_loan--col2 .sec_content_loan__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.sec_content_loan__title {
  width: 100%;
  font-weight: bold;
}
.sec_content_loan__col {
  position: relative;
  width: 40%;
  font-size: 18px;
}

.sec_content_loan__col--hasicon::after {
  content: "";
position: absolute;
top: 0;
bottom: 0;
right: -16%;
margin: auto;
width: 0;
height: 0;
border-style: solid;
border-right: none;
border-left: 30px solid #868686;
border-top: 30px solid transparent;
border-bottom: 30px solid transparent;
}
.sec_content_loan__sub {
  padding: 5px 20px;
    background-color: #34a896;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}
.sec_content_loan__text {
  font-weight:bold;
}
@media only screen and (max-width: 640px){ 
  .sec_content {
    margin-bottom: 4vw;
  }
  .sec_content_loan__col {
    position: relative;
    width: 100%;
    font-size: 4.8vw;
    margin-bottom: 10.7vw;
  }
  .sec_content_loan__col:last-child {
    margin-bottom: 0;
  }
  .sec_content_loan__col--hasicon::after {
    content: "";
  position: absolute;
  top: auto;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 30px solid #868686;
  border-bottom: none;
  }
}
.qa_title_net {
  color: #34a896;
  font-weight: bold;
  font-size: 24px;
}
@media only screen and (max-width: 640px){ 
  .qa_title_net {
    font-weight: bold;
    font-size: 5.33vw;
  }
}

.closed_area {
padding: 0 10px;
max-width: 868px;
margin: 0 auto 30px;
}
@media only screen and (max-width: 640px){ 
  .closed_area {
    padding: 0 4vw;
    margin: 0 auto 4vw;
  }
}
.cp-code {
  width: 868px;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 868px) {
  .cp-code {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .cp-code {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  
}



.fv_main_balloon--or {
  border-color: #eb5505;
  background-color: #fffbf1;
  font-weight: bold;
  color: #212426;
  padding: 10px 10px 10px 50px;
  display: inline-block;
    width: auto;
    margin-bottom: 40px;
  }
  .fv_main_balloon--or::before {
  border-right: 15px solid transparent;
border-left: 15px solid transparent;
border-top: 20px solid #eb5505;
border-bottom: 0;
  }
  .fv_main_balloon--or::after {
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 20px solid #fffbf1;
    border-bottom: 0;
  }
  @media only screen and (max-width: 868px) {
    .fv_main_balloon--or {
      padding: 2.66vw 1.33vw 2.66vw 8vw;
      margin-bottom: 8vw;
        }
  }
  @media only screen and (max-width: 640px) {
    .fv_main_balloon--or {
      padding: 2.66vw 1.33vw 2.66vw 8vw;
      margin-bottom: 8vw;
        }
  }

.hasicon_pen {
  position: relative;
}
.hasicon_pen::before {
  content: "";
  display: block;
  width: 23.5px;
  height: 36px;
  background-image: url(/pc/landing/homeloan/share/img/icon_pencil.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  margin: auto;
}
@media only screen and (max-width: 868px) {
  .hasicon_pen {
    font-size: 3.2vw;
  }
  .hasicon_pen::before {
    content: "";
    display: block;
    width: 6.26vw;
    height: 9.6vw;
    background-image: url(/pc/landing/homeloan/share/img/icon_pencil.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -6.4vw;
    margin: auto;
  }
}
@media only screen and (max-width: 640px) {
  .hasicon_pen {
    font-size: 3.73vw;
  }
  .hasicon_pen::before {
    content: "";
    display: block;
    width: 6.26vw;
    height: 9.6vw;
    background-image: url(/pc/landing/homeloan/share/img/icon_pencil.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -6.4vw;
    margin: auto;
  }
}
.cp-code_block {
  margin-bottom: 30px;
  padding: 10px 100px;
  display: inline-block;
  border: 3px solid #bcbdbd;
}
@media only screen and (max-width: 640px) {
  .cp-code_block {
    width: 100%;
    margin-bottom: 8vw;
    padding: 4vw;
    display: block;
  }
}
.content_code_acc_body {
  text-align: left;
}
.help-text-01 a {
  color: #eb5505;
  text-decoration: none;
}
.help-text-01 span {
  display: inline;
}

@media only screen and (min-width: 641px) {
a[href^="tel:"] {
	pointer-events: none;
}
}


/*month*/


@media only screen and (max-width: 640px) {
  .cp-code_block {
    width: 100%;
    margin-bottom: 8vw;
    padding: 4vw;
    display: block;
  }
}

.acc_title_whight.is-active {
border-bottom: 0;
}
.acc_body_whight {
  background-color: #fff;
  border: 2px solid #bcbdbd;
  padding: 20px;
  border-top: 0;
}
.btnlist__col2{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: baseline;
}

.btnlist__btn {
  position: relative;
  display: block;
  width: 48%;
  max-width: 100%;
  margin-top: 16px;
  padding: 18px 23px 14px 23px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: none;
  background-color: #212426;
  box-shadow: 0px 4px 0px 0px rgba(131, 130, 130, 0.15);
  border: 3px solid #212426;
  border-radius: 50px;
  cursor: pointer;
}
.btnlist__btn::before {
  content: "";
  background-image: none;
    background-repeat: no-repeat;
    background-size: contain;
    mask-image: url(/assets/img/icon__bullet--right_nprl.svg);
    background-color: rgb(255, 255, 255);
    width: 0.8em;
    height: 0.8em;
    right: 12px;
    left: auto;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background-position: -216px 0;
    position: absolute;
}
.btnlist__btn--41 {
  color: #fff;
  background-color: #007dbb;
  border-color: #007dbb;
}
.btnlist__btn--42 {
  color: #fff;
  background-color: #338800;
  border-color: #338800;
}
.btnlist__btn--44 {
  color: #fff;
  background-color: #586bc5;
  border-color: #586bc5;
}
.btnlist__btn--45 {
  color: #fff;
  background-color: #238081;
  border-color: #238081;
}
.btnlist__btn--mix {
  color: #fff;
  background-color: #3a6eba;
  border-color: #3a6eba;
}
.btnlist__btn--mix02 {
  color: #fff;
  background-color: #238165;
  border-color: #238165;
}
.fv_main_content--hl {
  background-color: #FFF5DD;
  padding: 15px 10px;
  border-radius: 10px;
  width: 100%;
  color: #535252;
}

@media only screen and (max-width: 640px){ 
  .btnlist__col2{
    flex-wrap: no-wrap;
  }
  .btnlist__btn {
    width: 100%;
    font-size: 18px;
  }
}



.content_m5_col2_icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content_m5_col2_icon_fc {
  width: 50%;
}
.content_m5_col2_icon_lc {
  width: 30%;
}
.content_m5_check_icon li {
  position: relative;
  padding-left: 28px;
  font-weight: bold;
}
.content_m5_check_icon li::before {
  content: "";
  display: block;
  width: 24px;
  height: 22px;
  position: absolute;
  background-image: url(/pc/landing/homeloan/share/img/icon_check_box.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 4px;
  left: 0;
  margin: auto;
}

@media only screen and (max-width: 640px) {
  .content_m5_col2_icon {
    justify-content: space-around;
  }
  .content_m5_col2_icon_fc {
    width: 60%;
  }
  .content_m5_check_icon li {
    padding-left: 4.8vw;
  }
  .content_m5_check_icon li::before {
    width: 4.26vw;
    height: 5.86vw;
    top: 2.13vw;
  }
}

.content_m5_copy {
display: flex;
justify-content: space-around;
align-items: center;
width: 464px;
margin: auto;
}
.content_m5_copy_text {
  border: #bcbdbd 1px solid;
width: 70%;
padding: 5px 10px;
text-align: left;
}
.content_m5_copy_button {
  background-color: #eb5505;
width: 30%;

}
.content_m5_copy_button button {
  position: relative;
  background: initial;
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 5px;
  padding-left: 30px;
  width: 100%;
  margin: auto;
}
.content_m5_copy_button button::before {
  content: "";
  display: block;
  width: 22px;
  height: 20px;
  position: absolute;
  mask-image: url(/pc/landing/homeloan/share/img/icon_copy.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
  top: 0;
  left: 15px;
  bottom: 0;
  margin: auto;
  background-color: #fff;
}
@media only screen and (max-width: 640px) {
  .content_m5_copy {
    width: 100%;
  }
  .content_m5_copy_button button { 
    padding: 5px;
    padding-left: 4vw;
  }
  .content_m5_copy_button button::before {
    left: 1vw;
  }

}