@charset "utf-8";

/* 住宅ローンの共通css */
/****************************************************************
 * 影響が大きいタグ
 ****************************************************************/
 /* webフォント読み込み中のみ非表示化*/
html.wf-loading {
  visibility: hidden;
}
body {
  color:#766971;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* textareaのフォントにはNoto Sans JPを使用しないように変更　textarea部分が文字化け暫定対応 */
textarea {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/****************************************************************
 * IE対策
****************************************************************/
/* 　Flexラップ* 縦か横を定義→横か縦を定義 */
.flex-wrap-x {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.flex-wrap-y {
  height: 100%;
  display: flex;
  flex-direction: column;
}

@-ms-viewport {
  width: device-width;
}

br {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック","MS PGothic", sans-serif;
}

/****************************************************************
 * ボタン
 * primary, secondaryはbootstrapで使っているので別名定義
 ****************************************************************/
.btn.active {
  transition: 0s; /*iOS対策*/
}

.btn-pri_first,.btn-pri_second {
  width:216px;
  height:50px;
  line-height: 34px;
  margin: 0.25rem;
  border-radius: 50rem;
}

/* 第一優先ボタン */
.btn-pri_first {
  position: relative;
  border-radius: 50rem;
  color: #fff;
  background-color: #19a3de;
  border: none;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  font-weight: bold;
  outline: none;
  overflow: hidden;
}
.btn-pri_first:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 0;
  height: 0;
  background-color: #7fccec;
  border-radius: 50rem;
  transition: 0.4s ease;
}
.btn-pri_first:hover {
  color: #fff;
}
.btn-pri_first:focus {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}
.btn-pri_first:hover:after {
  width: 216px;
  height: 216px;
}
.btn-pri_first span {
  position: relative;
  z-index: 1;
  color: #fff !important;
}
.btn-pri_first.disabled, .btn-pri_first:disabled {
  color: #fff;
  background-color: #e4e1e3;
  border: none;
  pointer-events: none;
}

@media (max-width: 575px) {
	.btn-pri_first.active {
		background-color: #7fccec;
	}
  .btn-pri_first:hover {
    background-color: #7fccec;
  }
  .btn-pri_first:hover:after {
    display: none;
  }
}

/* 第二優先ボタン */
.btn-pri_second {
  position: relative;
  display: inline-block;
  border-radius: 50rem;
  background-color: #fff;
  border: solid 2px #19a3de;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  padding-top: 5px;
  overflow: hidden;
}
.btn-pri_second:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 0;
  height: 0;
  background-color: #7fccec;
  border-radius: 50rem;
  transition: 0.4s ease;
}
.btn-pri_second:focus {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}
.btn-pri_second span {
  position: relative;
  color: #19a3de;
  z-index: 1;
  transition: 0.4s ease-out;
}
.btn-pri_second:hover span {
  color: #fff !important;
}
.btn-pri_second:hover {
  border: 2px solid #7fccec;
}
.btn-pri_second:hover:after {
  width: 216px;
  height: 216px;
}
.btn-pri_second.active {
  color: #fff;
  background-color: #19a3de;
  border-color: #19a3de;
  transition: 0s;
}
.btn-pri_second.disabled, .btn-pri_second:disabled {
  color: #19a3de;
  background-color: #fff;
  border: none;
  pointer-events: none;
}

@media (max-width: 575px) {
  .btn-pri_second:hover {
    background-color: #7fccec;
  }
  .btn-pri_second:hover:after {
    display: none;
	}
	.btn-pri_second:after {
		transition: 0s;
	}
}



/*選択ボタン*/
.btn-select {
  height: 50px;
  border: 2px solid transparent;
  width:100%;
  border-radius: 50rem;
  color: #196196;
  background-color: #ffffff;
  border-color: #F1F0F1;
  box-shadow: 0 0.3rem 0.1rem -0.1rem rgba(0, 0, 0, 0.15);
}
.btn-select:hover {
  color: #196196;
  background-color: #ffffff;
  border-color: #196196;
  box-shadow: 0 0 0 0.2rem rgba(25, 163, 222, 0.5);
}
.btn-select:active, .btn-select.active {
  color: #ffffff;
  background-color: #196196;
  border-color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(25, 163, 222, 0.5);
}
/* .btn-select.disabled, .btn-select:disabled {
  color: #19a3de;
  background-color: #ffffff;
} */

.btn-select:not(:disabled):not(.disabled):active, .btn-select:not(:disabled):not(.disabled).active,
.show > .btn-select.dropdown-toggle {
  color: #ffffff;
  background-color: #196196;
  border-color: #196196;
  box-shadow: none;
}

.btn-select:not(:disabled):not(.disabled):active:focus, .btn-select:not(:disabled):not(.disabled).active:focus,
.show > .btn-select.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(25, 163, 222, 0.5);
}

/*自動調整ボタン*/
.btn-adjust {
  position: relative;
  color: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  background: #E79960;
  border-radius: 50rem;
	font-size: 14px;
	font-weight: bold;
  height: 44px;
  width: 256px;
	border: none;
  outline: none;
  overflow: hidden;
}
.btn-adjust:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 50rem;
  transition: 0.4s ease;
}
.btn-adjust:hover {
  color: #E79960;
}
.btn-adjust:focus {
  outline: none;
}
.btn-adjust:focus:after {
  background: #E79960;
  transition: 0.4s;
}
.btn-adjust:hover:after {
  width: 256px;
  height: 256px;
}
.btn-adjust span {
  position: relative;
  color: #fff;
  z-index: 1;
  transition: 0.4s ease-out;
}
.btn-adjust:hover span {
  color: #E79960;
}
.btn-adjust:focus span {
  color: #fff;
  transition: 0.4s;
}

@media (max-width: 575px) {
  .btn-adjust:hover {
    background-color: #fff;
    transition: 0.4s;
  }
  .btn-adjust:hover:after {
    width: 0;
    height: 0;
  }
}

/* お借入れ希望額入力画面へ戻るボタン */
.btn-back_borrowing {
  margin-top:2rem;
  margin-bottom: 2rem;
  color: #196196;
  background-color: #ffffff;
  border: 1px solid #F1F0F1;
  border-radius: 50rem;
  font-size: 16px;
  font-weight: bold;
  height:50px;
  line-height: 19.2px;
  padding-top: 14.4px;
  padding-bottom:14.4px;
  padding-left: 2rem;
  padding-right: 2rem;
  box-shadow: 0 0.3rem 0.1rem -0.1rem rgba(0, 0, 0, 0.15);

}
.btn-back_borrowing:hover{
  color: #196196;
  background-color: #ffffff;
  border: 1px solid #F1F0F1;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-back_borrowing:focus {
  color: #ffffff;
  background-color: #196196;
  border: 1px solid #ffffff;
}
.btn-back_borrowing:disabled {
  color: #ffffff;
  background-color: #196196;
  border: 1px solid #ffffff;
  opacity: 0.3;
}


/****************************************************************
 * etc
 ****************************************************************/


/****************************************************************
 * 見出し
 ****************************************************************/
/* 大項目 */
.hedge-tag {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 1.65em;
  margin-bottom: 1.65em;
  color: #008ACF;
}
/* 中項目 */
/* .step-bar {
  color: #0099da;
  background-color: #e5edf3;
  border-color: #0099da;
  border-left: 5px solid;
  padding:0.5em 1em;
  text-align: left;
} */
/* 小項目 */
.subheading {
  color: #333333;
  background-color: #fff;
  font-weight: bold;
}
/*説明文*/
.exp-text{
	color: #766971;
  margin-top:0.75rem;
  font-size:0.75rem;
  line-height: 1.6;
}
.exp-text.job{
  margin-top:0.3rem;
  margin-left: 3px;
  font-weight: bold;
}
.exp-line{
  font-weight: bold;
  text-decoration: underline;
}
.exp-box{
  text-align: left;
}
span.text-danger.person {
  font-size:0.75rem;
}
/* .text-danger.exp-text.exp-line + p{
  margin:0;
} */
/* ページTOPへのリンク */
#link-box .footerPageTop {
  margin: -7px 0px;
  text-align: right;
}
#link-box .footer_style{
  font-size: 12px;
  text-decoration: none;
  text-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
}
#link-box a {
  padding-left: 13px;
  font-size: 12px;
  text-decoration: none;
  text-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
  /* background-image: url(/entry_loan_static/pc/images/common/icon_gototop_blue.gif); */
  background-image: url(../images/icon_gototop_blue.gif);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 7px 6.5px;
}
/* ヘッダー */
#header-box {
  height: 80px;
  max-width: 100%;
  display: flex;
}
#header-box .header-Inner {
  margin-top: 20px;
}
#header-box a{
  text-decoration: none;
}
/* フッター */
#footer-box .pc-inner{
  /* display: table; */
  /* clear: both; */
  /* margin: 0 auto; */
  padding-top: 10px;
  color: #666666;
  font-size: 10px;
}
#footer-box .footer-border{
  clear: both;
  width: 100%;
  /* background: url(/common/images/footer_dec_006.gif) repeat-x 0 0; */
  background: url(../images/footer_dec_006.gif) repeat-x 0 0;
}
#footer-box p{
  font-size: 10px;
  font-family: Arial;
}
#footer-box .pc-footer1 {
  padding-right: 20rem;
}
@media (max-width: 575px) {
  .exp-text{
    line-height: 1.6;
  }
  .exp-text.job{
    margin-left: 1.5em;
  }
  .exp-text + .text-danger.person{
    margin-top: 12px;
  }
  span.text-danger.person {
    display:block;
    margin-top: 12px;
  }
  #header-box {
    height: 44px;
  }
  #header-box .header-Inner {
    margin-left: -4.4px;
    margin-top: 8px;
  }
  #header-box .header-Inner img{
    max-width: 25%;
  }
  #header-box .header-Inner .img2 {
    max-width: 22%;
  }
  #header-box a{
    text-decoration: none;
  }
  #footer-box .text-style p{
    font-family: Arial;
    font-size: 10px;
  }
  #footer-box .sp-footer1 {
    padding: 10px;
    margin-bottom: 0px;
    background-color: #eeeeee;
    font-size: 10px;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
  }
  #footer-box .sp-footer2 {
    padding: 5px 0 5px;
    margin-bottom: -10px;
    /* background-image: url(/sp/common/images/footer_dec_01.png); */
    background-image: url(../images/footer_dec_01.png);
    background-repeat: repeat-x;
    background-position: 0 0;
    text-align: center;
    color: #ffffff;
    text-shadow: rgba(255, 255, 255, 0.3) 0 2px 2px;
    font-size: 9px;
  }
}


/****************************************************************
 * パネルデザイン
 ****************************************************************/
.panel {
  border: 1px solid #E4E1E3;
  border-radius: 4px;
  padding-bottom: 2.4rem;
  /* margin-bottom: 3rem; */
  margin: 3rem auto;
}
.panel:nth-of-type(3){
  margin-bottom: 3.62rem;
}
.panel.about-box{
  padding-bottom: 2.21rem;
}
.panel .box-header p{
  font-weight: bold;
  color: #008ACF;
  border-bottom: 2px solid #008ACF;
  padding: 0.78rem 1.5rem 1.05rem 1.43rem;
  margin-bottom: 1.7em;
}
.panel .preparation-row {
  position: relative;
  border: 1px solid #F1F0F1;
  margin-left: 1.45rem;
  margin-right: 1.45rem;
}


.panel .preparation-row:nth-child(n+3):nth-child(-n+7), .panel .preparation-row:nth-of-type(9){
  border-top: none;
}
.panel .preparation-row:nth-child(n+2):nth-child(-n+6), .panel .preparation-row:nth-of-type(8){
  border-bottom: none;
}
.panel .preparation-row:nth-child(n+2):nth-child(-n+7),.panel .preparation-row:nth-of-type(8){
  position: relative;
  border-bottom: 1px solid #F1F0F1;
  width: auto;
}
.panel .preparation-row:nth-child(n+3):nth-child(-n+7)::after,.panel .preparation-row:nth-of-type(9)::after{
  position: absolute;
  left: 0;
  top: -1px;
  z-index: 2;
  content: '';
  width: 249px;
  height: 1px;
  background-color: #fff;
}

.panel-box .box-header{
  margin-bottom: 2em;
}
.panel-box .preparation-row:nth-child(n+4):nth-child(-n+6) .row-data{
  padding-top: 1.5rem;
}
.panel-box .preparation-row .panel-item .row-data span:nth-child(3){
  margin-left: 0.5em;
  margin-top: 0.5em;
}
.panel-box .preparation-row:nth-child(5) .row-data .sub-text{
  padding-left: 5px;
}
.panel-box .preparation-row .row-data small {
  margin-top: 0.5em;
  font-size: 12px;
}
.panel-box .panel-item{
  display: flex;
  width: 818px;
  height: 118px;
} 
.panel-box .row-header img {
  height: 98px;
  width: 111px;
}
.panel .sub-head {
  margin-top: 1.7rem;
  margin-bottom: 1.2rem;
  margin-left: 1.4rem;
  font-size: 0.875rem;
  font-weight: bold;
}

.panel .preparation-row .row-header {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #E5F3FA;
  height: 100%;
  width: 249px;
}
/*
.panel .preparation-row .row-header:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #E4E1E3;
}
*/
.panel .preparation-row .row-header:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -13px;
  border: 13px solid transparent;
  border-left: 13px solid #E5F3FA;
}

.panel .preparation-row .row-data {
  /* border: 1px solid #707070; */
  padding-top: 2.06em;
  /* padding-bottom: 1em; */
  padding-left: 39px;
  width: 569px;
}
.panel .preparation-row  .main-text{
  color:#196196;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 2.8px
}
.panel .preparation-row  .sub-text{
  font-size: 14px;
  text-indent: -0.5em;
}
.panel .preparation-row .flex-wrap-y span:nth-child(3){
  font-size: 12px;
}
@media (max-width: 575px) {
  .box-margin {
    margin-bottom: 2em;
  }
  .panel {
    padding-bottom: 0.1rem;
  }
  .panel-box .panel-item{
    display: flex;
    flex-direction: column ;
    height:auto;
    width:auto;
  }
  .panel-box .panel-item img{
    height: 82px;
    max-width: 75px;
    width: 100%;
    /* margin: auto; */
  }
  .panel .preparation-row .row-header{
    border: none;
  }
  .panel .preparation-row .row-data{
    min-height: 106px;
    padding-top: 1.3em;
    padding-bottom: 1.2em;
    padding-left: 0.9em;
    padding-right: 0.9em;
    width: auto;
  }
  .panel .preparation-row  .main-text{
    /* font-weight: normal; */
    font-size: 14px;
    /* margin-left: 1rem; */
  }
  .panel-box .box-header {
    margin-bottom: 1.25em;
  }
  .panel .common-title, .panel .box-header p{
    /* font-weight: normal; */
    font-size: 14px;
    padding: 15px 0 15px 15px;
    margin-bottom: 1.35em;
  }
  .panel .preparation-row  .sub-text{
    /*margin-left: 1.1rem;*/
    /*font-weight:  normal;*/
  }
  .panel .preparation-row {
    margin-left: 0em;
    margin-right: 0em;
    border: none;
  }
  .panel .preparation-row:nth-child(n+2):nth-child(-n+5),.panel .preparation-row:nth-of-type(8){
    border-bottom: none;
  }
  .panel .preparation-row:nth-child(n+3):nth-child(-n+7)::after{
    content: none;
  }
  .panel .preparation-row .row-header{
    height: 98px;
    width: 100%;
  }
  .panel .preparation-row .row-header:before {
    top: auto;
    margin-top:auto;
    border-left: none;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #E5F3FA;
  }
  .panel .preparation-row .row-header:after {
    top: auto;
    margin-top:auto;
    border-left: none;
    bottom: -20px;
    left: 50%;
    margin-left: -13px;
    border: 10px solid transparent;
    border-top: 10px solid #E5F3FA;
  }
  .panel .border {
    border: 1px solid #F1F0F1;
  }
  .panel .sub-head {
    margin-bottom: 0.625rem;
    margin-left: -0.1em;
  }
}


/********************************************************************************************************************************
 * index画面
 ********************************************************************************************************************************/
.sp-br{
  display: none;
}
.pc-br{
  display:block;
}
.index-box .hedge-tag{
  margin-top: 2.2em;
  margin-bottom: 1.8em;
}
.index-box a:hover {
  color:#196196;
}
.index-box .pg-text{
  margin-bottom: 2.75rem;
  line-height: 1.4;
}
.pg-text{
  display: flex;
  justify-content: space-between;
  line-height: 1.4;
  color: #19A3DE;
  font-weight: bold;
  font-family: Roboto;
}
.pg-text span:nth-child(2){
  color: #196196;
}
.content-container.entry .pg-text{
  margin-bottom: 3rem;
}
.about-box .text-style {
  font-size: 12px;
  margin-left: 3.7rem;
  text-indent: -1em;
}
.about-box .indent {
  text-indent: -0.5em;
  margin-bottom: 1.9rem;
}
.about-box .indent-text .text-style{
  margin-left: 3.2rem;
}
.about-box .text-style:not(:nth-child(1)){
  margin-bottom: 1.9rem;
}
.about-box .text-style:nth-child(2) {
  margin-top: 0.8rem;
}
.about-box .common-title{
  font-size: 14px;
  font-weight: bold;
  text-indent: -2.5em;
  margin-left: 3em;
  margin-bottom: 0.73rem;
}
.about-box .common-title:last-of-type{
  margin-bottom: 0;
  text-indent: -3em;
  margin-left: 3.6em;
}
.about-box .common-title2{
  font-size: 14px;
  font-weight: bold;
  text-indent: -2.5em;
  margin-left: 3em;
  margin-bottom: 2rem;
}
.list-box .common-title{
  font-size: 14px;
  font-weight: bold;
  padding-left: 3px;
}
.about-box .row-data {
  margin-left: 1.02rem;
  margin-right: 12px;
}
.about-box .row-data ul {
  padding-left: 20px;
}
.about-box .sub-text li{
  font-size: 12px;
}
.about-box .main-text {
  font-size: 14px;
}

.about-box li {
  list-style-type: none;
  position: relative;
  padding-left: 0.5em;
}
.about-box li {
  padding-bottom: 12px;
}
.about-box li:before {
  /* border-radius: 50%; */
  /* width: 5px;
  height: 5px; */
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  /* left: -5px; */
  left: -10px;
  transform: rotate(45deg);
  top: 0.5em;
  content: "";
  background: #196196;
}

.link-page {
  color: #0099da;
  text-decoration: underline;
  padding-left: 26px;
}
.link-page.exacenter{
  font-size: 14px;
  margin-left: 2px;
}
/* .about-box .text-style .indent {
  text-indent: -2em;
  margin-left: 2em;
} */
/* .about-box .indent-text{
  margin-left: 1.8em;
} */
.about-box .indent-text:first-of-type{
  margin-top: 5px;
}
.about-box .row-data .indent {
  text-indent: -1em;
  margin-left: 1em;
}
.about-box .row-data .indent2 .text-style{
  margin-left: 5em;
}
@media (max-width: 575px) {
  .index-box .pg-text{
    margin-bottom: 1.7rem;
    line-height: 1.6;
  }
  .content-container.entry .pg-text{
    margin-bottom: 1.1rem;
  }
  .pg-text{
    font-size: 14px;
    margin-bottom: 0.75rem;
    line-height: 1.6;
  }
  .sp-br{
    display:block;
  }
  .pc-br{
    display:none;
  }
  .about-box .row-data {
    margin: 1.2rem;
  }
  .about-box .row-data .text-style{
    margin-left: 0.6em;
  }
  .about-box .row-data ul {
    padding-left: 10px;
  }
  .about-box li{
    margin-left: 0;
  }
  .about-box{
    line-height: 1.6;
  }
  .about-box .row-data .common-title2 {
    margin-bottom: 1.3rem;
    text-indent: -3em;
    margin-left: 2.4em;
  }
  .about-box .row-data .indent2 .text-style{
    margin-left: 0.5em;
  }
  .about-box .indent-text {
    margin-left: -0.6rem
  }
  .about-box .text-style:not(:nth-child(1)) {
    margin-bottom: 1.2rem;
    text-indent: 0;
  }
  .about-box .text-style:not(:nth-child(2)) {
    margin-bottom: 1.2rem;
    text-indent: 0;
  }
  .about-box .row-data .common-title {
    line-height: 1.4;
    padding: 0.6em 0 0 0;
    margin-left: 2.45em;
    margin-bottom: 0.9em;
    text-indent: -3em;
  }
  .about-box .row-data .indent-text .sub-text{
    margin-left: -15px;
    margin-bottom: 0.75rem;
  }
  .about-box .sub-text li:not(:nth-child(3)){
    padding-left: 0.8em;
    padding-bottom: 11px;
  }.about-box .sub-text li:nth-child(3) {
    padding-left: 0.8em;
  }
  .panel.about-box {
    padding-bottom: 0.32rem;
    margin-bottom: 0.74rem;
  }
  .link-page {
    padding-left: 16px;
  }
}
/* STEP */
/* バー式ステップ表示 */

/* PC版 */
#step_flow{
  margin-top: 1.7rem;
  margin-bottom: 4.48rem;
}
#step_flow .step{
  display: flex;
  width: 100%;
  list-style: none;
  overflow:hidden;
  padding: 0;
}
#step_flow ul{
  padding : 0;
}
#step_flow li:not(:first-of-type){
  padding-left: 10px;
}
#step_flow .step svg path{
  fill: #766971;
}
#step_flow .step .current, #step_flow .step .current svg path, #step_flow .step .current{
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #19A3DE;
}
#step_flow .step-item.current .step-text{
  margin-top: 16px;
}
#step_flow .step-item{
  position: relative;
  margin: 0px;
  height: 93px;
  width: 145px;
  background: #E5EDF3;
  color: #766971;
  text-align: center;
  font-size: 12px;
}
#step_flow .step-item:last-child{
  width: 153px;
}
#step_flow .step-item:nth-child(n+2) {
  margin-left: 1px;
}
#step_flow .step-item:not(:first-child)::before{
  content: "";
  position: absolute;
  top: -6px;
  left: 0px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 53px 0 53px 13px;
  z-index: 1;
}
#step_flow .step-item:not(:last-child):after{
  content: "";
  position: absolute;
  top: -6px;
  left: 141px;
  border-style: solid;
  border-color: transparent transparent transparent #E5EDF3;
  border-width: 53px 0 53px 13px;
  z-index: 2;
}
#step_flow .step .current:after{
  content: "";
  position: absolute;
  top: -6px;
  left: 141px;
  border-style: solid;
  border-color: transparent transparent transparent #19A3DE;
  border-width: 53px 0 53px 13px;
  z-index: 2;
}
#step_flow .step .step-inner{
  margin-top: 21px;
  margin-left: 13.06px;
}
#step_flow .step-item:nth-child(6) .step-inner{
  margin-left: 0px;
}
/*step text*/
#step_flow .step-item .text {
  line-height: 1;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
}
#step_flow .step-item .text span {
  position: relative;
  top: -2px;
  left: -4px;
  font-size: 16px;
}
#step_flow .step-item .text i {
  font-size: 24px;
}
#step_flow .step-item .step-text{
  margin-top: 11px;
  margin-left: -1px;
}
/* SP版 */
@media (max-width: 575px) {
  #step_flow{
    margin-top: 0.7rem;
    margin-bottom: 2.5rem;
  }
  #step_flow .step{
    display:block;
    list-style-type: none;
    top: 0;
    padding:0;
    margin:0;
  }
  #step_flow .step .step-item{
    margin: 0;
    padding:0;
    height: 72px;
    width: 100%;
  }
  #step_flow .step-inner svg + div{
    z-index: 3;
    position: relative;
  }
  #step_flow .step .step-item:nth-child(n+2){
    margin-top: 1.5px;
  }
  #step_flow .step .step-item::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 25.5px;
    left: 0;
    top: 0px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    border-width: 25px calc(50vw - 28px) 0px calc(50vw - 28px);
  }
  #step_flow .step .step-item::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 25.5px;
    left: 0;
    top: 72px;
    border-style: solid;
    border-color: #E5EDF3 transparent transparent transparent;
    border-width: 25px calc(50vw - 28px) 0px calc(50vw - 28px);
  }
  #step_flow .step .step-item.current::after {
    border-color: #19A3DE transparent transparent transparent;
  }
  #step_flow .step .step-item:first-child {
    height: 89px;
  }
  #step_flow .step .step-item:first-child::before {
    display: none;
  }
  #step_flow .step .step-item:first-child::after {
    top: 49px;
  }
  #step_flow .step .step-item:first-child {
    height: 49px;
  }
  #step_flow .step .step-item:last-child {
    height: 97px;
  }
  #step_flow .step .step-item:last-child::after {
    display: none;
  }
  #step_flow .step-item .step-inner{
    margin: 0;
  }
  #step_flow .step-item:first-child .step-inner{
    padding-top: 13px;
  } 
  #step_flow .step-item:first-child .step-inner .step-text{
    position: relative;
    margin: 0;
    z-index: 5;
  }
  /* #step_flow .step-item:first-child .step-inner{
    padding-top: 13px;
  } */
  #step_flow .step-item:nth-child(n+2) .step-inner{
    padding-top: 36.5px;
  }
  #step_flow .step-item:nth-child(n+2) .step-inner .step-text {
    position: relative;
    margin: 0;
    z-index: 5;
  }
  #step_flow .step-item.current .step-inner .step-text{
    margin-top: 8px;
  }
}
/* ここまで

/* かんたん審査 個人情報　同意事項*/
.kantan-sub{
  margin-bottom: 2rem;
  font-size: 20px;
  font-weight: bold;
}
.text-left .kantan-margin a, .pdf-box .pdf-text a, .foot-btn-box a{
  color: #007bff;
  text-decoration: none;
}
.text-left .kantan-margin {
  margin-bottom: 1rem;
}
/* PDFのリンク */
.text-left span.pdf-inner, .pdf-text span.pdf-inner, .foot-btn-box span.pdf-inner{
  text-decoration: underline;
  margin-left: 3px;
}
.text-left .kantan-margin :hover, .pdf-box .pdf-text :hover, .foot-btn-box :hover{
  color:#196196;
}
.kantan-margin a:hover svg path,.pdf-box a:hover svg path,.foot-btn-box a:hover svg path{
  fill:#196196;
}
.kantan-margin svg, .pdf-box svg, .foot-btn-box svg{
  margin-left: 5px;
  width: 20px;
  height: 20px;
}
.kantan-margin svg path, .pdf-box svg path, .foot-btn-box svg path{
  fill: #007bff;
}
.kantan-pdf{
  /* padding-left: 4px; */
  font-size: 14px;
  padding-left: 5px;
  color: #008acf;
}
.kantan-pdf:hover .icon_pdf {
  background-position: center -20px, center center;
}
.icon_pdf {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  vertical-align: sub;
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center -20px;
  background-image: url("../images/icon_pdf.svg"), url("../images/icon_pdf_on.svg");
  background-size: 20px 20px, 20px 20px;
}
/* ここまで */
.input-item{
  position: relative;
  margin-left: 20px;
}
#kantan_wrap, #kojin_wrap {
  display: block;
  width: auto;
  height: 270px;
  padding: 0 9px;
  line-height: 1.6;
  margin: 0;
  border: 1px solid #cccccc;
  overflow-y: scroll;
}
#kantan_wrap a{
  text-decoration: underline;
  color: #008acf;
  margin-left: 2em;
}
.wrap-title{
  margin-bottom: 1em;
}
#kantan_wrap,#kojin_wrap .val_kantan{
  font-size: 14px;
  padding-top: 10px;
}
.val_kojin{
  font-size: 12px;
  padding-top: 10px;
}
#kantan_wrap .last-text,#kojin_wrap .last-text{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1em;
}
#kantan_wrap .val_kantan{
  margin-right: 16px;
  margin-left: 16px;
}
#kantan_wrap .mgl-15{
  margin-left: 15px;
}
#kantan_wrap .mgl-10{
  margin-left: 8px;
}
#kantan_wrap ul {
  padding: 0;
  text-indent: -3.2em;
  margin-left: 3em;
}
#kantan_wrap li {
  list-style: none;
}
#kantan_wrap .text_indent {
  text-indent: -1.9em;
  margin-left: 2em;
  margin-bottom: 1em;
}

/* 個人情報の取り扱いに関する同意事項 */

#kojin_wrap {
  padding: 0 25px;
}
#kojin_wrap p{
  margin-bottom: 0;
}
#kojin_wrap div{
  margin-bottom: 5px;
}
#kojin_wrap .wrap_bottom{
  margin-bottom: 1rem;
}
#kojin_wrap .list_item{
  text-indent: -2rem;
  margin-left: 2rem;
  margin-top: 5px;
}
#kojin_wrap .list_item:first-of-type{
  margin-top: 1em;
}
#kojin_wrap .list_item:last-of-type{
  margin-bottom: 1em;
}
#kojin_wrap .kojin_indent{
  text-indent: -0.7rem;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
#kojin_wrap .kojin_indent:nth-child(3){
  text-indent: -0.8rem;
  margin-bottom: 0;
}
#kojin_wrap .main_title {
  font-weight: bold;
}
#kojin_wrap th {
  font-weight: normal;
}
#kojin_wrap table, td, th{
  border: 1px solid black;
  word-break: break-all;
}
#kojin_wrap thead {
  text-align: center;
}
#kojin_wrap tbody{
  text-align: left;
}
#kojin_wrap .text_center {
  text-align: center;
}
#kojin_wrap .indent_list {
  margin-left: 2.7em;
  margin-bottom: 1rem;
}
#kojin_wrap .indent_item {
  text-indent: -0.9em;
  margin-left: 1em;
}
@media (max-width: 575px) {
  #kantan_wrap,#kojin_wrap{
    padding: 10px 16px 0 16px;
    -webkit-overflow-scrolling: touch;
  }
  .kantan-sub{
    margin-bottom: 0.3rem;
    font-size: 14px;
    font-weight: bold;
  }
  #kantan_wrap .val_kantan{
    margin: 0;
  }
  .kantan-margin {
    margin-bottom: 0;
  }
  #kojin_wrap th {
    width:33%;
  }
  /* #kojin_wrap::-webkit-scrollbar{
    width: 8px;
  }
  #kojin_wrap::-webkit-scrollbar-track{
    background: #ffffff;
  }
  #kojin_wrap::-webkit-scrollbar-thumb{
    height: 3em;
    background: #ccc;
    border-radius: 10px;
    box-shadow: inset 0 0 0 2px #fff;
  } */
}



/* 確認画面 */
.complete-box .hedge-tag{
  margin-bottom: 3.6em;
  margin: 0 0 3.7em 0;
}
.complete-box .number-box{
  border: 2px dashed #F1F0F1; 
  border-radius: 3px;
  height: auto;
  width: 464px;
	margin: 0 auto;
}
.complete-box .number-text{
  margin-top: 24px;
  font-weight: bold;
  font-size: 1rem;
}
.complete-box .number-text2{
  font-size: 18px;
  padding-left: 4px;
}
.complete-box .memo-alert-text{
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.complete-box .text-box{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 43px;
  margin-left: 12px;
  margin-bottom: 2.45rem;
  font-size: 14px;
  line-height: 1.6;
}
.complete-box .text-notice{
	max-width: 620px;
}
.complete-box .qr-item{
  margin-top: 1.5rem;
}
.complete-box .exp-text{
  margin-top: 1.2rem;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 575px) {
  .complete-box .hedge-tag{
    margin-bottom: 3.6em;
    margin: 0 0 3.15em 0;
  }
  .complete-box .number-box{
    width: auto;
    margin: 0px 24px;
  }
  .complete-box .number-text{
    font-weight: normal;
    margin-top: 26px;
  }
  .complete-box .text-box{
    margin-top: 29px;
    margin-left: 0;
    margin-bottom: 0.7rem;
    font-size: 12px;
  }
  .complete-box .exp-text{
    margin-bottom: 1em;
  }
  .complete-box .exp-text .text-danger{
    margin-bottom: 0;
  }
  .complete-box .btn-box{
    margin: 0px 49px;
  }
  .complete-box .btn-text{
    padding-top: 7px;
    padding-left: 3px;
}
}
/* ここまで */
/****************************************************************
 * textarea風レイアウト
 ****************************************************************/

/****************************************************************
 * 個人情報の取り扱いに関する同意事項
 ****************************************************************/
.privacy-box .head {
  font-size:1.375rem;
}
.privacy-box .text {
  color: #dc3545 ;
  /* text-decoration: underline; */
  margin-top:0.5rem;
  margin-bottom: 1rem;
  font-size:0.75rem;
}
@media (max-width: 575px){
  .privacy-box .head {
    font-size: 0.9375rem;
  }
  .privacy-box .text {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}
.privacy-box > div {
  text-align: center;
}
.privacy-box .btn-box {
  max-width: 12rem;
  width: 100%;
  margin: 0.5rem;
}

.privacy-box .btn-box > input[type=radio] {
  position: absolute;
  visibility: hidden;
}

.privacy-box .btn-box > input[type=radio] + .btn-agree:hover {
	border: solid 2px #196196;
}

.privacy-box .btn-box > input[type=radio] + .btn-agree:focus {
	border: solid 2px #196196;
}

.privacy-box .btn-box > input[type=radio] + .btn-agree {
  width: 100%;
  padding: 12px 0;
  border-radius: 50rem;
  color: #196196;
  background-color: #fff;
  border: 2px solid #fff;
  /*box-shadow: 0 0.3rem 0.1rem -0.1rem rgba(0, 0, 0, 0.15);*/
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	font-weight: bold;
}
.privacy-box .btn-box > input[type=radio]:disabled + .btn-agree {
  color: #fff;
  background-color: #E4E1E3;
  border-color: #E4E1E3;
  cursor:not-allowed;
}
.privacy-box .btn-box > input[type=radio]:checked + .btn-agree {
  color: #F1F0F1;
  background-color: #196196;
  border: 2px solid #196196;
}
.pdf-box .pdf-item:first-child{
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center
}
.pdf-box{
  width: auto;
}
.pdf-box .pdf-text{
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
}
.pdf-text .sp-right{
  margin-top: 1rem;
}
.pdf-box .pdf-item{
  margin-left: 5em;
}
@media (max-width: 575px){
  .pdf-box .pdf-text{
    flex-direction: column-reverse;
  }
  .pdf-box .sp-right{
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
  }
  .pdf-text a{
    margin-top: 0.5em;
  }
  .pdf-box .pdf-item{
    margin-left: 0;
  }
  .pdf-box .pdf-item:first-child{
    font-size: 14px;
    margin-top:10px;
    margin-bottom: 1em;
  }
}

/* @media (max-width: 575px) {
  .buttons-box .btn-outline .text,
  .buttons-box .btn-select .text{
    height: calc(14.4px * 2);
    font-size: 12px;
    line-height: 14.4px;
  }
  .buttons-box .btn-outline .text-few,
  .buttons-box .btn-select .text-few {
    font-size: 12px;
    line-height: 14.4px;
  }
} */


/********************************************************************************************************************************
 * 各種ボタンのレイアウト
 ********************************************************************************************************************************/
.buttons-box {
  text-align: center;
  /* background-color: #f8f7f8; */
}

/* .buttons-box > div {
  
} */
.buttons-box .btn-box {
  max-width: 12rem;
  width: 100%;
  margin: 0.5rem;
}

.buttons-box .btn-box input[type=radio] {
  position: absolute;
  clip: rect(0,0,0,0);
  pointer-events: none;
}

.buttons-box .btn-box input[type=radio] + .btn-radio {
  min-height: 38.4px;
  border-radius: 50rem;
  border-color: #F1F0F1;
  box-shadow: 0 0.3rem 0.1rem -0.1rem rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  width: 13em;
  font-size: 16px;
  color: #196196;

  display: flex;
  flex-direction: column;
  justify-content: center;

}
.buttons-box .btn-box input[type=radio]:checked + .btn-radio {
  color: #F1F0F1;
  background-color: #196196;
  border-color: #F1F0F1;
  box-shadow: none;
}
.buttons-box .btn-box input[type=radio]:hover + .btn-radio,
.buttons-box .btn-box input[type=radio]:focus + .btn-radio {
  box-shadow: 0 0 0 0.2rem rgba(25, 163, 222, 0.5);
}
.buttons-box .btn-box input[type=radio]:disabled + .btn-radio {
  color: #FFFFFF;
  background-color: #E4E1E3;
  border-color: #E4E1E3;
}

@media (max-width: 575px) {
  .buttons-box .btn-box
   {
    max-width: 100%;
  }
  .buttons-box .btn-box input[type=radio] + .btn-radio{
    width: 100%;
    height: calc(14.4px * 2);
    font-size: 12px;
    /* line-height: 14.4px; */
  }
}

/****************************************************************
 * お問い合わせboxデザイン
 ****************************************************************/
.contact-container {
  /* padding-bottom: 3em; */
  /* padding-top: 2em; */
  color: #196196;
}
.contact-container img {
  width: 80%;
}

/****************************************************************
 * 背景色
 ****************************************************************/
.bg-head {
  background-color: #19a3de;
}
.bg-content {
  background-color: #f8f7f8;
}

/****************************************************************
 * 境界線
 ****************************************************************/
 .line-seiran {
  border-top: 5px #196196 solid;
}
hr.responsive-line {
  border-top: 2px solid #f8f7f8;
}

/****************************************************************
 * 余白
 ****************************************************************/
.w-10 {
  width:10% !important;
}
.ml-sm-few {
  margin-left: 10% !important;
}
.mr-sm-few {
  margin-right: 10% !important;
}

/********************************************************************************************************************************
 * その他
 ********************************************************************************************************************************/
.responsive-ssl-box {
  /* margin-top: -2rem;   上の要素で調整します*/
  border: solid 1px #dadada;
  border-radius: 5px;
  width: 980px;
  height: 136px;
}
.ssl-item {
  display: flex;
}
.responsive-ssl-box .ssl-header {
  background-color: #ededed;
  /* margin: 0.5em; */
}
.responsive-ssl-box .ssl-img {
  /* border-right: solid 1px #dadada; */
  width: 130px;
  height: 88px;
  margin: 23px 51px;
  text-align: center;
}
.responsive-ssl-box .borders{
  border-right: solid 1px #dadada;
  margin: 20px 0;
}
.responsive-ssl-box .ssl-txt{
  /* border: solid 1px #dadada; */
  margin: 33px 67px 0px 48px;
  word-break: break-all;
  width:100%;
  height:auto;
}
.responsive-ssl-box .ssl-txt01{
  font-size: 14px;
  margin-bottom: 12px;
}
.responsive-ssl-box .ssl-txt02 {
  /* font-size: 85% */
  font-size: 12px;
}
.relative-container{
  position: relative;
  /* top: -4.8rem; 上の要素で調整します*/
}
@media (max-width: 575px) {
  .responsive-ssl-box{
    width: auto;
    height: 100%;
  }
  .responsive-ssl-box .ssl-item {
    display: flex;
    flex-direction: column;
    width: auto;
  }
  .responsive-ssl-box .ssl-img img{
    max-width: 100px;
  }
  .responsive-ssl-box .ssl-img {
    max-width: 100px;
    height: 100%;
    border-right: none;
    margin: 20px 0 8px 0;
  }
  .responsive-ssl-box{
    width: auto;
  }
  .responsive-ssl-box .borders{
    display: none;
  }
  .responsive-ssl-box .ssl-txt {
    width: auto;
    margin-top: 0;
    margin-left: 1rem;
    margin-right: 1.2rem;
    line-height: 1.6;
}
  .responsive-ssl-box .ssl-txt .ssl-txt01{
    font-size: 12px;
    margin-bottom: 0.85em;
  }
}


.foot-print-text {
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .foot-print-text {
    text-align: left;
  }
}

/********************************************************************************************************************************
 * svg-box風のレイアウト
 ********************************************************************************************************************************/
.buttons-box {
  margin-bottom: 1em;
}
.buttons-box .btn-outline {
  color: #196196;
  background-color: #fff;
  border-color: #c0c0c0;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
}
.buttons-box .btn-outline.wh-auto {
  height: auto;
  width: auto;
}
.buttons-box .btn-outline:hover {
  color: #196196;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.buttons-box .btn-outline:focus, .btn-outline.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.buttons-box .btn-outline .text,
.buttons-box .btn-select .text {
  min-height: calc(19.2px * 2);
  margin-top:0.5em;
  margin-bottom: 0.5em;
  font-size: 16px;
  line-height: 19.2px;
}
.buttons-box .btn-outline .text-few,
.buttons-box .btn-select .text-few {
  min-width: 10em;
  margin-top:0.5em;
  margin-bottom: 0.5em;
  font-size: 16px;
  line-height: 19.2px;
}

/*クリック後*/
.buttons-box .btn-outline:not(:disabled):not(.disabled):active, .btn-outline:not(:disabled):not(.disabled).active,
.buttons-box .show > .btn-outline.dropdown-toggle {
  color: #fff;
  background-color: #196196;
  border-color: #17a2b8;
}
.buttons-box .btn-outline:not(:disabled):not(.disabled):active svg path,
.buttons-box .btn-outline:not(:disabled):not(.disabled).active svg path {
  fill: #fff;
}


@media (max-width: 575px) {
  .buttons-box .btn-outline .text,
  .buttons-box .btn-select .text{
    height: calc(14.4px * 2);
    font-size: 12px;
    line-height: 14.4px;
  }
  .buttons-box .btn-outline .text-few,
  .buttons-box .btn-select .text-few {
    font-size: 12px;
    line-height: 14.4px;
  }
}

#del_addition {
  /* btnのレイアウトはbootstrap .btnを使う */
  color: white;
  cursor: pointer;
}
/********************************************************************************************************************************
 * 埋め込みsvgのcss
 ********************************************************************************************************************************/
.svg-box {
  margin-bottom: 1em;
}
.svg-box .btn-outline-svg {
  color: #196196;
  background-color: #fff;
  border-color: #c0c0c0;
  max-width: 256px;
}
.svg-box p {
  max-width: 256px;
}
.svg-box .btn-outline-svg:hover {
  color: #196196;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.svg-box .btn-outline-svg:focus, .btn-outline-svg.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.svg-box .btn-outline-svg svg{
  width: 100%;
  height:100px;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.svg-box .btn-outline-svg svg path {
  fill: #196196;
}
.svg-box .btn-outline-svg .svg-text {
  height: calc(19.2px * 2);
  margin-top:0.5em;
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 19.2px;
}

/*クリック後*/
.svg-box .btn-outline-svg:not(:disabled):not(.disabled):active, .btn-outline-svg:not(:disabled):not(.disabled).active,
.svg-box .show > .btn-outline-svg.dropdown-toggle {
  color: #fff;
  background-color: #196196;
  border-color: #17a2b8;
}
.svg-box .btn-outline-svg:not(:disabled):not(.disabled):active svg path,
.svg-box .btn-outline-svg:not(:disabled):not(.disabled).active svg path {
  fill: #fff;
}


@media (max-width: 575px) {
  .svg-box .btn-outline-svg .svg-text {
    height: calc(14.4px * 2);
    font-size: 12px;
    line-height: 14.4px;
  }
}

/********************************************************************************************************************************
 * 確認画面のレイアウト
 ********************************************************************************************************************************/
.confirm-box {
  /* margin-top: 3.125rem; */
  margin-bottom: 2.9rem;
  word-break: break-all;

}
.confirm-box .head{
  text-decoration: underline;
  margin-bottom: 1.45rem;
  color: #196196;
  font-size: 22px;
  line-height: 1.2;
  font-weight: bold;
}
.confirm-box .d-sm-table {
  margin: 0.7em 0;
  width:100%;
}
.confirm-box .d-sm-table .d-sm-table-row {
  /* height: 44px; */
  margin-bottom: 1rem;
}


.confirm-box .label {
  background-color: #F1F0F1;
  border: 1px solid #F1F0F1;
  border-right: none;
  width: 43.27%;
  /* height: 44.5px; */
  height: 46px;
}
.confirm-box .label-text{
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
  margin-left: 1.7em;
}
.confirm-box .d-sm-table-row:not(:last-of-type) .label{
  border-bottom: 1px solid #fff;
}
.container .confirm-box .d-sm-table-row .label.sub-bottom{
  border-bottom: 1px solid #F1F0F1;
}
.confirm-box .data {
  border: 1px solid #F1F0F1;
  border-left: none;
  width: 57%;
  height: 44.5px;
}
.container .confirm-box .d-sm-table-row .data.sub-top{
  border-top: 1px solid #F1F0F1;
}
.confirm-box .d-sm-table-row:nth-of-type(n+2) .data {
  border-top: none;
}
.confirm-box .data-text {
  line-height: 1.4;
  font-size: 14px;
  margin-left: 1.7em;
}
/* .confirm-box .d-sm-table .sub-head {
  /* border: 1px solid #e5edf3; */
  /* border-top: 1px solid #fff; */
  /* border: none; */
  /* padding: 0.75em 1.5em; */
  /* padding: 0.75em 0.75em;
  color: #008ACF;
  background-color: #fff;
  font-weight: bold; */
  /* background-color: #e5edf3; */
/* } */

.confirm-box p.sub-head{
  background-color: #fff;
  color: #008ACF;
  font-weight: bold;
  border: none;
  margin-bottom: 0;
  margin-left: 10px;
}


.confirm-box .btn-edit {
  /*box-shadow: 0 0.25rem 0.75rem 0rem rgba(0, 0, 0, 0.10);*/
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  border: 2px solid #F1F0F1;
  border-radius: 50rem;
  padding: 0.536em 2em;
  font-size: 14px;
  font-weight: bold;
  color: #008ACF;
}
.confirm-box .btn-edit:hover {
  color: #196196;
  background: #f1f0f1;
  /* box-shadow: 0 0.25rem 0.75rem 0rem rgba(25, 163, 222, 0.5); */
}
.confirm-box .btn-edit:focus {
  border-color: #F1F0F1;
  background-color: #F1F0F1;
}
@media (max-width: 575px) {
  .confirm-box {
    margin-top: 1.8rem;
    margin-bottom: 2.2rem;
  }
  .confirm-box .head{
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 16px;
    font-weight: normal;
  }
  /* .confirm-box .d-sm-table-row .sub-head{
    padding: 0.1em 0.5em;
  } */
  .confirm-box p.sub-head{
    margin-top: 10px;
    font-size: 15px;
  }

  .confirm-box .d-sm-table{
    margin-top: 0.7em;
  }
  .confirm-box .d-sm-table .d-sm-table-row{
    margin-bottom: 0.8em;
  }
  .confirm-box .d-sm-table-row:nth-of-type(n+2) .label{
    border-top: 1px solid #F1F0F1;
  }
  .confirm-box .d-sm-table-row:not(:last-of-type) .label{
    border-bottom: 0;
  }
  .confirm-box .d-sm-table-row:nth-child(n+2) .data {
    border-top: 1px solid #F1F0F1;
    border-left: 1px solid #F1F0F1;
  }
  .confirm-box .label{
    width: auto;
    height: 100%;
  }
  .confirm-box .label-text{
    font-weight: normal;
    padding: 14px 1em 9px 1em;
    margin-left: 0;
    min-height: 44px;
  }
  .confirm-box .data{
    width: auto;
    height: 100%;
    border-left: 1px solid #F1F0F1;
  }
  .confirm-box .data-text{
    padding: 14px 1em 9px 1em;
    margin-left: 0;
    min-height: 44px;
  }
}


/********************************************************************************************************************************
 * form.cssからもってきたcss
 ********************************************************************************************************************************/
 .foot_gototop {
	text-align: right;
	margin-bottom: 20px;
}
.foot_gototop a {
	display: inline-block;
	background:url(../images/common/icon_gototop_red.gif) no-repeat 0 center;
	height: 13px;
	line-height: 13px;
	padding: 0 0 0 12px;
	*display: inline;	/* IE7 inline-block */
	*zoom: 1;			/* IE7 inline-block */
}


/********************************************************************************************************************************
 * frame.cssからもってきたcss
 ********************************************************************************************************************************/
.iframe-content-header {
  position: relative;
  /* width: 100%; */
  height:85px;
}
.iframe-content-conv {
  position: relative;
  width: 100%;
  height:230px;
}
.iframe-content-footer {
  position: relative;
  width: 100%;
  height: 40px;
}
/* iframe{
  margin:0;
  padding:0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
} */
.iframe-content-header iframe{
  height:85px;
  /* width:100%; */
}
.iframe-content-conv iframe{
  /* top: -20px; */
  height:230px;
  width: 100%;
}
.iframe-content-footer iframe{
  /* top: -20px; */
  height:80px;
  width: 100%;
}

/********************************************************************************************************************************
 * sp用レスポンシブ
 ********************************************************************************************************************************/
/* bootstrap 4 xsサイズ以下と同一*/
/* もしpcとspが完全に切り分けされるなら@media消せばOK */
@media (max-width: 575px) {
  .responsive-footer .credit{
    background-color: #eeeeee;
    font-size: 10px;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.3) 0 1px 1px;
  }
  .responsive-footer .copyright{
    background-color: #007bff;

    text-align: center;
    color: #ffffff;
    text-shadow: rgba(255, 255, 255, 0.3) 0 2px 2px;
    font-size: 9px;
  }
  .text-xs-only-center {
    text-align: center;
  }
  hr.responsive-line {
    margin-left: -15px;
    margin-right: -15px;
  }

  #ssl .responsive-ssl-box {
    border: solid 3px #1d1111;
    border-radius: 0;
  }
  #ssl .responsive-ssl-box .ssl-txt01{
    font-size: 13px;
  }
  #ssl .responsive-ssl-box .ssl-txt02 {
    font-size: 13px;
  }
  .hedge-tag {
    /* font-size:32px; */
    font-size: calc(2em / 2);
    font-weight: normal;
    margin-top: 0.965em;
    margin-bottom: 0.965em;
  }

  .relative-container{
  position: relative;
  }



  .ml-sm-few {
    /* margin-left:  calc(16 / 375) !important; */
    margin-left: 16px !important;
  }
  .mr-sm-few {
    margin-right: 16px !important;
  }

}

/* progress.jsレイアウト */
.hensai_balance {
	color: #766971;
	font-size:18px;
	font-weight:bold;
	margin-top: 30px;
}

#hensai_val {
	font-size:300%;
	font-weight:bold;
	width:104px;
  color:#f1f0f1;
}

.hensai_burden {
	color: #766971;
	font-weight: bold;
}

.burden {
	width:5em;
	color: #c8c3c6;
}

#pg_hensai_hiritu {
	height: 8px;
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.partition_wrap {
	position: absolute;
	top: 25%;
	left: auto;
	width: 100%;
	height: 100%;
	display: block;
	font-size: 0;
}

.partition_wrap span:last-child {
	border-right: none;
}

.partition {
	width: calc(100% / 10);
	height: 100%;
	display: inline-block;
	border-right: solid 2px #fff;
	background: #f1f0f1;
}

/* セレクトボックスのスタイル */
select {
	/* display: none!important; */
	opacity: 0;
	width: 1px;
	position: absolute;
  top: 0;
  left: 0;
	/*right: 1000;*/
	pointer-events: none;
}

.current {
	line-height: 0!important;
	margin-left: 12px;
	white-space: normal!important;
}

.d-flex {
	position: relative;
}

.d-inline-flex {
	width: 100%;
}

.flex_row_column {
  display: flex;
  width: 100%;
}
@media (max-width: 575px) {
  .flex_row_column {
    flex-direction: column;
  }
}

.drop_err {
	/*border: 2px solid #dc6d8e !important;*/
  position: relative;
}
.drop_err::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border: 2px solid #dc6d8e;
  border-radius: 6px;
  pointer-events: none;
}

.dropdown {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
  background-color: #fff;
  border-radius: 4px !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.0075);
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: normal;
	height: auto;
  line-height: 42px;
  outline: none;
/* 2022/02/18 BOY_0138-282 住宅ローンの一部改定について（東証改革対応分）
  padding-left: 18px;
  padding-right: 30px;
 */
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
}
.dropdown:focus {
  background-color: #f8f7f8;
}
/*
.dropdown:focus {
  background-color: #f1f1f1;
}
.dropdown:active, .dropdown.open {
  background-color: #f0f0f0 !important;
  border-color: #e4e4e4;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
}
*/
.dropdown:after {
  height: 0;
  width: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #196196;
  /*-webkit-transform: origin(50% 20%);*/
          /*transform: origin(50% 20%);*/
  transition: all 0.125s ease-in-out;
  content: '';
  display: block;
  margin-top: -2px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  border-radius: 4px;
}
.dropdown.open:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.dropdown.open .list {
  /*-webkit-transform: scale(1);*/
          /*transform: scale(1);*/
  width: 100%;
  opacity: 1;
	pointer-events: auto;
  height: auto;
	max-height: 300px;
	overflow-y: scroll;
}
.dropdown.open .list ul {
  padding-left: 0; /*IE*/
	padding-inline-start: 0;
}
.dropdown.open .option {
  cursor: pointer;
}
.dropdown.open .option {
  /* リストの区切り兼iOSの幅バグ対応 */
  border-bottom: solid 1px #c8c3c6;
}
.dropdown.wide {
  width: 100%;
}
.dropdown.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.dropdown .list {
  box-sizing: border-box;
  /*transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;*/
  /*-webkit-transform: scale(0.75);*/
          /*transform: scale(0.75);*/
  /*-webkit-transform-origin: 50% 0;*/
          /*transform-origin: 50% 0;*/
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
  background-color: #fff;
  border-radius: 6px;
  margin-top: 4px;
  padding: 3px 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  max-height: 300px;
  left: 0;
	z-index: 999;
}
.dropdown .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.dropdown .option {
  cursor: default;
  font-weight: 400;
  line-height: 40px;
  outline: none;
	/* padding-right: 29px; */
	padding-right: 0px;
	padding-left: 15px;
  text-align: left;
	transition: all 0.2s;
	list-style: none;
  text-indent: 0;
  width: 100%;
}
.dropdown .option:hover, .dropdown .option:focus {
  background-color: #f6f6f6 !important;
}
.dropdown .option.selected {
  font-weight: 600;
}
.dropdown .option.selected:focus {
  background: #f6f6f6;
}

@media (max-width: 575px) {
	.d-flex {
		width: 100%;
	}

	.dropdown {
		width: 100%;
		text-indent: -15px;
    padding-left: 18px;
    padding-right: 30px;
	}

	/* .entry-box .entry-row .col-sm-right span {
		margin-left: 16px !important;
		white-space: nowrap;
	} */

	.dropdown.open .list {
		width: 100%;
	}
}

.h85 {
  height: 85px !important;
}

/*
** progress bar css
*/
.progress_bar {
  padding: 40px 0 11px;
}
.progress_inner {
  width: 100%;
  height: 6px;
  background: #e4e1e3;
  border-radius: 3px;
  overflow: hidden;
}
.progress_inner span {
  display: block;
  width: 0;
  height: 100%;
  background: #0099da;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  transition: width 0.5s ease-in-out;
  will-change: width;
}
@media (max-width: 575px) {
  .progress_bar {
    padding: 32px 0 6px;
  }
  .progress_inner {
    height: 4px;
  }
}

.badge_hide {
	opacity: 0;
}
