@charset "utf-8";
/* CSS Document */

.window-bg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  cursor: pointer;
  display: block;
}

.window-box {
  font-size: 13px;
  background: #fff;
  text-align: center;
  cursor: auto;
  border: 5px solid #82b257;
}

.window-text {
  margin-bottom: 30px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width:767px) {
  .window-text {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
  }
}

.window-title {
  color: #82b257;
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 30px;
}

@media screen and (max-width:767px) {
  .window-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.window-btn {
  margin: 0 auto;
  padding: 15px;
  background: #fff;
  text-align: center;
  border-radius: 30px;
  margin-top: 10px;
  cursor: pointer;
  max-width: 400px;
}

.window-btn.jump-w {
  background-color: #82b257;
  transition-duration: .4s;
}

.window-btn.jump-w:hover {
  opacity: .8;
}

.window-btn.back-w {
  background-color: #a9a9a9;
  transition-duration: .4s;
}

.window-btn.back-w:hover {
  opacity: .8;
}

.window-btn > a {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  display: inline-block;
}

.window-btn > a:hover {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width:767px) {
  .window-btn > a {
    font-size: 1.5rem;
  }
}

.window-box > ul {
  list-style: none !important;
}

/* 幅が 767px 以下であれば */
@media (max-width:767px) {
  .window-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /* -webkit- transform: translateY(-50%) translateX(-50%); */
    padding: 15px;
    border-width: 5px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .window-box {
    width: 100%;
    padding: 30px;
  }
  
  .window-btn {
    width: 100%;
  }
}

/* 幅が 768px 以上であれば */
@media (min-width:768px) {
  .window-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /* -webkit- transform: translateY(-50%) translateX(-50%); */
    box-sizing: border-box;
  }
  
  .window-box {
    width: 560px;
    padding: 40px 35px;
  }
}
