@charset "UTF-8";

/*======================================================================================================================
========================================================================================================================

パートナー専用ページ遷移後のPOPUP

========================================================================================================================
======================================================================================================================*/

button.btn{
  text-transform: none;
  border-style: none;
  line-height: 48px;
  width: 100%;
  color: #fff;
  background: #18b1d2;
  border-radius: 2.4rem;
  text-align: center;
  -webkit-transition: opacity .3s, background .3s;
  transition: opacity .3s, background .3s;
  cursor: pointer;
  font: inherit;
}


/* line 72, _scss/style.scss */
 .popup {
  z-index: 100;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  font-size: 16px;
  font-family: "Original Yu Gothic", "Yu Gothic", "游ゴシック", "Yu Gothic", YuGothic, sans-serif;
 }

 /* line 79, _scss/style.scss */
 .popup__inner {
  background: #fff;
  padding: 80px 40px;
  width: 80vw;
  height: 80vh;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
 }

 /* line 94, _scss/style.scss */
 .popup__text {
  width: 100%;
  text-align: center;
  line-height: 1.75;
 }

 /* line 98, _scss/style.scss */
 .popup__btnlist {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
 }

 /* line 105, _scss/style.scss */
 .popup__btnlist li {
  width: calc(50% - 10px);
 }

.popup__btnlist .btn{
  line-height: 48px;
  transition: opacity .3s, background .3s;
}
.popup__btnlist .btn::before {
    content: "> ";
}
.popup__btnlist .btn:not(:disabled):hover {
    opacity: .7;
}



