@charset "UTF-8";

* {
  box-sizing: border-box;
}


/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
    height : 50%;
    overflow : auto;
  max-width: 500px;
  padding: 10px 30px;
  background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}


/* 以下ボタンスタイル */
button {
  padding: 10px 20px;
    font-size: 14px;
  background-color: #fff;
  border: 1px solid #282828;
  border-radius: 2px;
  cursor: pointer;
letter-spacing: 0.2em;
}

@media (max-width: 767px) {
    button {font-size: 10px; width: 300px;}
}

#openModal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
}

/* 以下モーダル内スタイル */
.modalContents {
    padding: 40px 30px 40px 30px;
}

.modalContents h3 {
    font-size: 22px;
    line-height: 150%;
    font-family: adobe-caslon-pro, sans-serif;
    margin-bottom: 20px;
}

.modalContents h4 {
    font-size: 16px;
    line-height: 150%;
    color: #333333;
    font-family: adobe-caslon-pro, sans-serif;
    margin-top: 30px;
}

.modalContents p,
.modalContents ul,
.modalContents li {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  color: #727272;
  margin-bottom: 13px;
  font-family: adobe-caslon-pro, sans-serif;
}

.modalContents ul {
    list-style-position: inside;
}

.modalContents ul li {
    list-style: disc;
    margin-left: 20px;
}


@media (max-width: 767px) {
    .modalContents {
    padding: 20px 0px 20px 0px;
}

.modalContents h3 {
    font-size: 14px;
    line-height: 150%;
    font-family: adobe-caslon-pro, sans-serif;
    margin-bottom: 20px;
}

.modalContents h4 {
    font-size: 12px;
    line-height: 150%;
    color: #333333;
    font-family: adobe-caslon-pro, sans-serif;
    margin-top: 30px;
}

.modalContents p,
.modalContents ul,
.modalContents li {
  font-size: 12px;
  font-weight: 300;
  line-height: 180%;
  color: #727272;
  margin-bottom: 13px;
  font-family: adobe-caslon-pro, sans-serif;
}

.modalContents ul {
    list-style-position: inside;
}

.modalContents ul li {
    list-style: disc;
    margin-left: 20px;
}
}

