#confirm_container * {
  box-sizing: border-box;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
#confirm_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 2000;
}

/*モーダル本体の擬似要素の指定*/
#confirm_container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
#confirm_container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
#confirm_body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 90%;
}

#confirm_container.close_confirm::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 50%);
}


/*モーダルを閉じるボタンの指定*/
/* #confirm_close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  right: -10px;
  margin: auto;
  width: 1em;
  height: 1em;
  font-size: 40px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  cursor: pointer;
  transition: all ease .3s;
  z-index: 1;
}

#confirm_close span {
  position: relative;
}

#confirm_close span::before,
#confirm_close span::after {
  position: absolute;
  content: "";
  display: block;
  top: -0.35em;
  left: -0.05em;
  width: .1em;
  height: 0.7em;
  background: #fff;
  border-radius: .4em;
  transform: rotate(45deg);
  pointer-events: none;
}

#confirm_close span::after {
  transform: rotate(-45deg);
}

#confirm_close:hover {
  background-color: #014640;
} */

/*モーダル内のコンテンツの指定*/
#confirm_content {
  background: #fff;
  text-align: left;
  font-size: 16px;
}

/* 確認画面 */

#confirm_header {
  position: relative;
  padding: 12px 30px;
  background: #006057;
}

#confirm_title {
  position: relative;
  z-index: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 26px;
  color: #fff;
}

#confirm_header::after {
  position: absolute;
  display: block;
  content: "";
  background: url(/action/image/bg-temp-input-pc-01@2x.jpg) center center / 100%;
  opacity: .2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
/* ////////////////// */
/* WEBPインラインimgタグ対応 */
/* ////////////////// */
#confirm_header_inlineImg{
  position: relative;
  padding: 12px 30px;
  background: #006057;
}
#confirm_header_inlineImg{
  position: relative;
  padding: 12px 30px;
  position: relative;
  width: 100%;
  z-index:1;
}
#confirm_header_inlineImg::before{
  content:"";
  background: #006057;
  opacity: 0.8;
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:1;
}
#confirm_header_inlineImg .confirm_header-background{
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  top:0;
  left:0;
}
/* ////////////////// */
/* WEBPインラインimgタグ対応*/
/* ここまで */
/* ////////////////// */
#confirm_contents {
  padding: 20px 30px 30px;
}

#confirm_text {
  color: #c8143d;
  margin-bottom: 10px;
}

#confirm_list {
  width: 100%;
  margin-bottom: 20px;
  table-layout: fixed;
}

#confirm_list tr:first-child {
  border-top: 1px solid #ddd;
}

#confirm_list tr {
  border-bottom: 1px solid #ddd;
}

#confirm_list th,
#confirm_list td {
  padding: 8px 10px;
  font-size: 14px;
  white-space: pre-wrap;
}

#confirm_list th {
  position: relative;
  font-weight: bold;
  background-color: #f7f7f7;
  width: 30%;
}

#confirm_list th.required::after {
  position: absolute;
  content: "必須";
  right: 10px;
  width: 52px;
  height: 20px;
  background-color: #931a35;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}
#confirm_list td .font-red {
  color: #c8143d;
}

#confirm_fixed {
  text-align: center;
  color: #45494b;
  position: relative;
}

#closeButton {
  position: absolute;
  min-width: auto;
  top: 5px;
  left: 0;
  padding: 10px 30px;
  min-height: 40px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  /* #confirm_close {
    font-size: 34px;
  } */
  #confirm_body {
    width: 96%;
  }
  #confirm_container {
    padding: 30px 10px;
  }

  #confirm_content {
    font-size: 14px;
  }

  #confirm_header {
    padding: 8px 20px;
  }

  #confirm_title {
    font-size: 24px;
  }

  #confirm_contents {
    padding: 0;
  }

  #confirm_scroll {
    padding: 15px 20px 0;
    /* overflow: auto; */
    max-height: calc(100vh - 260px);
    overflow-y: scroll;
  }

  #confirm_fixed {
    padding: 10px 20px;
  }

  #confirm_list th,
  #confirm_list td {
    display: block;
    width: 100%;
  }

  #closeButton {
    position: relative;
    width: auto;
    display: inline-block;
  }

}

#browser_back_alert {
  position: fixed;
  z-index: 2003;
  opacity: 0;
  visibility: hidden;
  padding: 20px 10px;
  background: #fff;
  color: #b72727;
  font-weight: bold;
  border: 2px solid #c14444;
  border-radius: 10px;
  transition: all 0.2s ease;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 90px;
  width: 290px;
  text-align: center;
  font-size: 15px;
  box-shadow: 0 6px 10px 5px rgb(4 0 0 / 30%)
}
#browser_back_alert.active {
  opacity: 1;
  visibility: visible;
}
#browser_back_alert_confirm,
#browser_back_alert_close {
  margin-top: 10px;
  font-size: 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
#browser_back_alert_confirm:hover,
#browser_back_alert_close:hover {
  opacity: .8;
}

#browser_back_alert_confirm {
  background-color: #0a847b;
  color: #fff;
  padding: 6px 30px;
}
#browser_back_alert_close {
  background: #fff;
  color: #555;
  border: 1px solid #aaa;
  padding: 6px 20px;
  font-size: 14px;
}