@charset "UTF-8";
body {
  background-image: url(../images/body-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro f", "メイリオ", sans-serif;
}
@media screen and (min-width: 750px) {
  .body-inner {
    max-width: 750px;
    box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
    background: #fff;
    margin-left: auto;
    margin-right: auto;
  }
}
img {
  width: 100%;
  margin-top: -1px; /*--隙間調整--*/
}

/* コンテンツの横幅 */
/* ============================================ */
.o-wrapper {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
/* コンテンツの横幅 ここまで */
/* ============================================ */


/* ここまで */
/* ============================================ */
/* CTAボタン */
/* ============================================ */
.cta{
  position: relative;
}

.cv_btn img {
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
  width: 90%;
  margin: 0 auto;
  position: absolute;
  top: 63%;
  left: 5.5%;
}
@keyframes anime1 {
  from {
    transform: scale(0.9,0.9);
  }
  to {
    transform: scale(1,1);
  }
}


.cta2{
  position: relative;
}

.cv_btn2 img {
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
  width: 99%;
  margin: 0 auto;
  position: absolute;
  top: 19%;
  left: 0.5%;
}

@keyframes anime1 {
  from {
    transform: scale(0.9,0.9);
  }
  to {
    transform: scale(1,1);
  }
}

/* point3 */
/* ============================================ */

.point3 {
  position: relative;
}

.mittei {
  position: absolute;
  right: 0%;
  top: 52%;
  width: 64%;
  box-shadow: 0px 10px 10px 0px #28292961;
}

/* point3 */
/* ============================================ */



/* リダイレクトページCSS */
/* ============================================ */

.redirect p{
  padding: 10%;
  text-align: center;
  font-size: 30px;
  font-weight: 100;
  background: #fff;

}

/* ハイパーリンク先 階層ページCSS */
/* ============================================ */
table {
  border: 1px solid #111111;
  width: 100%;
}

td {
  padding: 3% 2.5%;
  vertical-align: middle;
  width: 68%;
  border-bottom: 1px solid #111111;
  text-align: left;
  background: #fff;
}

th {
  background: #111111 none repeat scroll 0 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-align: left;
  padding: 3% 2.5%;
  vertical-align: middle;
}

header2 h2 {
  padding: 10%;
  text-align: center;
  font-size: 30px;
  font-weight: 100;
  background: #fff;
}



/* footer */
/* ============================================ */
footer {
  display: block;
  padding-top: 10px;
  border-top: 3px solid #ddd;
  background: #fff;
  max-width: 750px;
  margin: 0 auto;
}
ul {
  list-style: none;
}
.footer_nav {
  text-align: center;
  padding: 10px 0;
}
.footer_nav li {
  display: inline-block;
  margin: 0 5px 0 0;
  border-right: #000 solid thin;
  font-size: 13px;
}
.footer_nav li a {
  text-decoration: none;
  padding: 0 10px 0 0;
  color: #000;
}
.footer_nav li:last-child {
  border: none;
}
footer .copyright {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  padding-bottom: 10px;
}
/* footer ここまで */
/* ============================================ */
.float-bnr {
  height: 0;
  opacity: 0;
  transition: 1s;
  pointer-events: none;
}
.float-bnr.show {
  display: block;
  height: auto;
  opacity: 1;
  transition: 1s;
  pointer-events: painted;
  position: fixed;
  bottom: 0;
  z-index: 9999;
}
