@charset "UTF-8";
.modal-title {
  text-align: center;
  padding: 20px;
  border-bottom: solid 1px;
}

.modal-title .modai-title_txt {
  font-size: 20px;
}

.modal-content-area {
  text-align: right;
  padding: 20px;
}

.modal-content-area .content-title {
  font-size: 22px;
  color: #7EB500;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

.modal-content-area .content-txt {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 20px;
}

.modal-content-area .content-user {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.modal-content1 .modal-content-area:nth-child(2) .content-user::after {
  content: "";
  background-image: url(../img/modal_ill01.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 41px;
  position: absolute;
  top: 0px;
  left: -40px;
}

.modal-content1 .modal-content-area:nth-child(3) .content-user::after {
  content: "";
  background-image: url(../img/modal_ill02.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 27px;
  height: 41px;
  position: absolute;
  top: 0px;
  left: -40px;
}

.modal-content2 .modal-content-area .content-user::after {
  content: "";
  background-image: url(../img/modal_ill03.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 63px;
  height: 41px;
  position: absolute;
  top: 0px;
  left: -72px;
}

.modal-content3 .modal-content-area .content-user::after {
  content: "";
  background-image: url(../img/modal_ill04.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 41px;
  position: absolute;
  top: 0px;
  left: -40px;
}

.modal-content4 .modal-content-area .content-user::after {
  content: "";
  background-image: url(../img/modal_ill05.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 63px;
  height: 41px;
  position: absolute;
  top: 0px;
  left: -72px;
}

/*モーダルを開くボタン*/
.modal-open1 {
  cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal-container1::after {
  content: "";
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  top: 0;
  position: absolute;
  left: 0;
  z-index: 100;
}

/*モーダル本体の擬似要素の指定*/
.modal-container1:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container1.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body1 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
  z-index: 100000;
}

/*モーダルを閉じるボタンの指定*/
.modal-close1 {
  background-color: #F9DA49;
  position: absolute;
  bottom: 20px;
  color: #000;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 250px;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content1 {
  background: #fff;
  text-align: left;
  padding: 30px;
  padding-bottom: 50px;
}

/*モーダルを開くボタン*/
.modal-open2 {
  cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*モーダル本体の擬似要素の指定*/
.modal-container2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container2::after {
  content: "";
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  top: 0;
  position: absolute;
  left: 0;
  z-index: 100;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container2.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body2 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
  z-index: 100000;
}

/*モーダルを閉じるボタンの指定*/
.modal-close2 {
  background-color: #F9DA49;
  position: absolute;
  bottom: 20px;
  color: #000;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 250px;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content2 {
  background: #fff;
  text-align: left;
  padding: 30px;
  padding-bottom: 50px;
}

/*モーダルを開くボタン*/
.modal-open3 {
  cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal-container3::after {
  content: "";
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  top: 0;
  position: absolute;
  left: 0;
  z-index: 100;
}

/*モーダル本体の擬似要素の指定*/
.modal-container3:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container3.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body3 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
  z-index: 100000;
}

/*モーダルを閉じるボタンの指定*/
.modal-close3 {
  background-color: #F9DA49;
  position: absolute;
  bottom: 20px;
  color: #000;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 250px;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content3 {
  background: #fff;
  text-align: left;
  padding: 30px;
  padding-bottom: 50px;
}

/*モーダルを開くボタン*/
.modal-open4 {
  cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container4 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*モーダル本体の擬似要素の指定*/
.modal-container4:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container4::after {
  content: "";
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  top: 0;
  position: absolute;
  left: 0;
  z-index: 100;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container4.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body4 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
  z-index: 100000;
}

/*モーダルを閉じるボタンの指定*/
.modal-close4 {
  background-color: #F9DA49;
  position: absolute;
  bottom: 20px;
  color: #000;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 250px;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content4 {
  background: #fff;
  text-align: left;
  padding: 30px;
  padding-bottom: 50px;
}
/*# sourceMappingURL=modal.css.map */