body {
  background-color: #fff;
  line-height: 1.6;
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

@media screen and (max-width: 768px) {

  body {
    font-size: 14px;
  }

}

@media screen and (max-width: 320px) {
  body {
    font-size: 12px;
  }
}

img {
  width: 100%;
}

* {
  letter-spacing: 1px;
}

.-wrapper {
  /* max-width: 1040px; */
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.-sect-wrapper{
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .-wrapper {
    width: 88%;
  }
}

.-sp {
  display: none;
}

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

/* header */

.header {
  background-color: #fff;
  padding: 20px 46px 23px 46px;
}

.header-logo {
  height: 60px;
  line-height: 0;
}

.header-logo img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 4% 0;
  }

  .header-logo {
    height: 40px;
  }
}

/* header navigation */
.header-wrapper {
  display: flex;
  align-items: center;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .header-wrapper {
    display: block;
  }
}

.header-navi {
  margin: 0 0 0 50px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .header-navi {
  margin: 0 0 0 0;
}
}
.header-navi-item {
  display: inline-block;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-navi-item {
    display: block;
    font-size: 16px;
    padding: 5px 15px 5px 30px;
    margin: 0 0 15px 0;
  }
}

.header-navi-item::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #00b2a9;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
@media screen and (min-width: 769px) {
  .header-navi-item:hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header-navi-item:active::after {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .menu-trigger-wrap {
    display: block;
    cursor: pointer;
    position: fixed;
    width: 46px;
    height: 46px;
    z-index: 1222;
    background-color: #fff;
    right: 0;
    top: 80px;
  }
  .menu-trigger {
    display: block;
    cursor: pointer;
    position: absolute;
    width: 26px;
    height: 26px;
    top: 10px;
    right: 12px;
    
  }
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .menu-trigger span {
    position: absolute;
    left: 10%;
    width: 100%;
    height: 2px;
    background-color: #0050c0;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 3px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 3px;
  }
  .menu-trigger.active {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
  .menu-trigger.active span {
    background-color: #0050c0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
    -webkit-transform: translateY(9px) rotate(-45deg);
    -moz-transform: translateY(9px) rotate(-45deg);
    -ms-transform: translateY(9px) rotate(-45deg);
    -o-transform: translateY(9px) rotate(-45deg);
}
  .menu-trigger.active span:nth-of-type(2) {
    transform: translateY(0) rotate(45deg);
    -webkit-transform: translateY(0) rotate(45deg);
  }
  .menu-trigger.active span:nth-of-type(3) {
    opacity: 0;
  }

  .header-navi {
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 900;
    position: fixed;
    margin: 0;
    top: 0;
    right: -100%;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}
  .header-navi.-open {
    right: 0;
  }
}

/* footer */
.footer {
  background-color: #000;
}

.footer-wrapper {
  padding: 20px 46px 23px 46px;
  display: flex;
  justify-content: space-between;
  max-width: none;
  align-items: baseline;
}

.footer-nav {
  display: flex;
}

.footer-nav-item {
  margin: 0 36px 0 0;
}

.footer-nav-item .-btn {
  color: #fff;
  font-size: 12px;
}

.footer-copyright {
  color: #fff;
  font-size: 12px;
}

.footer-logo {
  width: 140px;
}
  
.footer .-sp {
  display: none;
}
.footer .-pc {
  display: inline;
}

@media screen and (max-width: 768px) {
  .footer-wrapper {
    padding: 5% 0;
    display: block;
  }
  .footer-nav {
    display: block;
    margin: 0 0 5% 0;
  }
  .footer-nav-item {
    margin: 0 0 3% 0;
  }
  .footer-nav-item .-btn {
    font-size: 3vw;
  }
  .footer-copyright {
    font-size: 2.5vw;
    text-align: center;
  }
  .footer .-sp {
    display: inline;
  }
  .footer .-pc {
    display: none;
  }
}

/* -sect */
.-sect-ttl {
  line-height: 1;
  font-family: 'Josefin Sans', YakuHanJP, -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 64px;
  font-weight: bold;
  text-align: center;
}

/* -form */
.-form {
  background-color: #fff;
  box-sizing: border-box;
  padding: 40px 70px 60px 70px;
}

.-form-ttl {
  font-size: 30px;
  font-weight: bold;
  border-bottom: 1px solid #e3e7ee;
  margin: 0 0 3% 0;
}

.-form-copy {
  margin: 0 0 3% 0;
}

.-form-wrap {
  margin: 0 0 3% 0;
}

.-form-name {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 1% 0;
}

.-form-input-text {
  background-color: #e3e7ee;
  width: 100%;
  padding: 1%;
  box-sizing: border-box;
}

.-form-input-text.-middle {
  width: 49.2%;
}

.-form-input-text.-short {
  width: 20%;
}

.-form-select {
  background-color: #e3e7ee;
  width: 100%;
  padding: 1%;
  box-sizing: border-box;
}

.-form-textarea {
  background-color: #e3e7ee;
  width: 100%;
  padding: 1%;
  box-sizing: border-box;
  height: 5em;
}

.-form-error {
  font-size: 0.8em;
  color: #b90000;
}

.-error-txt {
  font-size: 0.8em;
  color: #b90000;
  margin: 1% 0 0 0;
}

.-form-radio {
  display: flex;
  flex-wrap: wrap;
}

.-form-radio-item {
  margin: 0 5% 0 0;
}

.-form-radio-item .-txt {
  margin: 0 0 0 5px;
}

.-form-agree {
  display: flex;
  justify-content: center;
  margin: 0 0 1em 0;
}

.-form-privacy_copy {
  text-align: center;
}

.-form-privacy_copy a {
  color: #006699;
  text-decoration: underline;
}

.-form-privacy_copy a:hover {
  text-decoration: none;
}

.-form-btn {
  margin: 8% 0 0 0;
  display: flex;
  justify-content: center;
}

.-form-btn-item {
  display: block;
  background-color: #d73d77;
  color: #fff;
  max-width: 400px;
  width: 100%;
  margin: auto;
  z-index: 20;
  text-align: center;
  font-weight: bold;
  padding: 3% 0;
  align-items: center;
  line-height: 1;
  transition: 0.3s;
  cursor: pointer;
  margin: 0 2%;
}

.-form-btn-item .-txt {
  margin: 0 10px 0 0;
  line-height: 1;
}

.-form-btn-item:hover {
  background-color: #000;
  color: #fff;
}

.-form-btn-item.-back {
  background-color: #ccc;
  color: #000;
}

.-form-btn-item.-back:hover {
  background-color: #ddd;
}

.-form-btn-item .svg-arrow-white {
  transition: 0.3s;
}

.-form-btn-item:hover .svg-arrow-white {
  transform: translateX(5px);
}

.-form-btn-item:hover .svg-arrow-white-01 {
  fill: #fff;
}

@media screen and (max-width: 768px) {
  .-form {
    padding: 8% 6% 10% 6%;
  }
  .-form-ttl {
    font-size: 20px;
    margin: 0 0 5% 0;
  }
  .-form-wrap {
    margin: 0 0 5% 0;
  }
  .-form-name {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 1% 0;
  }
  .-form-input-text {
    background-color: #e3e7ee;
    width: 100%;
    padding: 1%;
    box-sizing: border-box;
  }
  .-form-radio {
    display: flex;
    flex-wrap: wrap;
  }
  .-form-radio-item {
    margin: 0 5% 0 0;
  }
  .-form-btn {
    margin: 8% 0 0 0;
  }
  .-form-btn-item {
    padding: 5% 0;
  }
  .-form-btn-item .-txt {
    font-size: 3vw;
    margin: 0 8px 0 0;
  }
}

/* btn */
.svg-arrow-white,
.svg-arrow-black {
  display: inline-block;
  width: 71px;
  height: 6px;
  line-height: 0;
}

.svg-arrow-white-01,
.svg-arrow-black-01 {
  transition: 0.3s;
}

/* ef */
.-ef {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.-ef:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: -100%;
  right: 0;
  transition: 0.4s;
}

.-ef.-ef-wh:before {
  background-color: #fff;
}

.-ef.-ef-rd:before {
  background-color: #b90000;
}

.-ef.-ef-bl:before {
  background-color: #000;
}

.-ef.animated:before {
  left: 101%;
}

.-ef-wrap {
  /* opacity: 0; */
  transition: 0.8s;
}

.animated .-ef-wrap {
  opacity: 1;
}