@charset "UTF-8";

/**
 * font
 */ 
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.terms_of_service{
    margin: 0 auto;
    padding: 40px;
}
.modal{
    display: none;
    /*height: 100vh;*/
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    display: inline-block;
}
.modal_content_base{
  width: 100%;
  margin:0 auto;
  display: inline-block;
  vertical-align: middle;
  height: 100vh;
  text-align:center;
  align-content: center;
}
.modal_content_block{
  width: 100%;
  height: 100vh;
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  align-content: center;
  vertical-align: middle;
  text-align:center;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
    z-index: 70;
}

.modal__content{
    color:#353434;
    background: #fff;
    top: 50%;
    left: 50%;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    /* position: absolute; */
    width: 60%;
    z-index: 999999 !important;
    text-align: center;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding-bottom: 15px;
    border-bottom:solid #acacac 0.5px;
}
.modal__content p{
  font-size:2.3em;
}
.terms_header p{
  font-size:1.5em;
  line-height:1.5em;
}
.terms_header_link p{
  font-size:1.5em;
  color:#368CD6;
  text-decoration-line: underline;
  padding-top:50px;
}

.button_area{
    display:flex;
    -ms-flex-direction: row;
    flex-direction: row;
      /* position: absolute;
    top: 67%;
    left: 50%; */
    width:60%;
    /* padding-top:14px;
    padding-left:19px;
    padding-right:19px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); */
    z-index: 999999 !important;
    /* margin-top:30px; */
}

.btn02_ok {
  display: inline-block;
  padding-top: 16px ;
  padding-bottom: 16px ;
  background: #ffffff;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 4px;
  border:none;
  color: #368CD6;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2em;
  -webkit-box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.4);
  box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.4);
  -webkit-transition: .12s;
  transition: .12s;
  z-index: 2; 
  width:100%;
  /* border-left: #acacac 0.2px solid; */
}

.btn02_ng {
  display: inline-block;
  padding-top: 16px ;
  padding-bottom: 16px ;
  background: #ffffff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0px;
  border:none;
  color: #368CD6;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2em;
  -webkit-box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.4);
  box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.4);
  -webkit-transition: .12s;
  transition: .12s;
  z-index: 2; 
  width:100%;
  border-right: #acacac 0.2px solid;
}

.btn02_ok:hover  {
  background: #ffffff;
  color: #e41313;
  opacity: 0.8;
}

.display-none{
    display:none;
}

@media screen and (min-width:600px) and (max-width: 950px) {
  .terms_header_link p{
    font-size:1em;
    color:#368CD6;
    text-decoration-line: underline;
    padding-top:20px;
  }
  .modal__content_title{
    white-space:nowrap;
    font-size:1.6em;
    font-weight: bold;
    padding-bottom: 15px;
  }
  .modal__content{
    /* white-space:nowrap; */
    font-size:1.1em;
    font-weight: bold;
    padding-bottom: 15px;
    height: 30%;
  }

}