/* entry_v1 ======================== */
.box_title {
  margin: 40px auto 17px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
.c_box_vdbit {
  padding: 40px 30px;
  background: #F5F5F5;
}
.flow_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 30px 40px 34px;
  background-color: #fff;
  position: relative;
}
.flow_list li p:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-basis: 64px;
  height: 64px;
  background-color: #00B8EF;
  border-radius: 6px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.2;
}
.flow_list li p:nth-of-type(1) :last-child {
  font-size: 2.3rem;
}
.flow_list li p + p {
  flex-basis: 457px;
  line-height: 200%;
}
.flow_list li img {
  width: 78px;
}
.flow_list li:not(:last-of-type) {
  margin-bottom: 40px;
}
.flow_list li:not(:last-of-type)::after {
  content: "";
  width:0;
  height:0;
  margin-left: -29.5px;
  border-style:solid;
  border-width: 19px 31px 0 31px;
  border-color: #DBDBDB transparent transparent transparent;
  position: absolute;
  bottom: -29px;
  left: 50%;
}
.btn_inline {
  margin-right: .6em;
  margin-bottom: .4em;
  padding: .6em .6em .6em 1.6em;
  background-color: #1273DD;
  border-radius: 4px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  transition: .3s;
}
.btn_inline::after {
  content: "";
  display: inline-block;
  margin-left: 1em;
  width: 5px;
  height: 5px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: relative;
}
.line_h01 {
  line-height: 2.1;
}

/* table ----------------- */
table.sp_style01 th {
    width: 30%;
}
table.sp_style01 td {
    width: 70%;
}


/* consent_area ----------------- */
.consent_area {
  margin: 35px auto;
  padding: 55px 75px;
  background-color: #F7F7F7;
}
.consent_box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  border: 1px solid #878787;
  border-radius: 6px;
  background-color: #E8E8E8;
  font-size: 1.8rem;
  cursor: pointer;
  transition: .3s;
}
.dbc .consent_box{
  background: #F26820;
  border: 1px solid #F26820;
  color: #fff;
}
.dbc .input_style01_chk {
  border: none;
}
.input_style01 {
  margin: 0;
  width: 0;
  opacity: 0;
}
.consent_box:hover > .input_style01_chk {
  /* background: #DDDDDD !important; */
  border: solid 2px #333333;
  transition: .3s;
}
.input_style01:focus + .input_style01_chk {
  /* background: #DDDDDD !important; */
  border: solid 2px #333333;
}
.input_style01:checked + .input_style01_chk {
  border: solid 2px #333333;
  background: #FFFFFF;
}
.input_style01:checked + .input_style01_chk::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 5px;
  border-left: 3px solid #2A2A2A;
  border-bottom: 3px solid #2A2A2A;
  transform: rotate(-45deg);
}
.input_style01_chk {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  margin-left: 10px;
  margin-right: -10px;
  border: 1px solid #878787;
  border-radius: 4px;
  background-color: #fff;
}
.entry_action {
	width: 378px;
  margin: auto;
  position: relative;
}
.entry_action::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
.entry_action input {
  width: 100%;
  height: 80px;
  line-height: 80px;
  background-color: #1273DD;
  border-radius: 6px;
  color: #fff;
	font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
	cursor: pointer;
  transition: .3s;
}
.entry_action input:disabled + span {
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #BEBEBE;
  border-right: 3px solid #BEBEBE;
  transform: rotate(45deg);
  z-index: 2;
}
.entry_action input:disabled {
	background-color: #E8E8E8;
  color: #BEBEBE;
  pointer-events : none;
  transition: .3s;
}

@media screen and (max-width: 768px){

  /* entry_v1 ======================== */
  .box_title {
    margin: 34px auto 15px;
    padding: 0 20px;
    font-size: 2.2rem;
    text-align: left;
  }
  .c_box_vdbit {
    padding: 32px 10px;
  }
  .flow_list li {
    flex-wrap: wrap;
    padding: 25px 20px;
  }
  .flow_list li p:nth-of-type(1) {
    flex-direction: row;
    flex-basis: 100%;
    height: 42px;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  .flow_list li p:nth-of-type(1) :last-child {
    font-size: 2.1rem;
    margin-left:.8em;
  }
  .flow_list li p + p {
    flex-basis: 72%;
    line-height: 1.8;
    font-size: 1.5rem;
  }
  .flow_list li img {
    width: 70px;
  }
  .flow_list li:not(:last-of-type) {
    margin-bottom: 42px;
  }
  .flow_list li:not(:last-of-type)::after {
    margin-left: -22.5px;
    border-width: 15px 45px 0 45px;
    bottom: -29px;
  }

  
  /* table ----------------- */
  table.type04.sp_style01{
    width: 100%;
  }
  table.sp_style01 th, 
  table.sp_style01 td {
    display: block;
    width: 100%;
  }


  /* consent_area ----------------- */
  .consent_area {
    margin: 40px auto;
    padding: 35px;
    background-color: #F7F7F7;
  }
  .consent_box {
    height: 72px;
    border-radius: 4px;
    font-size: 1.8rem;
  }
  .entry_action {
    width: 100%;
  }
  .entry_action input {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 1.5rem;
  }

}
.mt10{margin-top: 10px;}
.mt24{margin-top: 24px;}

/**202312add*/
.new_box_title {margin-top: 36px; font-size: 2.4rem; text-align: center;}
.b_t_sp01 {font-size: 3.4rem; color: #0773DD; position: relative; font-weight: bold;}
.b_t_sp01::before {content: ""; position: absolute; top: -12px; left: 12px; background: url("/service/visadebit/img/entry_v1/icon04.svg") no-repeat scroll 0 0; width: 21px; height: 18px;}
.b_t_sp02 { color: #00B8EF;}
.new_step_list {margin-top: 15px; display: flex; justify-content: space-between;}
.new_step_list_item { border:1px solid #C9C9C9; width: 30.15%; padding: 3% 1%; position: relative;}
.new_step_list_item::before {content: ""; position: absolute; top: 35%; right: -13%; background: url(/service/visadebit/img/entry_v1/icon05.svg) no-repeat scroll 0 0; width: 8%; height: 26%; background-size: 100%;}
.new_step_list_item:last-child:before{content: none;}
.new_step_txt{text-align: center; font-size: 1.2rem; color: #fff; padding: 5px 22px; background: #00B8EF; display: block; border-radius: 20px; margin: 0 auto; width: 95px;}
.new_step_txt span{font-size: 1.6rem;}
.new_step_icon{text-align: center; margin-top: 35px; margin-bottom: 35px;}
.new_step_icon2{text-align: center; margin-top: 22px; margin-bottom: 22px;}
.new_step_icon3{text-align: center; margin-top: 20px; margin-bottom: 21px;}
.new_step_txt02 {color: #2A2A2A; text-align: center; font-size: 1.5rem;}
.step_list_box{margin-top: 24px; background: #F5F5F5; padding: 25px 10px;}
.step_list_box_txt01 {text-align: center;}
.step_list_box_txt02 {text-align: center; margin-top: 18px; font-size: 1.8rem;}
.sl_pt01{font-size: 2.2rem; position: relative; background-image: radial-gradient(circle at center, #0773DD 22%, transparent 22%); background-position: top right; background-repeat: repeat-x; background-size: 1em 0.5em; padding-top: 0.3em;}
.sl_pt02{font-size: 2.4rem; color: #0773DD; background:linear-gradient(transparent 70%, #FFDA74 70%);}

@media screen and (max-width: 768px){
  .new_box_title {margin-top: 24px; font-size: 1.9rem; text-align: left; padding: 0 20px;}
  .b_t_sp01 {font-size: 2.8rem;}
  .b_t_sp01::before {content: ""; position: absolute; top: -8px; left: 12px; width: 18px; height: 15px; background-size: 100%;}
  .new_step_list {margin-top: 15px; display: block; padding: 0 20px;}
  .new_step_list_item { width: 100%; padding: 6% 2%; position: relative; margin-bottom: 30px;}
  .new_step_list_item::before {content: ""; position: absolute; top: auto; right: calc(50% - 7.5px); bottom: -37px; width: 15px; height: 47px; background-size: 100%; transform:rotate(90deg);}
  .new_step_list_item:last-child:before{content: none; margin-bottom: 0;}
  .new_step_txt{text-align: center; font-size: 1.2rem; color: #fff; padding: 5px 30px; border-radius: 20px; margin: 0 auto; width: 125px;}
  .new_step_txt span{font-size: 1.6rem;}
  .new_step_icon{text-align: center; margin-top: 15px; margin-bottom: 15px;}
  .new_step_icon2{text-align: center; margin-top: 10px; margin-bottom: 15px;}
  .new_step_icon3{text-align: center; margin-top: 15px; margin-bottom: 15px;}
  .new_step_txt02 {color: #2A2A2A; text-align: center; font-size: 1.6rem;}
  .step_list_box{margin: 24px 20px; background: #F5F5F5; padding: 22px 10px;}
  .step_list_box_txt01 img{width: 245px; height: 25px;}
  .step_list_box_txt02 {text-align: center; margin-top: 5px; font-size: 1.6rem;}
  .sl_pt01{font-size: 1.8rem; display: inline-block; text-align: center;}
  .sl_pt02{font-size: 1.8rem; display: block; text-align: center; letter-spacing: -1px; max-width: 340px;
    margin: 0 auto;}
}




