@charset "UTF-8";
/*for modal*/
html.isFixed body {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width: 768px) {
  html.isFixed body {
    overflow-y: scroll;
  }
}
@media only screen and (max-width: 767px) {
  html.isFixed {
    height: 100vh;
  }
}

.modal-wrap {
  font-family: Meiryo, "\u30e1\u30a4\u30ea\u30aa", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "MS PGothic", sans-serif;
  font-size: initial;
  line-height: 1.75;
  background: rgba(0, 0, 0, .8);
  position: fixed;
  z-index: 9999;
  top: -5%;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  transition: .3s ease-out top,
  .3s ease-out opacity;
  opacity: 0;
}

.modal-wrap h1, .modal-wrap h2, .modal-wrap h3, .modal-wrap h4, .modal-wrap h5, .modal-wrap h6, .modal-wrap p, .modal-wrap ul, .modal-wrap ol, .modal-wrap dl {
    margin: 0 0 20px;
}

.modal-wrap.isOpen {
  top: 0;
  opacity: 1;
}

.modal-wrap ::-ms-clear {
  display: none;
}

.modal-wrap .closeBtnWrap {
  position: fixed;
  width: 100%;
  max-width: 940px;
  height: 0;
  margin: auto;
}

.modal {
  font-size: 62.5%;
  word-break: break-all;
  display: none;
  box-sizing: border-box;
  margin: auto;
}
.modal> :not(.str-contentBody) {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  html.isFixed .modal-wrap:not(.isSafari) {
    width: 100vw;
  }
  .modal-wrap {
    overflow-y: scroll;
  }
  .modal-wrap .closeBtnWrap {
    top: 60px;
    right: 0;
    left: 0;
  }
  .modal {
    width: 900px;
    padding: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .modal-wrap .closeBtnWrap {
    top: 15px;
    right: 10px;
    left: 10px;
  }
  .modal {
    display: none;
    width: 100%;
    height: 100%;
    padding: 90px 20px 20px;
  }
}

.modal-content-2 {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .modal-content-2 {
    overflow-y: auto;
    box-sizing: border-box;
    height: calc(100% + 20px);
    margin: 0 -20px;
    padding: 20px;

    -webkit-overflow-scrolling: touch;
            overflow-scrolling: touch;
  }
}

.modal-wrap .closeBtn {
  color: #fff;
  background: transparent;
  position: relative;
  z-index: 999;
  display: block;
  width: 60px;
  margin-bottom: 1rem;
  margin-left: auto;
  padding-top: 39px;
  padding-bottom: 1px;
  transition: .3s ease-out background-color;
  border: 0;
  border-radius: 4px;
}

.modal-wrap .closeBtn:hover,
.modal-wrap .closeBtn:focus {
  background-color: rgba(255, 255, 255, .25);
}

.modal-wrap .closeBtn::before,
.modal-wrap .closeBtn::after {
  background: #fff;
  position: absolute;
  top: 21px;
  right: 0;
  left: 0;
  display: block;
  width: 38px;
  height: 3px;
  margin: auto;
  content: "";
}

.modal-wrap .closeBtn::before {
  transform: rotate(45deg);
}
.modal-wrap .closeBtn::after {
  transform: rotate(-45deg);
}


.modal-wrap section:not([style*="display: none;"])~ section {
  padding-top: 2.5rem;
}

.modal-wrap h2 {
  font-size: 1.375rem;
  font-weight: bold;
  padding-bottom: 10px;
}



.modal .str-contentBody {
  font-size: 1.4em;
  color: #223;
  background-color: #fff;
  padding: 5%;
}
