@charset "utf-8";


.ss {
  color: #000;
  font-family: YuGothic, Helvetica Neue, Helvetica, Arial, '游ゴシック', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  overflow-x: hidden;
  font-size: 10px;
}

.modal_container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100010;
  display: none;
}

.modal_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modal_banner {
  max-width: 882px;
  width: 100%;
  background-color: #fff;
  padding: 56px 64px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .modal_banner {
    max-width: 92vw;
    padding: 10.66vw 4vw;
  }
}

.modal_title {
  text-align: center;
  color: #1e73be;
  font-size: 32px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .modal_title {
    font-size: 5.33vw;
  }
}

.modal_text {
  margin-top: 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .modal_text {
    margin-top: 8vw;
    font-size: 3.46vw;
    text-align: left;
  }
}

.modal_box {
  margin-top: 40px;
  padding: 40px 132px;
  text-align: center;
  background-color: #BFD7EC;
}

@media screen and (max-width: 767px) {
  .modal_box {
    margin-top: 8vw;
    padding: 8vw 4vw;
  }
}

.modal_btitle {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .modal_btitle {
    font-size: 5.33vw;
  }
}

.modal_bwrapper {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .modal_bwrapper {
    margin-top: 8vw;
  }
}

.modal_blink {
  max-width: 236px;
  width: 100%;
  padding: 24px 0;
  display: block;
  background-color: #fff;
  border: 1px solid #4C4C4C;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  line-height: 1;
  transition: .25s ease-in-out;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .modal_blink {
    max-width: 36.26vw;
    padding: 4.26vw 0;
    font-size: 3.73vw;
  }
}

.modal_blink:hover {
  opacity: 0.7;
}

.modal_blink:hover:after {
  right: 10px;
}

@media screen and (max-width: 767px) {
  .modal_blink:hover:after {
    right: 3.7vw;
  }
}

.modal_blink:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #4C4C4C;
  border-right: 2px solid #4C4C4C;
  transform: rotate(45deg);
  transition: .25s ease-in-out;
}

@media screen and (max-width: 767px) {
  .modal_blink:after {
    width: 2.66vw;
    height: 2.66vw;
    top: 4.5vw;
    right: 4.26vw;
    border-width: 0.53vw;
  }
}

.modal_bgreen {
  background-color: #1e73be;
  border: 2px solid #1e73be;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .modal_bgreen {
    border-width: 0.53vw;
  }
}

.modal_bgreen:after {
  border-color: #fff;
}