/* ============ RESET ============ */
#attention02 {
  background-color: #f2f2f2;
  margin: 0;
  padding: 30px 10px;
}
#main {
  width: 93%;
  margin: 0 auto;
}

.coupon img {
  width: 100%;
}

.totalNum {
  margin-top: 15px;
  padding: 8px;
  color: #000;
  font-size: 16px;
  /*font-weight: bold;*/
  text-align: center;
  background-color: #FFF102;
  /*border: solid 1px #000;*/
}
.totalNum span {
  color: #ff0000;
  font-size: 14px;
  font-weight: bold;
}

.useNum {
  font-size: 16px;
}

/* -----------------------
  modal
-------------------------- */
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.content{
  margin: 0 auto;
  padding: 40px;
}
.modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
}
.modal__bg{
  background: rgba(0,0,0,0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content{
  position: absolute;
  height: auto;
  max-height: 90vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 320px;
  padding: 10px 10px 0;
  background: #fff;
  /*border: solid 1px #000;*/
  border-radius: 10px;
  overflow-y: scroll;
}
.js-modal-close {
  color: #000;
}
.modal-txt {
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
.modal-txt__sub {
  margin: 20px 0 15px;
  font-size: 19px;
  font-weight: bold;
  color: #ff0000;
  text-align: center;
}
.btnModal {
  position: absolute;
  top: -60px;
  right: 0;
  padding: 13px 14px; 
  text-align: center;
  vertical-align: middle;
  line-height: 1em;
  background-color: #fff;
  border: solid 1px #000;
  border-radius: 90%;
}
.btnClose {
  width: 70%;
  margin: 10px auto 0;
  padding: 10px;
  text-align: center;
  background-color: #ddd;
  border-radius: 6px;
}


/* -----------------------
  tab
-------------------------- */
.tab-content{
  display: none;
}
.tab-content img {
  margin: 15px 0;
}
.tab-content.active{
  display: block;
  transition: all .3s ease-in-out;
}
.couponCloseTxt {
  margin-top: 30px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .tab-content img {
    margin: 10px 0;
  }
}

/* -----------------------
  button
-------------------------- */
.form_submit_button{
  width: 70%;
  margin: 0 auto;
  padding: 20px 30px;
  color: #fff;
  font-size: 18px;
  background-color: #ff0000;
  border: none;
  border-radius: 6px;
}
.len100 {
  display: block;
  width: 100px;
  height: 45px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
}
/* select */
select option {
  color: #2b0e04;
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring { 
  color: transparent; 
  text-shadow: 0 0 0 #828c9a;
}

/* -----------------------
  guide
-------------------------- */
.toggle_contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block;
  width: 100%;
  margin: 0 0 50px;
  padding: 0;
}
.toggle_title {
  height: 50px;
  position: relative;
  text-align: center;
  font-weight: normal;
  cursor: pointer;
  line-height: 50px;
  /*
  background-color: #00bbcd;
  */
  border-bottom: solid 1px #182c46;
  /*border-radius: 10px;*/
}
.toggle_btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  height: 50px;
  display: block;
  width: 20px;
  height: 20px;
  transition: all .3s ease;
}
.toggle_btn:before, .toggle_btn:after {
  display: block;
  content: '';
  background-color: #182c46;
  position: absolute;
  width: 14px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}
.toggle_btn:before {
  width: 1px;
  height: 14px;
}
.toggle_title.selected .toggle_btn {
  position: absolute;
  top: 16px;
  right: 10px;
  transform: rotate(90deg);
}

.toggle_title.selected .toggle_btn:after {
  content: normal;
}
.toggle_contents dd {
  display: none;
}
.toggle_contents_bk {
  padding: 20px 10px;
  font-size: 13px;
  line-height: 1.5em;
  color: #000;
  text-align: justify;
  word-wrap: break-word;
  overflow-wrap: break-word;
}