@charset "utf-8";

/* = Setting
-------------------------------------------------------------- */
body {
  color: #333;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
  line-height: 1.5;
}
img {
  width: 100%;
}
ol li {
  list-style: none;
}
#wrapper {
  position: relative;
  width: 750px;
  margin: 0 auto;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 35%);
}
.pagetop {
  position: fixed;
  right: auto;
  bottom: 10px;
  width: 60px;
  margin-left: 760px;
}

/* = header
-------------------------------------------------------------- */
header {
  overflow: hidden;
  position: relative;
  z-index: 10;
  padding-top: 11.33%;
  background: url(../img/common/header_bg.png);
  background-size: cover;
}
header .dl {
  position: absolute;
  top: 16%;
  right: 1.5%;
  width: 18.13%;
}
header .title {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  width: 45.73%;
  margin: auto;
}

/* = main
-------------------------------------------------------------- */
main {
  margin-top: -0.8%;
}

/* = footer
-------------------------------------------------------------- */
footer {
  text-align: center;
  padding-top: 4.5%;
}
footer .sns_info li {
  width: 12%;
}
footer h2 {
  width: 64%;
  margin: 0 auto 4.5%;
}
footer .spec {
  margin-bottom: 4.5%;
}
footer ul {
  margin-bottom: 4.5%;
  font-size: 18px;
  text-align: center;
}
footer ul li {
  display: inline-block;
  padding: 0 2%;
}
footer p.copy {
  position: relative;
  padding: 4.8% 0 2.5%;
  background: url(../img/common/copyright_bg.png);
  background-size: cover;
}
footer small {
  color: #0b2850;
  font-size: 21px;
  text-shadow: 0px 2px 2px #74e7fe;
}

/* = common btn & link
-------------------------------------------------------------- */
a {
  transition: all 0.3s ease 0s;
}
.modal_close {
  left: 32%!important;
  width: 36%!important;
  margin-top: 0px!important;
  transition: all 0.3s ease 0s;
}
a:hover,
.modal_close:hover {
  opacity: 0.8;
}

/* = modal
-------------------------------------------------------------- */
.modal-box {
  display: none;
}
.modaal-container {
  background-color: transparent !important;
  box-shadow: none !important;
  top: -5vh;
  width: 950px;
}
.modaal-content-container {
  position: relative;
  padding: 0 !important;
}
.modal_close {
  display: block;
  position: absolute;
  bottom: -25%;
  left: 25%;
  width: 50%;
  cursor: pointer;
}
.modal-movie {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
}
.modal-movie {
  padding-top: 56.25%;
}
.modal-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.modal-terms {
  overflow: scroll;
  overflow-x: hidden;
  height: 560px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  font-size: 16px;
}
.modal-terms p,
.modal-terms strong,
.modal-terms ul {
  margin-bottom: 20px;
}
.modal-terms strong {
  display: block;
  border-bottom: 3px solid #333;
  padding-bottom: 3px;
  font-size: 20px;
}
.modal-terms ul {
  padding-left: 30px;
}
.modal-terms ul li {
  list-style: disc;
}

/* = btn animation
-------------------------------------------------------------- */
.btn-animation {
  animation: translateAni 4s infinite ease;
}
@keyframes translateAni {
    0% { transform: translate(0, 0);}
   15% { transform: translate(0, 0);}
   20% { transform: translate(0, -16px);}
   24% { transform: translate(0, 0);}
   30% { transform: translate(0, 0);}
   35% { transform: translate(0, -16px);}
   39% { transform: translate(0, 0);}
  100% { transform: translate(0, 0);}
}