.js-modal-open {
  display: block;
  width: 440px;
  max-width: 100%;
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 840px) {
  .js-modal-open {
    width: 250px;
  }
}

/* ---------modal-------- */

.c-modal01-content {
  display: block;
  pointer-events: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20000;
  text-align: left;

  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

.c-modal01-content.is-active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.c-modal01-content__main-wrap {
  position: relative;
  max-width: 1120px;
  width: 90%;
  margin: 70px auto 0;
  max-height: calc(100vh - 140px);
}

.c-modal01-content__wrap {
  background: #fff;
  max-height: calc(100vh - 140px);
  padding: 25px;
  overflow: auto;
  box-sizing: border-box;
  font-weight: bold;
}

.c-modal01-content__close {
  position: absolute;
  right: -8px;
  top: -15px;
  width: 30px;
  height: 30px;
  background: #00738a;
  border-radius: 60px;
  z-index: 12;
  cursor: pointer;
}

.c-modal01-content__close:before,
.c-modal01-content__close:after {
  position: absolute;
  content: "";
  width: 18px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 14px;
  left: 6px;
  background: #fff;
}

.c-modal01-content__close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-modal01-content__head {
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: #00738a;
  text-align: center;
  font-weight: bold;
}

.c-modal01-content__catch {
  line-height: 1.8;
}

.c-modal01-content__sub {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.6;
}

.c-modal01-content__catch {
  font-size: 15px;
}

.c-modal01-content-list {
  line-height: 1.6;
}

@media all and (max-width: 340px) {
  .c-modal01-content__head {
    font-size: 16px;
    letter-spacing: 0.1em;
    text-align: left;
  }
}

@media all and (min-width: 600px) {
  .c-modal01-open {
    margin: 0;
    width: auto;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .c-modal01-open:hover {
    opacity: 0.7;
  }

  .c-modal01-open.is-intro,
  .c-modal01-open.is-book {
    width: 275px;
  }

  .c-modal01-content__main-wrap {
    max-height: calc(100vh - 240px);
    margin: 140px auto 0;
  }

  .c-modal01-content__wrap {
    width: 100%;
    max-height: calc(100vh - 240px);
  }

  .c-modal01-content__close {
    right: -20px;
    top: -30px;
    width: 60px;
    height: 60px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .c-modal01-content__close:hover {
    background-color: #0a94b0;
  }

  .c-modal01-content__close:before,
  .c-modal01-content__close:after {
    width: 36px;
    top: 29px;
    left: 12px;
  }

  .c-modal01-content__head {
    font-size: 40px;
  }

  .c-modal01-content__sub {
    margin: 40px 0 15px;
    font-size: 28px;
  }

  .c-modal01-content__sub2 {
    margin: 30px 0 10px;
    font-size: 20px;
    font-weight: bold;
  }

  .c-modal01-content__catch {
    font-size: 17px;
  }

  .c-modal01-content-list {
    line-height: 2;
  }
}

.c-list01__item {
  position: relative;
  margin-bottom: 2px;
  padding-left: 11px;
  line-height: 1.5;
}

.c-list01__item:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background-color: #00738a;
}

@media all and (min-width: 600px) {
  .c-list01__item {
    margin-bottom: 11px;
    line-height: 2;
  }

  .c-list01__item:before {
    left: -4px;
    top: 12px;
  }
}

/* amazon モーダル追加 - */
.c-ol_list01 {
  counter-reset: number 0;
}

.c-ol__list01__item {
  position: relative;
  margin-bottom: 2px;
  padding-left: 15px;
  line-height: 1.5;
}

.c-ol__list01__item:before {
  counter-increment: number 1;
  content: counter(number);
  display: inline-block;
  position: absolute;
  left: -12px;
  top: 0px;
  border: 1px solid;
  border-radius: 9999999px;
  width: 17px;
  height: 17px;
  line-height: 19px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0px;
}

.c-ol__list01__item .p-indent {
  text-indent: -1em;
  margin-left: 1em;
  display: inline-block;
}

.c-modal01-content-list + .c-modal01-content-list {
  padding-left: 1.5em;
}

@media (max-width: 600px) {
  .c-ol__list01__item .p-indent {
    text-indent: -0.6em;
  }

  .c-ol__list01__item:before {
    left: -7px;
  }
}

/* - 追加 */
