/* 20216050 角口　翔 */

@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  background: url("../images/bgm.png");
}

p {
  color: black;
}

.global__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 70px;
  border-radius: 35px;
  background: rgb(163, 163, 183);
  border: 4px solid rgb(212, 212, 239);
  overflow: hidden;
  margin-bottom: 5px;
  cursor: pointer;
}

.global__btn__in {
  display: flex;
  width: calc(100% - 12px);
  height: 50px;
  align-items: center;
  background: rgb(250, 250, 255);
  box-shadow: 0 0 0 2px linear-gradient(rgb(130, 218, 255), rgb(163, 241, 255));
  border-radius: 27px;
  border-top: 2px solid rgb(230, 230, 230);
  border-bottom: 2px solid gray;
  text-shadow: 0 2px 2px gray;
  position: relative;
  z-index: 10;
  padding: 5px;
}

.global__btn__in__img {
  font-size: 24px;
  margin-right: 5px;
  box-shadow: 0 1px 1px gray inset;
  font-weight: bold;
  text-align: center;
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background: rgb(163, 163, 183);
}

.global__btn__in__info p {
  text-shadow: none;
  text-align: left;
  font-weight: bold;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-size: 13px;
}

.global__btn__in__info p:last-child {
  font-size: 12px;
  color: gray;
}

.global__btn:hover {
  background: rgb(141, 195, 221);
}

.global__btn:hover .global__btn__in {
  box-shadow: 0 0 10px 10px rgba(162, 226, 255, 0.4) inset;
}

.global__btn:hover .global__btn__in__img {
  background: rgb(141, 195, 221);
}

.global__btnApp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  min-width: 180px;
  height: 145px;
  border-radius: 35px;
  background: rgb(163, 163, 183);
  border: 4px solid rgb(212, 212, 239);
  overflow: hidden;
  margin-bottom: 5px;
  margin-right: 10px;
  cursor: pointer;
}

.global__btnApp__in {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: calc(100% - 12px);
  height: 126px;
  background: rgb(250, 250, 255);
  box-shadow: 0 0 0 2px linear-gradient(rgb(130, 218, 255), rgb(163, 241, 255));
  border-radius: 27px;
  border-top: 2px solid rgb(230, 230, 230);
  border-bottom: 2px solid rgb(189, 189, 189);
  position: relative;
  z-index: 10;
  padding: 5px;
  overflow: hidden;
}

.global__btnApp__in p {
  width: 100%;
  text-align: center;
  text-shadow: 0 2px 2px white;
  font-weight: bold;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-size: 13px;
}

.global__btnApp__in__img {
  margin: 0 auto;
  width: 100px;
}

.global__btnApp__in__img img {
  width: 100%;
}

.global__btnApp:hover {
  background: rgb(141, 195, 221);
}

.global__btnApp:hover .global__btnApp__in {
  box-shadow: 0 0 10px 10px rgba(162, 226, 255, 0.4) inset;
}

.btns {
  padding: 10px 30px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.popup {
  position: fixed;
  display: flex;
  justify-content: center;
  border: 1px solid red;
  background: white;
  width: 300vw;
  height: 400vh;
  border-radius: 50%;
  margin-left: -100vw;
  border: 3px solid white;
  box-shadow: 5px 0 16px 3px gray inset;
  -webkit-animation: popup-falling 2s;
  animation: popup-falling 2s;
  bottom: -340vh;
  z-index: 100;
}

@-webkit-keyframes popup-falling {
  0% {
    transform: translateY(-50vh);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes popup-falling {
  0% {
    transform: translateY(-50vh);
  }

  100% {
    transform: translateY(0);
  }
}

.popup__msg__top {
  font-size: 50px;
  line-height: 60px;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  color: #7498e8;
}

.popup__box {
  padding-top: 40px;
}

.popup__box p {
  text-align: center;
}

.popup__box__bottom {
  display: flex;
  margin-top: 10px;
}

.popup__box__bottom img {
  width: 40px;
  margin-right: 10px;
  margin-bottom: 40px;
}

.popup__box__bottom__text p {
  text-align: left;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: lighter;
  font-size: 24px;
  color: rgb(72, 72, 72);
}

.popup__box__bottom__text p:last-child {
  font-size: 12px;
}

.popup__box__bottom__square {
  perspective: 1000px;
  width: 100px;
  height: 100px;
  position: relative;
  top: 10vw;
  left: 10vh;
  transform: translateX(-50%) translateY(-50%);
}

.popup__box__bottom__square__info {
  transform-style: preserve-3d;
  width: 100px;
  height: 100px;
  -webkit-animation: turnAround 30s linear 0s infinite normal none running;
  animation: turnAround 30s linear 0s infinite normal none running;
}

@-webkit-keyframes turnAround {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

@keyframes turnAround {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.popup__box__bottom__square__info div {
  position: absolute;
  background: linear-gradient(rgb(130, 218, 255), rgb(163, 241, 255));
  border: 0.5px solid black;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .btns {
    padding-bottom: 50vh;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 467px) {
  .popup {
    z-index: 1000;
    top: auto;
    bottom: -360vh;
  }

  .popup__msg__top {
    font-size: 30px;
    line-height: 40px;
  }

  .popup__box__bottom {
    flex-wrap: wrap;
  }

  .popup__box__bottom__square {
    left: -100px;
    top: 100px;
  }
}

/*# sourceMappingURL=style2.css.map */
