@-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;
  font-size: 15px;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

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

/*******************************************************************/
.wrapper {
  position: relative;
  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;
  padding-top: 80px;
}

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

.wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/bg_pc.png) top center repeat-y;
  z-index: -1;
  background-size: 100%;
}

@media only screen and (max-width: 960px) {
  .wrapper::before {
    background: url(../img/bg_sp.png) top center repeat-y;
    background-size: 100%;
  }
}

.title {
  position: relative;
  background: #fff;
  padding: 55px 0 60px;
}

@media only screen and (max-width: 960px) {
  .title {
    padding: 45px 0 50px;
  }
}

.title::before {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  background: #f0555a;
}

.title::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #00b4aa;
}

.title .title_img {
  width: 520px;
  margin: 0 auto;
}

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

.lead {
  width: 800px;
  margin: 70px auto 0;
}

@media only screen and (max-width: 960px) {
  .lead {
    width: 90%;
    margin: 50px auto 0;
  }
}

.about,
.form {
  position: relative;
  background: #fff;
  border: solid 5px #f0555a;
  width: 800px;
  margin: 100px auto 0;
  padding: 50px;
}

@media only screen and (max-width: 960px) {
  .about,
  .form {
    width: 90%;
    margin: 60px auto 0;
    border: solid 3px #f0555a;
    padding: 10% 5%;
  }
}

.about::before,
.form::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  border: 2px solid #f0555a;
  pointer-events: none;
}

@media only screen and (max-width: 960px) {
  .about::before,
  .form::before {
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    border: 1px solid #f0555a;
  }
}

.about .about_cap,
.about .form_cap,
.form .about_cap,
.form .form_cap {
  width: 390px;
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
  .about .about_cap,
  .about .form_cap,
  .form .about_cap,
  .form .form_cap {
    width: 80%;
  }
}

.about_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  line-height: 1.5em;
  margin-top: 30px;
  padding-top: 30px;
}

@media only screen and (max-width: 960px) {
  .about_item {
    display: block;
    font-size: 13px;
    margin-top: 25px;
    padding-top: 25px;
  }
}

.about_item::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: -webkit-gradient(linear, left top, right top, from(#00b4aa), color-stop(0.2rem, #00b4aa), color-stop(0.2rem, transparent), color-stop(0.3rem, transparent));
  background-image: linear-gradient(to right, #00b4aa, #00b4aa 0.2rem, transparent 0.2rem, transparent 0.3rem);
  background-size: 0.5rem 2px;
  background-repeat: repeat-x;
}

.about_item:last-child {
  padding-bottom: 30px;
}

.about_item:last-child::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-image: -webkit-gradient(linear, left top, right top, from(#00b4aa), color-stop(0.2rem, #00b4aa), color-stop(0.2rem, transparent), color-stop(0.3rem, transparent));
  background-image: linear-gradient(to right, #00b4aa, #00b4aa 0.2rem, transparent 0.2rem, transparent 0.3rem);
  background-size: 0.5rem 2px;
  background-repeat: repeat-x;
}

.about_item dt {
  color: #00b4aa;
  width: 130px;
}

@media only screen and (max-width: 960px) {
  .about_item dt {
    width: 100%;
    margin-bottom: 10px;
  }
}

.about_item dd {
  width: calc(100% - 130px);
}

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

.about_item dd ul {
  font-size: 13px;
  margin-top: 5px;
}

@media only screen and (max-width: 960px) {
  .about_item dd ul {
    font-size: 11px;
    line-height: 1.4em;
    margin-top: 4px;
  }
}

.about_item dd ul li {
  text-indent: -1em;
  padding-left: 1em;
}

.form_top input {
  padding: 10px;
  width: 100%;
  border: solid 2px #ccc;
  width: calc(100% - 20px);
  margin-top: 50px;
}

@media only screen and (max-width: 960px) {
  .form_top input {
    margin-top: 30px;
  }
}

.form_top .form_input__btn {
  width: 200px;
  margin: 40px auto 0;
  background: #00b4aa;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
}

@media only screen and (max-width: 960px) {
  .form_top .form_input__btn {
    width: 180px;
    margin: 20px auto 0;
    font-size: 13px;
  }
}

@media only screen and (min-width: 961px) {
  .form_top .form_input__btn {
    -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
    transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .form_top .form_input__btn:hover {
    opacity: 0.6;
  }
}

.form_in .att {
  color: #00b4aa;
  font-size: 13px;
}

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

.form_in .form_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 30px;
  margin-top: 30px;
}

@media only screen and (max-width: 960px) {
  .form_in .form_item {
    display: block;
    font-size: 13px;
  }
}

.form_in .form_item::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: -webkit-gradient(linear, left top, right top, from(#00b4aa), color-stop(0.2rem, #00b4aa), color-stop(0.2rem, transparent), color-stop(0.3rem, transparent));
  background-image: linear-gradient(to right, #00b4aa, #00b4aa 0.2rem, transparent 0.2rem, transparent 0.3rem);
  background-size: 0.5rem 2px;
  background-repeat: repeat-x;
}

.form_in .form_item dt {
  width: 150px;
  color: #00b4aa;
  padding-top: 10px;
}

@media only screen and (max-width: 960px) {
  .form_in .form_item dt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 13px;
  }
}

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

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

.form_in .form_item dd input {
  border: #ccc solid 1px;
  padding: 10px;
  width: calc(100% - 20px);
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

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

.form_in .form_item dd select {
  border: #ccc solid 1px;
  padding: 10px;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

@media only screen and (max-width: 960px) {
  .form_in .form_item dd select {
    font-size: 13px;
  }
}

.form_in .form_item dd.c-formInputNameContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form_in .form_item dd.c-formInputNameContainer .c-formInputName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
}

.form_in .form_item dd.c-formInputNameContainer .c-formInputName:first-child {
  margin-right: 20px;
}

@media only screen and (max-width: 960px) {
  .form_in .form_item dd.c-formInputNameContainer .c-formInputName:first-child {
    margin-right: 15px;
  }
}

.form_in .form_item dd.c-formInputNameContainer .c-formInputName__label {
  margin: 12px 15px 0 0;
}

@media only screen and (max-width: 960px) {
  .form_in .form_item dd.c-formInputNameContainer .c-formInputName__label {
    margin: 12px 10px 0 0;
  }
}

.form_in .form_item dd.post-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form_in .form_item dd.post-code input {
  width: 40%;
}

@media only screen and (max-width: 960px) {
  .form_in .form_item dd.post-code input {
    width: 35%;
  }
}

.form_in .form_item dd.post-code .hyphen {
  padding: 10px 20px 0;
}

@media only screen and (max-width: 960px) {
  .form_in .form_item dd.post-code .hyphen {
    padding: 10px 10px 0;
  }
}

.form_in .form_item .error {
  display: block;
  width: 100%;
  color: #f0555a;
  margin-top: 10px;
  font-size: 13px;
}

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

.form_in .form_item.check dt {
  padding-top: 0;
}

@media only screen and (max-width: 960px) {
  .form_in .form_item.check dt {
    margin-bottom: 15px;
  }
}

.form_in .form_item.check .c-formInputName__label {
  margin: 0 15px 0 0 !important;
}

.form_in .form_item.check .hyphen {
  padding: 0 20px !important;
}

.form_in .form_bottom {
  position: relative;
  padding-top: 35px;
  margin-top: 35px;
}

.form_in .form_bottom::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: -webkit-gradient(linear, left top, right top, from(#00b4aa), color-stop(0.2rem, #00b4aa), color-stop(0.2rem, transparent), color-stop(0.3rem, transparent));
  background-image: linear-gradient(to right, #00b4aa, #00b4aa 0.2rem, transparent 0.2rem, transparent 0.3rem);
  background-size: 0.5rem 2px;
  background-repeat: repeat-x;
}

.form_in .form_bottom .form_btn {
  width: 200px;
  margin: 10px auto 0;
}
.form_in .form_bottom .form_btn:first-child {
  margin-top: 0;
}

.form_in .form_bottom .form_btn input {
  width: 200px;
  background: #00b4aa;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
  border: transparent;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

@media only screen and (min-width: 961px) {
  .form_in .form_bottom .form_btn {
    -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
    transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .form_in .form_bottom .form_btn:hover {
    opacity: 0.6;
  }
}

.note {
  width: 800px;
  margin: 100px auto 0;
  font-size: 13px;
  line-height: 1.4em;
}

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

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

.note li.cap {
  font-weight: 800;
  font-size: 15px;
  color: #00b4aa;
}

@media only screen and (max-width: 960px) {
  .note li.cap {
    font-size: 13px;
  }
}

.note a{color:#f0555a;}

.footer {
  background: #000;
  margin-top: 150px;
  padding: 50px;
  color: #fff;
  font-size: 11px;
  letter-spacing: normal;
}

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

@media only screen and (min-width: 961px) {
  .footer_logo {
    width: 260px;
    position: absolute;
    bottom: 50px;
    left: 50px;
    -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
    transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .footer_logo:hover {
    opacity: 0.6;
  }
}

@media only screen and (max-width: 960px) {
  .footer_logo {
    position: relative;
    width: 60%;
    margin: 0 auto;
  }
}

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

@media only screen and (max-width: 960px) {
  .footer .share {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 60px;
  }
}

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

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

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

@media only screen and (min-width: 961px) {
  .footer .share li {
    -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
    transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .footer .share li:hover {
    opacity: 0.6;
  }
}

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

@media only screen and (max-width: 960px) {
  .footer .link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 50px;
  }
}

.footer .link li {
  margin-left: 10px;
}

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

@media only screen and (min-width: 961px) {
  .footer .link li {
    -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
    transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .footer .link li:hover {
    opacity: 0.6;
  }
}

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

.footer .right {
  text-align: right;
  margin-top: 10px;
}

@media only screen and (max-width: 960px) {
  .footer .right {
    text-align: center;
  }
}

.footer .copy {
  text-align: right;
  margin-top: 10px;
}

@media only screen and (max-width: 960px) {
  .footer .copy {
    text-align: center;
  }
}

.thanks {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  padding: 150px 0 100px;
}

@media only screen and (max-width: 960px) {
  .thanks {
    font-size: 16px;
    padding: 100px 0 60px;
  }
}
/*# sourceMappingURL=4th.css.map */