@charset "utf-8";

/* モーダル
--------------------------------------------------------- */
.modal-common {
  position: fixed;
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  height: auto;
  width: 50%;
  left: 50% !important;
  top: 10px;
  overflow-y: auto;
  padding: 0;
  transform: translateX(-50%);
}

.modal-common h3 {
  color: #07b097;
  font-size: 15px;
  font-weight: bold;
  padding-left: 15px;
  position: relative;
}

.modal-common h3::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #07b097;
  position: absolute;
  top: 7px;
  left: 0;
}

.modal-common p {
  font-size: 13px;
}

.modal-common .note-tiny {
  font-size: 10px;
}

.modal_content_header {
  background: #0cbaa0;
  color: #fff;
  padding: 14px !important;
}

.modal_content_inner {
  padding: 14px;
}

/* ページ側のモーダルリンク
--------------------------------------------------------- */
button.link-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: #0e82ed;
  font-size: 14px;
  margin: 0 0 10px auto;
  padding: 0 20px 0 0;
  text-decoration: underline;
}

button.link-btn.c {
  padding: 0;
  margin: 0 auto;
}

button.link-btn img,
button.link-btn-l img {
  width: 16px;
  margin: 0 0 0 2px;
}

button.link-btn-l {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: #0e82ed;
  font-size: 14px;
  text-decoration: underline;
}

/* モーダル内の閉じるボタン
--------------------------------------------------------- */
button.close-btn {
  display: flex;
  align-items: center;
  background: #fff;
  color: #333;
  font-size: 14px;
  margin: 15px auto 25px;
  text-align: center;
  border: none;
  box-shadow: none;
}

button.close-btn span {
  margin: 0 0 0 4px;
}

/* モーダルポジション関連
--------------------------------------------------------- */
#modal_overlay {
  z-index: 2;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

.modal_content {
  display: none;
  z-index: 3;
  position: fixed;
  text-align: center;
}

.modal_content .explain ul li {
  display: inline-block;
  line-height: 160%;
  padding: 0 0 15px 0;
  text-align: left;
}
