/* ========================================================================== *
 * css
.* ========================================================================== */
/* PC・スマホ、共通で利用できます */

.dialog_bg {
  display: none;
  position: absolute; 
  z-index: 998;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1000%;
  background-color: black;
  opacity: 0.15;
}

.dialog {
  display: none;
  position: absolute; 
  z-index: 999;
  left: 10%;
  top: 10%;
  padding: 20px 20px;
  max-width: 100%;
  height: 50%;
  margin-left: 10px;
  margin-top: -90px;
  background-color: white;
  text-align: center;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  border: 3px solid;
  border-color: #ef8200;
  border-radius: 8px;
}
.dialog p {
	padding: 0 30px;
}
.dialog_show_container {
  width: 100%;
  margin: 30px 0;
  text-align: center;
}
.dialog_show {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  width: 310px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: #ef8200;
  color: #fff !important;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 47px;
  cursor: pointer;
}
.dialog_close_container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}
.dialog_close {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 10px;
  padding: 0;
  width: 310px;
  height: 48px;
  top: 70px;
  border: 2px solid;
  border-color: #ef8200;
  border-radius: 8px;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 47px;
  cursor: pointer;
}
#dialog_close_go{
  background: #ef8200;
  color: #fff !important;
}
#dialog_close_back{
  background: #fff;
  color: #ef8200 !important;
  font-weight: bold;
}
*/
