@charset "UTF-8";
/*======================================
form
/*======================================*/
/*form-----------------*/
.form-CMN input[type="text"] {
  max-width: 600px;
  width: 100%;
  height: 60px;
  line-height: 1.5em;
  text-align: center;
  font-weight: bold;
  border: 4px solid;
  background-color: #fff;
  color: #333;
  padding: 0 15px;
  font-size: 17px;
  border-radius: 7px;
  font-family: 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
@media screen and (min-width:768px) {
  .form-CMN input[type="text"] {
    height: 70px;
  }
} /*END*/
/*focus-----------------*/
form input[type="text"]:focus {
  transition: all 0.3s ease;
  border: none;
  background: #fff !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}
form input[type="submit"]:focus, button:focus {
  border: none;
}
.form-CMN input[type="text"] {
  border: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
  box-shadow: 0 3px 10px rgb(0 0 0 / 50%);
}
.form-CMN {
  text-align: center;
  margin: 0 auto;
}
.form-CMN p.required {
  font-size: 90%;
  line-height: 1.3em;
  padding: 1px 0 1em;
  margin: 0 auto;
  text-align: center;
}
.form-CMN p.required span {
  padding: 2px .3em;
  margin-right: .3em;
  text-shadow: none;
  box-shadow: 0 0 10px 4px #fff;
}
.submit-Btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
  margin: 1em auto;
  transform: translateY(0px);
  transition: all 0.3s ease;
}
.submit-Btn:hover {
  transform: translateY(-5px);
  opacity: 1;
  transition: all 0.3s ease;
}
.submit-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  opacity: 1;
  transition: all 0.3s ease;
}
.submit-wrap:hover {
  opacity: .7;
  transition: all 0.3s ease;
}
.reflection:after {
  animation: reflection 3s ease-in-out infinite;
}
.submit-Btn input[type="submit"], .submit-Btn a {
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-width: 0px;
  height: 0;
  line-height: 0;
  font-size: 0;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.submit-Btn input[type="submit"], .submit-Btn a {
  background: url(../images/opt-submitBtn.jpg) no-repeat center;
  background-size: cover;
  height: 0;
  padding-top: 18.5136897%;
}
.fadeout-Btn.submit-Btn, .fadeout-Btn.submit-Btn .submit-wrap, .fadeout-Btn.submit-Btn .submit-wrap a {
  opacity: 0;
  pointer-events: none;
  cursor: none;
}
/*======================================
page-top
/*======================================*/
#page-top {
  position: fixed;
  z-index: 999;
  bottom: 0;
  right: 0;
  left: 0;
  animation: animScale 3s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state: running;
}
@keyframes boundBtn {
  0% {
    transform: scale(0.8, 0.8);
  }
  5% {
    transform: scale(1.2, 1.2);
  }
  10% {
    transform: scale(1, 1);
  }
  15% {
    transform: scale(1.1, 1.1);
  }
  20% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
#page-top.submit-Btn {
  max-width: 350px;
  width: 85%;
}
.fadein-Btn {
  opacity: 1;
  transition: all .5s ease;
}
.fadeout-Btn {
  opacity: 0;
  transition: all .5s ease;
}
/*======================================
privacy-policy
/*======================================*/
.form-CMN aside {
  overflow: scroll;
  height: 7em;
  text-align: justify;
  font-size: 11px !important;
  margin: 1em auto;
  padding: 1em;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-feature-settings: "pkna";
  letter-spacing: 0;
}
.form-CMN aside p, .form-CMN aside li {
  font-size: 12px !important;
}
.form-CMN aside h2 {
  font-size: 115%;
  margin: 0 auto .5em;
}
.form-CMN aside h3 {
  font-size: 110%;
  margin: 1em auto .5em;
}
.form-CMN aside h4 {
  margin: 1em auto .5em;
}
.form-CMN aside ol, .form-CMN aside ul {
  margin: .5em auto 1em;
  padding-left: 1em;
}
.form-CMN aside .list-style ul {
  display: block;
}
.form-CMN aside::-webkit-scrollbar {
  width: 10px;
  height: 0;
}
.form-CMN aside::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.form-CMN aside::-webkit-scrollbar-thumb {
  background: rgba(185, 145, 100, .3);
  border-radius: 5px;
}
@media screen and (min-width:768px) {
  #page-top {
    right: 1em;
    left: auto;
  }
} /*END*/