@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*******************************************************************/
@media only screen and (min-width: 961px) {
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
}

@media only screen and (max-width: 960px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}

body {
  position: relative;
  background: #fbf8f7;
  z-index: -1;
  font-size: 15px;
  font-family: YakuHanMP, "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}

@media only screen and (min-width: 961px) {
  body {
    min-width: 1100px;
  }
}

/*******************************************************************/
.wrapper {
  background: url(../img/bg.jpg);
  background-attachment: fixed;
  -webkit-animation: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s forwards;
  animation: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s forwards;
  opacity: 0;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

@media only screen and (max-width: 960px) {
  .wrapper {
    background-size: 26px;
  }
}

.bg_top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 46%;
}

@media only screen and (max-width: 960px) {
  .bg_top {
    width: 90%;
  }
}

.bg_bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 46%;
}

@media only screen and (max-width: 960px) {
  .bg_bottom {
    width: 90%;
  }
}

.hero {
  position: relative;
  padding-top: 120px;
}

@media only screen and (max-width: 960px) {
  .hero {
    padding-top: 260px;
  }
}

.title {
  position: relative;
  z-index: 1;
  width: 55%;
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
  .title {
    width: 90%;
  }
}

.lead {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 1.8em;
  text-align: center;
  margin-top: 70px;
}

@media only screen and (max-width: 960px) {
  .lead {
    width: 90%;
    margin: 30px auto 0;
    font-size: 13px;
    text-shadow: 0px 0px 3px white, 0px 0px 3px white, 0px 0px 3px white;
  }
}

.chara {
  position: absolute;
  top: 50px;
  right: 6%;
  width: 17%;
  max-width: 400px;
  z-index: 0;
}

@media only screen and (max-width: 960px) {
  .chara {
    top: 15px;
    width: 55%;
    right: 25%;
  }
}

.example {
  width: 650px;
  margin: 60px auto 0;
  background: #fff;
  border: solid 3px #b08a3e;
  padding: 40px 50px 45px;
  position: relative;
}

@media only screen and (max-width: 960px) {
  .example {
    width: 90%;
    margin: 50px auto 0;
    padding: 6% 5%;
    font-size: 13px;
  }
}

.example::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  border: 1px solid #b08a3e;
  pointer-events: none;
}

.example .cap {
  background: #b08a3e;
  color: #fff;
  padding: 3px 5px;
  display: inline-block;
}

.example .list {
  line-height: 1.3em;
}

.example .list li {
  text-indent: -0.5em;
  padding-left: 0.5em;
  margin-top: 5px;
}

.text {
  margin-top: 50px;
  color: #b08a3e;
  text-align: center;
  font-size: 20px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 960px) {
  .text {
    font-size: 13px;
    margin-top: 40px;
    text-shadow: 0px 0px 3px white, 0px 0px 3px white, 0px 0px 3px white;
  }
}

.form {
  position: relative;
  margin-top: 80px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ffced6), to(#ffecd9));
  background-image: linear-gradient(0deg, #ffced6, #ffecd9);
  padding: 50px 0;
  z-index: 1;
}

@media only screen and (max-width: 960px) {
  .form {
    padding: 40px 0;
    margin-top: 60px;
  }
}

.form::before {
  content: "";
  background: url(../img/bg_form.png) top center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 60px;
  pointer-events: none;
  z-index: -1;
}

@media only screen and (max-width: 960px) {
  .form::before {
    background-size: 40px;
  }
}

.form form {
  width: 800px;
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
  .form form {
    width: 90%;
  }
}

.form .att {
  font-size: 13px;
}

@media only screen and (max-width: 960px) {
  .form .att {
    font-size: 11px;
  }
}

.form .red {
  color: #9d222c;
}

.form .form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .form .form_item {
    display: block;
    margin-top: 25px;
  }
}

.form .form_item dt {
  width: 150px;
  font-size: 18px;
  padding-top: 8px;
}

@media only screen and (max-width: 960px) {
  .form .form_item dt {
    width: 100%;
    padding: 0;
    font-size: 15px;
    margin-bottom: 8px;
  }
}

.form .form_item dd {
  width: calc(100% - 150px);
}

@media only screen and (max-width: 960px) {
  .form .form_item dd {
    width: 100%;
  }
}

.form .form_item dd input,
.form .form_item dd textarea {
  background: #fbf8f7;
  border: solid 1px #9d222c;
  border-radius: 10px;
  padding: 10px;
  resize: none;
  width: calc(100% - 20px);
}

@media only screen and (max-width: 960px) {
  .form .form_item dd input,
  .form .form_item dd textarea {
    font-size: 13px;
  }
}

.form .form_btn {
  position: relative;
  width: 160px;
  margin: 30px auto 0;
}

.form .form_btn input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

@media only screen and (min-width: 961px) {
  .form .form_btn {
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
    transition: -webkit-transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .form .form_btn:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

.bg_deco_01 {
  position: absolute;
  top: 31%;
  right: 0;
  width: 34%;
  z-index: -1;
}

@media only screen and (max-width: 960px) {
  .bg_deco_01 {
    width: 58%;
  }
}

.bg_deco_02 {
  position: absolute;
  bottom: 12%;
  left: 0;
  width: 54%;
  z-index: -1;
}

@media only screen and (max-width: 960px) {
  .bg_deco_02 {
    width: 94%;
    bottom: 16%;
  }
}

.note {
  margin-top: 60px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .note {
    width: 90%;
    margin: 40px auto 0;
    font-size: 10px;
  }
}

.thanks {
  margin-top: 100px;
  color: #b08a3e;
  text-align: center;
  font-size: 26px;
  position: relative;
  z-index: 1;
  line-height: 1.8em;
  text-shadow: 0px 0px 3px white, 0px 0px 4px white, 0px 0px 5px white, 0px 0px 6px white, 0px 0px 7px white, 0px 0px 8px white;
}

@media only screen and (max-width: 960px) {
  .thanks {
    margin-top: 100px;
    font-size: 16px;
  }
}

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 11px;
  padding: 150px 0 60px;
  color: #777;
}

@media only screen and (max-width: 960px) {
  .footer {
    font-size: 10px;
    padding: 200px 0 80px;
  }
}

.footer a {
  color: #777;
  text-decoration: none;
}

@media only screen and (min-width: 961px) {
  .footer a {
    -webkit-transition: color 0.7s cubic-bezier(0.33, 1, 0.68, 1);
    transition: color 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .footer a:hover {
    color: #b08a3e;
  }
}

.footer .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer .share li {
  width: 30px;
  margin-left: 20px;
}

@media only screen and (min-width: 961px) {
  .footer .share li {
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
    transition: -webkit-transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .footer .share li:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@media only screen and (max-width: 960px) {
  .footer .share li {
    width: 40px;
    margin-left: 30px;
  }
}

.footer .share li:first-child {
  margin-left: 0;
}

.footer .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

.footer .link li {
  margin-left: 15px;
  text-shadow: 0px 0px 3px white, 0px 0px 3px white;
}

.footer .link li:first-child {
  margin-left: 0;
}

.footer .right {
  margin-top: 10px;
  text-shadow: 0px 0px 3px white, 0px 0px 3px white;
}

.footer .copy {
  margin-top: 10px;
  text-shadow: 0px 0px 3px white, 0px 0px 3px white;
}

.period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  background: #b08a3e;
  color: #fff;
  width: 400px;
  margin: 50px auto 0;
  padding: 20px 0;
}

.period dt {
  margin-right: 15px;
}

@media only screen and (max-width: 960px) {
  .period {
    width: 70%;
    font-size: 13px;
    padding: 15px 0;
    margin: 40px auto 0;
  }
}

.form_end{
  text-align: center;
  font-size: 25px;
  padding: 50px;
  color: #333;
}
@media only screen and (max-width: 960px) {
  .form_end{
    font-size: 16px;
    padding: 20px;
    line-height: 1.5em;
  }
}