@import url("index_pc.css");
@import url("index_sp.css");
@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css");

.modal__img {
  display: block;
  width: 90%;
  max-width: 500px;
  object-fit: contain;
  margin: auto;
}
.modal__close {
  position: absolute;
  top: -20px;
  right: 0;
  width: 42px;
  height: 42px;
}

.head-text {
  color: #2f97bd;
  font-size: 32px;
  font-weight: bold;
}
  .head-text>span {
      color: #f76925;
  }

body .sb-custom {
  font-size: 17px !important;
  font-family: Hiragino Sans, Arial, sans-serif !important;
  color: #000000 !important;
  line-height: 1.8 !important;
}

body .sb-custom img {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

#sb-part-7000.sb-custom-part-lfarcgkb92mjhgq6tbm .btn-area {
  margin: 3em 0 1em;
  justify-content: center;
  display: flex;
  text-align: center;
}

#sb-part-7000.sb-custom-part-lfarcgkb92mjhgq6tbm .btn {
  width: auto;

  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  overflow: hidden;
  box-sizing: border-box;
  animation: bound2Btn 2s ease infinite;
}

#sb-part-7000.sb-custom-part-lfarcgkb92mjhgq6tbm a.btn:hover {
  opacity: 0.7;
  text-decoration: none;
}

#sb-part-7000.sb-custom-part-lfarcgkb92mjhgq6tbm a.btn:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-brite 3s ease-in-out infinite;
}

#sb-part-7000.sb-custom-part-lfarcgkb92mjhgq6tbm a.btn:active {
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3),
      -4px -4px 6px 0 rgba(116, 125, 136, 0.2),
      inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2),
      inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
}

#sb-part-7000.sb-custom-part-lfarcgkb92mjhgq6tbm a.btn img {
  vertical-align: middle;
}

@keyframes bound2Btn {
  0% {
      transform: translateY(0);
  }

  15% {
      transform: translateY(-30px);
  }

  30% {
      transform: translateY(0);
  }

  45% {
      transform: translateY(-30px);
  }

  60% {
      transform: translateY(0);
  }

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

@-webkit-keyframes shiny-brite {
  0% {
      -webkit-transform: scale(0) rotate(45deg);
      opacity: 0;
  }

  80% {
      -webkit-transform: scale(0) rotate(45deg);
      opacity: 0.5;
  }

  81% {
      -webkit-transform: scale(4) rotate(45deg);
      opacity: 1;
  }

  100% {
      -webkit-transform: scale(50) rotate(45deg);
      opacity: 0;
  }
}