.main {
  text-align: center;
  padding: 30px;
  margin-bottom: 10px;
}

.web {
  border: 4px solid #000;
  border-radius: 25px;
  margin-bottom: 20px;
  overflow: hidden;
}

.em {
  color: yellow;
  font-size: 25px;
  font-weight: bold;
}

.title {
  background-color: #000;
  padding: 10px;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
}

.lead {
  padding: 15px;
  font-size: 18px;
}

.lead02 {
  padding: 5px;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}

.annotation {
  font-size: 1em;
  text-align: left;
  margin: 0 20px 20px 20px;
}

.attention {
  text-align: left;
  margin-bottom: 10px;
}

/* コピーボタン */
.coupon_copy {
  margin-bottom: 15px;
}

.copy {
  margin: 5px auto;
  padding: 10px;
  width: 80%;
  background-color: #000;
  border-radius: 15px;
}

.copy_lead {
  font-size: 1.2em;
  margin: 0 0 8px 0 !important;
  color: rgb(255, 255, 255);
}

.copy_area {
  padding: 5px;
  font-size: 2.4em;
  font-weight: bold;
  /* margin-top: 20px; */
  color: red;
  text-decoration: none;
}

.area {
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  padding: 5px;
}

.tap {
  font-size: 18px;
  font-weight: bold;
}

/* コピーボタン */


/* アコーディオン */
.accordion {
  padding: 20px;
  background: #ebeaea;
}

.toggle {
  display: none;
}

.Label {
  /*タイトル*/
  padding: 1em;
  display: block;
  color: #000;
}

.Label,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.content {
  /*本文*/
  height: 0;
  margin-bottom: 10px;
  overflow: hidden;
}

.toggle:checked+.Label+.content {
  /*開閉時*/
  height: auto;
  padding: 10px 0;
  transition: all .3s;
}

/* アコーディオン */

.mv_image {
  margin: 20px auto;
  width: 80%;
}

@media (max-width: 768px) {
  .em {
    font-size: 1em;
  }

  .title {
    font-size: 1em;
    text-align: center;
  }

  .lead {
    font-size: .8em;
  }

  .copy_lead {
    font-size: .8em;
    text-align: center;
  }

  .area {
    font-size: 1.2em;
    text-align: center;
  }

  .copy_area {
    font-size: 1.6em;
  }

  .accordion {
    font-size: .8em;
    text-align: center;
  }

  .accordion .Label {
    font-size: .8em;
  }

  .content {}
}